
/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Fahkwang', sans-serif;
}

html,body{
  overflow-x:hidden;
}

/* ================= HEADER ================= */
header{
  position:fixed;
  width:100%;
  background:rgba(0,0,0,0.14);
  padding:15px 0;
  z-index:9999;
  top:0;
}

/* ================= CONTAINER ================= */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ================= LOGO ================= */
.logo{
  display:inline-block;
  color:#000;
}

.logo a{
  text-decoration:none;
  color:unset;
}

.logo a h1{
  font-size:34px;
  font-weight:400;
  margin:0;
  display:inline-block;
  padding-bottom:5px;
  letter-spacing:-1px;
  text-shadow:#ffffff 0px 0px 6px;
  text-decoration:underline;
}

.logo a .tagline{
  font-family:helvetica-w01-bold, helvetica-w02-bold, helvetica-lt-w10-bold, sans-serif;
  letter-spacing:0.01em;
  font-size:16px;
  text-shadow:#ffffff 0px 0px 6px;
  text-decoration:underline;
}

/* ================= NAVIGATION ================= */
nav{
  padding:20px 60px;
  display:flex;
  justify-content:flex-end;
  position:relative;
  z-index:1000;
}

nav ul{
  list-style:none;
  display:flex;
  gap:40px;
  transition:all 0.3s ease;
}

nav ul li{
  position:relative;
}

nav ul li a{
  text-decoration:none;
  color:#000;
  font-size:16px;
  font-weight:500;
  padding:5px 0;
  display:inline-block;
  position:relative;
}

/* Active underline */
nav ul li a.active::after{
  content:"";
  position:absolute;
  width:100%;
  height:2px;
  background:#000;
  bottom:-5px;
  left:0;
}

/* ================= DROPDOWN ================= */
.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#ffffff;
  min-width:180px;
  list-style:none;
  padding:10px 0;
  display:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  border-radius:6px;
  z-index:9999;
}

.dropdown:hover .dropdown-menu{
  display:block;
}

.dropdown-menu li{
  padding:8px 20px;
}

.dropdown-menu li a{
  display:block;
  color:#000;
  font-size:14px;
}

.dropdown-menu li:hover{
  background:#f3f3f3;
}

/* ================= LANGUAGE DROPDOWN ================= */
.lang-wrapper{
  position:relative;
  display:inline-block;
  font-family:Arial, sans-serif;
  margin-left:23px;
}

.lang-selected{
  background:#1f1f1f;
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  min-width:120px;
  justify-content:space-between;
}

.arrow{
  font-size:12px;
  transition:0.3s;
}

.lang-dropdown{
  position:absolute;
  top:110%;
  right:0;
  background:#2a2a2a;
  list-style:none;
  padding:8px 0;
  border-radius:10px;
  min-width:150px;
  display:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
  overflow:hidden;
  z-index:9999;
}

.lang-dropdown li{
  padding:10px 18px;
  color:#fff;
  font-size:14px;
  cursor:pointer;
  transition:0.2s;
}

.lang-dropdown li:hover{
  background:#3a3a3a;
}

/* ================= HAMBURGER ================= */
.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.menu-toggle span{
  width:31px;
  height:4px;
  background:#000;
  transition:0.3s;
}

/* Hamburger Animation */
.menu-toggle.open span:nth-child(1){
  transform:rotate(45deg) translate(6px,6px);
}

.menu-toggle.open span:nth-child(2){
  opacity:0;
}

.menu-toggle.open span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* ================= TABLET ================= */
@media (max-width:992px){

  nav ul{
    gap:20px;
  }

  .logo h1{
    font-size:20px !important;
  }

  .logo{
    width:100%;
  }
}

/* ================= MOBILE ================= */
@media (max-width:768px){

  .container{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  nav{
    width:100%;
    padding:0;
    justify-content:center;
    flex-direction:column;
  }

  .menu-toggle{
    display:flex;
    position:absolute;
    right:48px;
    top:29px;
    z-index:10001;
  }

  nav ul{
    display:none;
    flex-direction:column;
    width:100%;
    gap:15px;
    margin-top:20px;
    align-items:center;

    background:#ffffff;
    position:absolute;
    top:100%;
    left:0;
    padding:20px 0;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
  }

  nav ul.active{
    display:flex;
  }

  nav ul li{
    width:100%;
    text-align:center;
  }

  nav ul li a{
    width:100%;
  }

  /* Mobile dropdown */
  .dropdown-menu{
    position:static;
    width:100%;
    box-shadow:none;
    border-radius:0;
  }

  .dropdown:hover .dropdown-menu{
    display:block;
  }

  .lang-wrapper{
    margin-top:15px;
    margin-left:0;
  }
} 





/* HERO SECTION */
.hero{
  position: relative;
  height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  overflow: hidden;
}

/* VIDEO */
.hero video{
  width: 80%;          /* 80% width */
  height: 100%;         /* optional: adjust height */
  object-fit: cover;
  position: relative;  /* remove absolute */
  z-index: 1;
}


@media (max-width: 1082px){
 .hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
}

/* ------about------ */



/* CONTAINER */
.about-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* LEFT TEXT */
.about-text{
  flex:1;
}

.about-text h2{
  font-size:40px;
  font-weight:600;
  margin-bottom:30px;
  color:#111;
}

.about-text p{
  font-size:18px;
  line-height:1.8;
  color:#444;
  margin-bottom:25px;
}

/* RIGHT IMAGE */
.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  height:500px;
  object-fit:cover;
}

