/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfb;
  color: #222;
  overflow-x: hidden;
}

/* Navbar Base */
/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  height: 80px;
  
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  color: #f5f5f5;
  padding: 0.5rem 10px;
  transition: color 0.3s ease;
} */

    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
      display: flex;
      align-items: center;
      background-color: transparent;
      /* transition: background-color 0.1s ease, box-shadow 0.3s ease, color 0.3s ease, height 0.3s ease; */
      height: 80px;
      
      font-family: 'Urbanist', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 1.2px;
      color: #f5f5f5;
      padding: 0.5rem 10px;
      transition: color 0.3s ease;

      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
      transition: all 1s ease-in-out;
    }

/* Navbar when scrolled */
/* 2a2e35  1f1f1f  */
.navbar.scrolled {
  background: linear-gradient(90deg, #3d2432, #6e415e, #cda3bc);
  transition: all 2s ease-in-out;
  /* background: linear-gradient(90deg, #2a161c 0%, #9e506d 50%, #3b1824 100%); */

  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
  
}

.logo {
  height: 100%;
  display: flex;
  align-items: flex-start; /* top se align karne ke liye */
  padding-top: 5px;         /* top margin jaisa effect */
  padding-left: 150px;
}

.logo img {
  height: 60px; /* Pehle 48px tha */
  max-height: 70px;
  object-fit: contain;
  transition: all 0.3s ease;
  cursor: pointer;
}

.navbar .logo img {
  height: 100%;
  max-height: 100%;
  object-fit: contain; /* image distort na ho */
}

.logo img {
  transition: all 0.3s ease;
}


/* Navigation Links Container */
.nav-links {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  flex-wrap: nowrap;
  padding-left: 180px;

}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 4px;
  transition: color 0.2s ease-in-out;
  display: inline-block;       /* ✅ key fix */
  width: fit-content;          /* ✅ so that width = text only */        /* ✅ centers in column layout */
}

.navbar a:hover {
  color: #b38b59; /* gold hover effect */
}

/* Hover underline */
/* .nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;

    content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #b38b59, #d6b98c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
} */

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;                         /* now it means text width only */
  background: linear-gradient(90deg, #b38b59, #d6b98c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar a:hover {
  color: #d6b98c; /* Soft rich gold */
}

.navbar a:hover::after {
  transform: scaleX(1);
}