@media(max-width:992px){
  .about-container{
    flex-direction:column;
            margin: 0px 25px 0px 25px;
  }

  .about-image img{
    height:auto;
  }
}



/* -----service---- */



/* SECTION */
.services{
  padding:0px 60px;
  text-align:center;
}

/* TITLE */
.section-title{
  font-size:42px;
  font-weight:600;
  color:#111;
}

/* GRID */
.services-grid{
  max-width:1121px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}

/* SERVICE BOX */
.service-box{
  padding:0px 9px;
  transition: all 0.4s ease;
  border-radius:12px;
}

/* ICON */
.service-box img{
  width:70px;
  margin-bottom:25px;
  transition:0.4s ease;
}

/* TITLE */
.service-box h3{
  font-size:25px;
  font-weight:600;
  margin-bottom:15px;
  color:#111;
}

/* TEXT */
.service-box p{
  font-size:20px;
  line-height:29px;
  color:#444;
}

/* HOVER EFFECT */
.service-box:hover{
  transform:translateY(-12px);
  
}

.service-box:hover img{
  transform:scale(1.15);
}


@media(max-width:992px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .services-grid{
    grid-template-columns:1fr;
  }
}


.service-box svg{
      width: 88px;
          height: 135px;
}






/* -----product----- */

.products-section {
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 0px;
  max-width: 1095px;
  margin: auto;
}

/* ================= CARD ================= */

.product-card {
  position: relative;
  text-align: center;
}

/* Wrap image + title */
.product-card img {
  width: 314px;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Title Box */
.product-title {
  position: absolute;
  bottom: 127px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 15px 60px;
  border: 1px solid #999;
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.4s ease;
}

/* Move ONLY image + title up */
.product-card:hover img,
.product-card:hover .product-title {
  transform: translate(-50%, -10px);
}

/* Fix image transform separately */
.product-card:hover img {
  transform: translateY(-10px);
}

/* Paragraph */
.product-card p {
  margin-top: 60px;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 992px) {
.product-card p {
     font-size: 15px;
        line-height: 21px;
        margin-top: 20px;
        margin-bottom: 33px;

  }
}


/* ================= VIEW MORE BUTTON ================= */

.view-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: black;
  color: white;
  font-size: 14px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* Show button */
.product-card:hover .view-more-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
            margin-bottom: 13px;
  }

  .product-title {
    padding: 12px 40px;
    font-size: 16px;
    bottom: 0;
  }

  .product-card img {
    width: 100%;
    height: auto;
  }
}




/* ----logo------ */