/* Responsive */
/*@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
  }

  .nav-links {
    gap: 12px;
  }
}*/


    /* Hero Section */
    .video-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.8);
    }

    .video-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      z-index: 2;
    }

    .video-overlay h1 {
      font-size: 48px;
      margin: 0;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .video-overlay p {
      font-size: 20px;
      margin-top: 12px;
      font-weight: 400;
    }

    /* Golden Button */
    .golden-button {
      display: inline-block;
      padding: 10px 22px;
      font-size: 15px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      color: #fff;
      background: linear-gradient(135deg, #c49b66, #a67c00);
      border: none;
      border-radius: 6px;
      text-decoration: none;
      box-shadow: 0 5px 12px rgba(166, 124, 0, 0.25);
      transition: all 0.3s ease;
      letter-spacing: 0.4px;
    }

    .golden-button:hover {
      background: linear-gradient(135deg, #b5894f, #8c6c00);
      box-shadow: 0 7px 20px rgba(166, 124, 0, 0.4);
      transform: translateY(-2px);
    }


    /* Responsive Styles */
    @media (max-width: 768px) {
      .video-overlay h1 {
        font-size: 32px;
      }

      .video-overlay p {
        font-size: 16px;
      }

      .about-container {
        flex-direction: column;
      }

      .about-text, .about-image {
        max-width: 100% !important;
      }
    }


    .cat-btn {
      padding: 12px 24px;
      background-color: #f9f4ec;
      border: 1px solid #d2b48c;
      border-radius: 6px;
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: #222;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .cat-btn:hover {
      background: linear-gradient(135deg, #c49b66, #a67c00);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(166, 124, 0, 0.3);
      border-color: transparent;
    }

    @media (max-width: 768px) {
      .cat-btn {
        flex: 1 1 100%;
        text-align: center;
      }
    }


    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      max-width: 1100px;
      margin: auto;
    }

    .product-card {
      position: relative;
      height: 240px;
      border-radius: 10px;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      transition: transform 0.3s ease;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      text-decoration: none;
    }

    .product-card:hover {
      transform: scale(1.04);
    }

    .card-overlay {
      position: absolute;
      bottom: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
      color: #fff;
      width: 100%;
      padding: 20px;
      font-size: 18px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      text-align: left;
    }

    .capabilities-section {
      background-color: #fdfdfb;
      padding: 80px 20px;
      color: #1a1a1a;
      max-width: 1200px;
      margin: auto;
      font-family: 'Poppins', sans-serif;
    }

    .capabilities-section h2 {
      font-size: 36px;
      font-weight: 700;
      text-align: center;
      color: #b38b59;
      margin-bottom: 10px;
    }

    .capabilities-section .intro {
      text-align: center;
      font-size: 18px;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .capabilities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }

    .capability {
      background-color: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform 0.3s ease;
    }

    .capability:hover {
      transform: translateY(-5px);
    }

    .capability h3 {
      font-size: 22px;
      color: #333;
      margin-bottom: 15px;
    }

    .capability ul {
      padding-left: 18px;
    }

    .capability ul li {
      margin-bottom: 10px;
    }

    .cta-buttons {
      text-align: center;
      margin-top: 50px;
    }

    .cta-buttons a {
      display: inline-block;
      margin: 10px;
      padding: 12px 24px;
      background-color: #b38b59;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 500;
      transition: background-color 0.3s;
    }

    .cta-buttons a:hover {
      background-color: #9c7749;
    }


    .section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #b38b59;
    margin-bottom: 30px;
  }

  .csr-section {
    padding: 80px 20px;
    background: #fdfcf9;
    color: #222;
    font-family: 'Poppins', sans-serif;
  }

  .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #444;
  }

  .csr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }

  .csr-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(191, 160, 70, 0.08);
    transition: transform 0.3s;
  }

  .csr-card:hover {
    transform: translateY(-5px);
  }

  .csr-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #bfa046;
  }

  .csr-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .csr-card li {
    margin-bottom: 10px;
  }

  .csr-card strong {
    color: #222;
  }

  .csr-conclusion {
    text-align: center;
    font-size: 17px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
  }

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden; /* ✅ only on body */
  }

  html {
    margin: 0;
    padding: 0;
    /* ❌ Remove overflow-x: hidden from here */
  }


  .product-card {
    width: 280px;
    height: 300px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
    overflow: hidden;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }


  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-image {
    max-height: 220px;
    width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
  }

  /* Zoom on hover */
  .product-card:hover .product-image {
    transform: scale(1.1);
  }


  .product-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #b38b59;
    margin-top: 15px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }

  .product-card a {
    font-size: 14px;
    color: #7a7a7a;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  /* Underline on hover */
  .product-card a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .product-card {
      width: 90%;
      height: auto;
      padding: 16px;
    }

    .product-image {
      max-height: 180px;
    }

    .product-card h3 {
      font-size: 15px;
    }

    .product-card a {
      font-size: 13px;
    }
  }


  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
  }


  @media (max-width: 1380px) and (min-width: 1280px) {
  .nav-links{
    padding-left: 100px;
  }

  .logo{
    padding-left: 120px;
  }
}

@media (max-width: 1280px) and (min-width: 1200px) {
  .nav-links{
    padding-left: 70px;
  }

  .logo{
    padding-left: 80px;
  }
}

@media (max-width: 1200px) and (min-width: 1140px) {
  .nav-links{
    padding-left: 25px;
  }

  .logo{
    padding-left: 70px;
  }
}

@media (max-width: 1140px) and (min-width: 1065px) {
  .nav-links{
    padding-left: 20px;
    gap: 10px;
  }

  .logo{
    padding-left: 50px;
  }
}

@media (max-width: 1065px) and (min-width: 768px) {
  .nav-links{
    gap: 7px;
    font-size: 12px;
    padding: 4px 2px;
    letter-spacing: 1px;
    padding-left: 20px;
  }

  .logo{
    padding-left: 25px;

  }
}

@media (max-width: 1010px) and (min-width: 768px) {
  .nav-links{
    gap: 15px;
    padding-left: 70px !important;
  }

  .logo{
    padding-left: 50px;

  }

  .nav-links {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: left;
    padding: 20px;
  }
}

  /* Responsive Navbar */
 @media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(90deg, #3d2432, #6e415e, #cda3bc);
    display: none;
    padding: 20px 20px;
    background-color: #72727219;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
  }

  .nav-links.active {
    display: flex;
    text-align: left;
  }

  .hamburger {
    display: flex;
    right: 35px;
    position: absolute;
  }
}


@media (max-width: 385px) {
  .nav-links{
    gap: 15px;
    padding-left: 70px !important;
  }

  .logo{
    padding-left: 50px;

  }

  .nav-links {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: left;
    padding: 20px;
  }
}


html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