.affiliations-section {
  width: 100%;
  padding: 0px 20px;
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {


  .affiliations-section {

  padding: 0px 0px;

  }
}



.affiliations-box {
  width: 73%;
  
  background: #fff;
  border: 1px solid #363333;
  border-radius: 8px;
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.affiliations-box h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.affiliations-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.affiliations-logos img {
  height: 120px;
  object-fit: contain;
  transition: 0.3s ease;
}

.affiliations-logos img:hover {
  transform: scale(1.05);
}





/* ----get in touch ---- */




/* SECTION BACKGROUND */
.contact-section {
  padding: 80px 0;
  font-family: 'Georgia', serif;
}

/* MAIN CONTAINER */
.contact-container {
  width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* LEFT FORM */
.contact-form {
  width: 55%;
}

.contact-form h2 {
  font-size: 42px;
  color: #3e6b4f;
  font-style: italic;
  margin-bottom: 40px;
}

/* INPUT ROW */
.row {
  display: flex;

  margin-bottom: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.input-group.full {
  width: 100%;
  margin-bottom: 25px;
}

.input-group label {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

.input-group input,
.input-group textarea {
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #dcdcdc;
  outline: none;
  font-size: 14px;
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  background: #3e6b4f;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #2f533c;
}

/* RIGHT CONTACT CARD */
.contact-info {
  width: 40%;
  background: #3e6b4f;
  color: white;
  padding: 30px;
  border-radius: 4px;
}

.logo-box {
  
  margin-bottom: 25px;
}

.logo-box img {
  width: 100%;
}

.info-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.info-item span {
  font-size: 16px;
}


@media(max-width: 992px) {
  .contact-container {
    flex-direction: column;
    width: 90%;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}




/* ---choose----- */


.why-section {
  padding: 0px 0;
  font-family: 'Georgia', serif;
  text-align: center;
}

.why-container {
 
  margin: auto;
}

/* TITLE */
.why-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* DESCRIPTION */
.why-description {
  max-width: 850px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 60px;
}

/* ROWS */
.why-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 70px;
}

.top-row .why-box {
  width: 300px;
}

.bottom-row {
  justify-content: center;
  gap: 150px;
}

.bottom-row .why-box {
  width: 320px;
}

/* BOX */
.why-box img {
  width: 70px;
  margin-bottom: 20px;
}

.why-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.why-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

@media(max-width: 992px) {

  .why-container {
    width: 90%;
  }

  .why-row {
    flex-direction: column;
    gap: 50px;
            align-items: anchor-center;
  }

  .bottom-row {
    gap: 50px;
  }

}




/* ----footer---- */
.footer {
  background: linear-gradient(90deg, #2C3D53 66.66666666666666%, #F9C5B4 100%);
  color: #fff;
  padding:13px 0 0px;
  
  position: relative;
}


/* ===== TOP GRID ===== */
.footer-top {
  display: flex;
  gap: 80px;
}

.footer-col h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-top: 30px;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  padding-left: 6px;
  opacity: 0.8;
}

/* Logo */
.footer-logo {
  width: 200px;
}

/* Social */
.social-icons img {
  width: 28px;
  margin-right: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: translateY(-4px);
}

/* ===== INDIA OFFICE ===== */


.footer-office h3 {
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-office p {
  line-height: 1.8;
  font-size: 14px;
}

.contact {
  margin-top: 10px;
}

/* ===== BOTTOM ===== */


.footer-bottom p {
  text-align: right;
  font-size: 14px;
  margin-top: 15px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom span {
  margin: 0 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-office {
    margin-top: 50px;
  }

  .footer-bottom p {
    text-align: center;
  }

  .bottom-line {
    width: 100%;
    left: 0;
  }

  .main-foot{
    display: block;
  }
}


.footer2{
      border-left: 1px dashed rgb(174 99 63);
    padding: 0px 0px 0px 41px;
}


@media(max-width: 992px) {

  .footer2{
      border: none;
              padding: 0px 0px 15px 0px;
  }
}






/* --------service page------ */


.services-header {
  background-color: rgb(33,16,20); /* maroon like your screenshot */
      margin-top: 120px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 600;
}

.services-header p {
  font-size: 18px;
  opacity: 0.9;
}

.services-section {
  background: #f5f5f5;
}

.service-img {
  max-height: 350px;
}

.service-list li {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 26px;
  }

  .service-list li {
    font-size: 16px;
  }
}



.sec2{
  background: rgb(219, 219, 219);
}



.sec3{
  background-color: rgb(160, 160, 159);
}






/* ----product----- */


.products-section {

  padding: 75px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 40px;
  justify-items: center;
  
}


@media (max-width: 1082px){
  .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
          MARGIN: 0px 16px 0px 16px;
                  justify-items: center;
        margin: 0 auto;
}
}



@media (max-width: 520px){
  .products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
          MARGIN: 0px 16px 0px 16px;
                  justify-items: center;
        margin: 0 auto;
}
}
.product-item {
  text-align: center;
}

.product-item img {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: auto;
  transition: transform 0.3s ease;
}

.product-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 40px;
  background: #1d1b5c;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}


.product-btn:hover {
    background: #ffffff;
    border: 1px solid #1d1b5d;
    color: #1d1b5d;
}

.product-item img:hover {
  transform: scale(1.05);
}





/* ------rice------ */


.productss{
      margin-top: 144px;

}


.table-section img{
      border: 2px solid black;
}



/* ----contact----- */

/* Main Split Section */
.contact-section {
    display: flex;
   
      margin-top: 87px;
}

/* LEFT SIDE */
.contact-left {
    display: flex;
    background-color: #dcd6c8; /* beige tone */
    padding: 100px 98px 76px 51px;
    box-sizing: border-box;
}

.contact-left h1 {
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 60px;
}


.form-row {
    display: flex;
    gap: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #777;
    background: transparent;
    padding: 10px 0;
    margin-bottom: 40px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.contact-form textarea {
    resize: none;
    height: 80px;
}

/* Submit Button */
.submit-btn {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin-top: 20px;
}


.contact-left img{
  width: 100%;
      padding: 0px 0px 0px 23px;
}


@media (max-width: 1200px){

  .contact-left {
    display: block;
  }

  .contact-form{
    width: 100%;
  }

  .img{
        margin: 0 auto;
    margin-top: 39px;
  }
}