/* General Reset and Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body {
  background-color: #d0d0d0; /* Light grey background for the overall page */
}

/* --- Hero Section Styling --- */
.hero {
  /* Replace with your actual image URL or local path */
  /* background: url("../images/banner-homepage.png") no-repeat center center/cover; */
  height: 100vh; /* Full viewport height for the background */
  color: #ffff;
  position: relative; /* To position the navbar and content */
}

/* --- Navigation Bar Styling --- */
.navbar {
  display: flex;
  margin: 30px;
  height: 68px;
  border-radius: 60px;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px; /* Padding top/bottom and left/right */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* Semi-transparent background for the nav bar */
  background-color: #ffffff70;
  backdrop-filter: blur(2px);
  z-index: 10;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: rgb(0, 0, 0);
  font-weight: bold;
  text-decoration: none;
  margin-left: 30px;
  font-size: 1.05em;
  padding: 5px 0;
  transition: color 0.3s;
  font-family: inter;
}

.nav-links a:hover {
  color: #ff6600; /* Subtle hover effect */
}

.search-icon {
  margin-left: 30px;
  font-size: 1.2em;
  cursor: pointer;
}

/* --- Hero Content Styling (Text) --- */
.hero-content {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50px;
  transform: translateY(-50%); /* Adjust for perfect vertical center */
  max-width: 600px;
  z-index: 5;
}

.hero-title {
  font-size: 4.5em; /* Large, bold text */
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* For better readability */
}

.hero-description {
  font-size: 1.3em;
  line-height: 1.4;
  color: #f0f0f0; /* Slightly off-white for the body text */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Tablet and Smaller Desktop Screens (Max-width: 1024px) */
@media (max-width: 1024px) {
  .navbar {
    margin: 20px;
    padding: 15px 30px;
    height: 68px;
  }

  .nav-links a {
    margin-left: 15px;
    font-size: 1em;
  }

  .hero-title {
    font-size: 3.5em;
  }

  .hero-description {
    font-size: 1.1em;
  }
  .contact-section {
    flex-direction: row;
    gap: 2rem;
    padding: 10px;
    width: 500px;
  }
}
/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.map-acc {
  flex-direction: column;
}
.bar {
  height: 3px;
  width: 25px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .accordion {
     width: 450px!important;
  }
  .nav-links a  {
    font-size: 14px!important;
  }
  .slider {
    width: 100%;
    height: 80vh!important;
    position: relative;
  }
}
@media (max-width: 768px) {
  .slider {
    width: 100%;
    height: 60vh!important;
  }
  .slider-wrapper {
    width: 100%;
    height: 100%!important;
    position: relative;
  }
  .slider-wrapper img {
    width: 100%;
    height:  100%!important;
    object-fit: contain;
  }
  .accordion-scroll {
    max-height: 500px!important;
    overflow-y: auto;
  }
  .container h2 {
    margin-top: 0;
  }
  .top-nav {
    flex-direction: row;
    gap: 40px;
  }

  .img2,
  .img1,
  .img3 {
    width: 140px;
    height: 50px;
    margin-top: 0;
  }
  .sticky-nav {
    display: block;
    position: fixed;
    top: 58px;
    width: 100%;
    background: #c5392a;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease-in-out;
  }
  .sticky-top {
    top: 0 !important;
  }
  .nav-links {
    flex-direction: row;
    align-items: flex-start;
    gap: 1px;
    padding-left: 5px;
    /* width: 75%; */
  }

  .nav-links li {
    display: none;
    width: 100%;
    margin: 10px 0;
  }

  .nav-links li.search-block {
    display: flex !important;
    justify-content: flex-end;
    margin-top: 10px;
  }

  .nav-links.show li {
    display: block;
    padding-left: 5px;
  }
  .search-block {
    margin-right: 0;
  }
  .nt-search-input {
    padding: 10px;
    font-size: 10px;
    align-items: right;
  }
  .about-section {
    overflow: hidden;
  }
  .mySlides img {
    width: 100% !important;
    height: 40vh !important;
    margin-top: 9%;
  }
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline div {
    width: 90%;
    padding: 12px;
  }

  .timeline-content {
    padding: 0 20px;
  }
  .timeline-content p {
    font-size: 12px;
  }

  .leaders {
    flex-direction: column;
    align-items: center;
  }

  .leader-card {
    width: 90%;
  }

  .leader-card img {
    width: 80px;
    height: 80px;
  }

  .leader-card h3 {
    font-size: 18px;
  }

  .leader-card p {
    font-size: 14px;
  }

  .leader-card button {
    padding: 8px 30px;
    font-size: 12px;
  }
  .leadership-section h2 {
    font-size: 1.6rem;
  }
  .container h2 {
    font-size: 1.6rem;
  }
  .container p {
    font-size: 14px;
  }
  .icons-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .icon-box {
    flex-direction: column;
    text-align: center;
  }

  .icon-box img {
    width: 80px;
    height: 80px;
  }

  .icon-box p {
    font-size: 13px;
    max-width: 280px;
  }

  .highlight-section {
    padding: 40px 20px;
    background-size: contain;
  }

  .highlight-section p {
    font-size: 13px;
  }

  .highlight-section h2 {
    font-size: 20px;
  }
  .info-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 20px;
  }

  .info-box img {
    width: 70px;
    height: 70px;
  }

  .info-box strong {
    font-size: 20px;
  }

  .info-box p {
    font-size: 13px;
  }

  .future-section {
    padding: 40px 20px;
  }

  .future-section h2 {
    font-size: 1.6rem;
  }

  .future-section p {
    font-size: 14px;
  }
  .modal-content {
    width: 95%;
    padding: 18px;
  }

  .modal-content h2 {
    font-size: 1rem;
    margin-top: -26px;
  }

  .modal-content p {
    font-size: 0.75rem;
  }

  .close {
    font-size: 22px;
  }
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 5px;
  }

  .foot {
    flex-direction: column;
    gap: 0px;
  }

  .foot p {
    margin-top: 5px;
  }

  .foot-links {
    display: inline-block;
    margin: 5px 3px;
    font-size: 13px;
  }
  .links {
    gap: 0px;
    padding: 0;
  }
}
/* Hide nav links on mobile by default */
@media (max-width: 768px) {
  .navbar {
    margin: 0!important;                 /* remove margin */
    border-radius: 0!important;          /* remove rounded corners */
    padding: 15px 20px!important;        /* smaller padding for mobile */
    background-color: #ffffff!important; /* solid white background */
    position: sticky!important;           /* stick to top */
    top: 0!important;
    left: 0!important;
    right: 0!important;
    height: 70px!important;              /* adjust height */
    z-index: 99!important;
  }

  /* Logo size adjustment (optional) */
  .logo img {
    height: 45px;
    width: auto;
  }

  /* Hide desktop nav links */
  .nav-links {
    display: none;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;
    cursor: pointer;
  }
  /* .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 45px;
    left: 0;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    z-index: 9;
  }

  .nav-links a {
    margin: 10px 0;
    font-size: 1.1em;
  }*/

  /* When active (JS adds .active) */
  .nav-links.active {
    display: flex;
  } 

  /* Animate hamburger to 'X' */
  .menu-toggle.toggle .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .menu-toggle.toggle .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .contact-section {
    flex-direction: column;
    gap: 2rem;
    padding: 10px;
    width: 100%;
  }
  .container-map h3 {
    font-size: 1rem;
    margin-top: 15%;
  }

  .contact-card p {
    font-size: 14px;
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }

  .contact-card img {
    width: 30px;
    height: 30px;
    padding: 6px;
  }

  .contact-card h3{
    font-size: 2rem;
    text-align: center;
    margin-top: 2%;
  }

  .map img {
    max-width: 100%;
    height: auto;
  }
  .map {
    margin-top: 0%;
  }
  .container-map {
    padding: 1%;
  }
  .accordion {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .slide {
    background-repeat: no-repeat!important;
    background-size: cover!important;
  }
  .slider {
    width: 100%;
    height: 30vh!important;
    position: relative;
  }
  .accordion-scroll {
    overflow: hidden;
  }
}
@media (max-width: 375px) {
  .slider {
    width: 100%;
    height: 30vh!important;
    position: relative;
  }
}
@media (max-width: 320px) {
  .slider {
    width: 100%;
    height: 26vh!important;
    position: relative;
  }
}
/* ==================================== */
/* ABOUT US SECTION             */
/* ==================================== */
.about-us-section {
  position: relative;
  background-color: #fcfbf8; /* Very light, off-white background */
  padding: 80px 20px;
  text-align: center;
  color: #333;
  overflow: hidden; /* Contains the background image */
}

/* Style for the subtle background image (the silhouettes) */
.about-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* NOTE: You MUST replace this with the actual URL/path for the silhouette image */
  background: url("../images/BGAboutUs.png") no-repeat right bottom/cover;
  /* opacity: 0.2; Make the background image subtle */
  pointer-events: none; /* Allows clicks to pass through to content */
  z-index: 1;
}

.about-us-content {
  position: relative; /* Brings content above the background silhouette */
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2em;
  font-weight: normal;
  margin-bottom: 20px;
  color: #555;
}

.main-heading {
  font-size: 2.8em;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #4a3424; /* Dark brown/chocolate color */
}

.heading-divider {
  width: 150px;
  height: 6px;
  background: linear-gradient(to right, #c88d51, #613614); /* Gradient line */
  margin: 0 auto;
}

.text-block {
  font-size: 1.15em;
  line-height: 1.6;
  margin: 20px 0;
  color: #666;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Style for the 'Know More' Button */
.know-more-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background-color: #7b4f3b; /* The rich brown color from the image */
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.know-more-btn:hover {
  background-color: #a66a3d;
}
.about {
  text-align: center; /* Ensures all content inside is centered */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.counter-section {
  display: flex;
  width: 100%;
  justify-content: center; /* Centers counters */
  align-items: center;
  gap: 15%; /* Adds spacing between counters */
  flex-wrap: wrap; /* Makes it responsive */
  text-align: center;
  font-weight: bold;
  /* line-height: 30px; */
}

.counter {
  font-size: 3rem;
}

/* ==================================== */
/* PRODUCTS & MOTTO SECTION      */
/* ==================================== */
.products-motto-section {
  background-color: #d9d9d9; /* Consistent light background */
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 700px; /* Minimum height to accommodate content */
  border-radius: 40px;
  margin: 50px 50px 0 50px; /* Margin to create the grey border effect around */
  overflow: hidden; /* Important for containing rounded corners */
}

.products-motto-container {
  width: 90%; /* Max width of the content area */
  max-width: 1100px;
  padding: 40px; /* Internal padding */
  border-radius: 20px; /* Inner rounded corners for the content block */
}

.product-categories {
  display: flex;
  justify-content: space-between;
  gap: 40px; /* Space between product circles */
  margin-bottom: 60px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.product-item {
  text-align: center;
  text-decoration: none;
  color: #555;
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #a66a3d; /* Darker brown circle */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #e8c09a; /* Light border */
  overflow: hidden; /* Ensures image stays within circle */
}

.product-circle img {
  width: 60%; /* Adjust size of icons inside circle */
  height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes the icons white if they are black */
}

.product-item span {
  display: block;
  font-size: 0.9em;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-top: 10px;
  color: #4a3424; /* Dark text for product names */
}

.motto-content {
  display: flex;
  align-items: center;
  gap: 50px; /* Space between image and text */
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.motto-image-wrapper {
  flex: 1;
  min-width: 400px; /* Minimum width for the image container */
  position: relative;
  padding-bottom: 30px; /* Space for the bottom rounded corner */
}

.motto-image {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 0 50px 0 0;
}

.motto-text-container {
  flex: 1;
  min-width: 400px; /* Minimum width for text container */
  text-align: left;
  padding: 20px 0;
}

.motto-title {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #613614; /* Orange-brown for the motto title */
}
/* Highlight specific words in orange/red */
.motto-title span {
  color: #c78d53;
}

.motto-description {
  font-size: 1.1em;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.motto-learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background-color: #613614;
  color: white;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.motto-learn-more-btn:hover {
  background-color: #c78d53;
}

.motto-learn-more-btn svg {
  fill: white;
  width: 18px;
  height: 18px;
}
.heading-divider-section {
  width: 150px;
  height: 6px;
  background: linear-gradient(to right, #c88d51, #613614); /* Gradient line */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .motto-content {
    flex-direction: column;
  }
  .motto-image-wrapper,
  .motto-text-container {
    min-width: unset;
    width: 100%;
  }
  .product-categories {
    gap: 10px;
  }
  .product-circle {
    width: 100px;
    height: 100px;
  }
  .motto-title {
    font-size: 2.2em;
  }
  .hero-title {
    font-size: 3.5em;
  }
}

@media (max-width: 768px) {
  .hero-content {
    left: 20px;
    max-width: 90%;
  }
  .hero-title {
    font-size: 2.8em;
  }
  .hero-description {
    font-size: 1.1em;
  }
  .products-motto-section {
    margin: 20px 20px 0 20px;
  }
  .products-motto-container {
    padding: 20px;
  }
  .product-categories {
    flex-direction: column; /* Stack product items vertically on small screens */
    align-items: center;
  }
  .product-item {
    margin-bottom: 20px;
  }
  .motto-title {
    font-size: 1.8em;
  }
  .motto-description {
    font-size: 1em;
  }
}

/* ==================================== */
/* PRODUCTS DESCRIPTION SECTION   */
/* ==================================== */
.products-description-section {
  background-color: #fcfbf8; /* Consistent light background */
  padding: 80px 50px;
  text-align: center;
  border-radius: 40px; /* Rounded corners for the entire section */
  margin: 50px 50px 80px 50px; /* Margin to create the grey border effect around */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Reusing styles from the About Us section for the header */
.products-description-section .section-title {
  color: #4a3424; /* Darker color for the title */
  margin-bottom: 5px;
}

.products-description-section .heading-divider {
  margin-bottom: 50px;
  margin-top: 20px;
}

.product-description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.product-item-desc {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
}

.product-item-desc:nth-child(even) {
  flex-direction: row; /* Swap icon and text for the right column */
  text-align: left;
}

/* Product circle styles (reused from previous section) */
.product-item-desc .product-circle {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #a66a3d;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #e8c09a;
  overflow: hidden;
}

.product-item-desc .product-circle img {
  width: 55%;
  height: 55%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.product-desc-text p {
  font-size: 1.05em;
  line-height: 1.5;
  color: #666;
}

/* Responsive adjustments for the new section */
@media (max-width: 900px) {
  .product-description-grid {
    grid-template-columns: 1fr; /* Stack items vertically on smaller screens */
    text-align: center;
  }
  .products-description-section {
    margin: 30px 20px;
  }
  .product-item-desc {
    display: block;
  }
  .product-item-desc:nth-child(even) {
    flex-direction: row; /* Reset to default layout for single column */
    text-align: center;
  }
}
/* ==================================== */
/* FOOTER SECTION               */
/* ==================================== */
.main-footer {
  background-color: #555555; /* Dark grey color from the image */
  color: #d4d4d4; /* Light grey text color */
  padding: 60px 80px;
  font-size: 1.05em;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.footer-column {
  flex: 1;
  min-width: 250px; /* Ensure columns don't get too narrow */
}

.column-header {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  color: white;
  margin-bottom: 25px;
  position: relative; /* To position the custom line */
  padding-bottom: 10px; /* Space for the line */
}
/* FIX 1: Custom line under the header text (Products, Explore, Contact) */
.column-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 100px; /* Shorter line width */
  height: 3px;
  background-color: #ffffff; /* Light brown color */
}
.column-header img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  /* Filter to make a dark icon look light/white on the dark background */
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-link-list {
  list-style: none;
  padding: 0;
}

.footer-link-list li {
  margin-bottom: 10px;
}

.footer-link-list a {
  color: #d4d4d4;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link-list a:hover {
  color: #ffc107; /* Highlight color on hover */
}

/* Contact Column Specifics */
.contact-info {
  line-height: 1.5;
}

.contact-info a {
  text-decoration: none;
  color: #d4d4d4;
}

.contact-info p {
  margin-bottom: 15px;
  word-wrap: break-word; /* Ensure long emails don't overflow */
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
 .social-icons a img {
  width: 75%;
 }

/* Responsive Footer */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 20px;
  }
  .footer-container {
    flex-direction: row;
    gap: 30px;
  }
}
/* ----------------------------------------------------------- */
/* ABOUT HERO SECTION */
/* ----------------------------------------------------------- */
.about-section {
  position: relative;
  height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden; /* Slider ke liye important */
}

.slider {
    position: relative;
    width: 100%;
    height: 100vh; /* adjust */
    overflow: hidden;
}
.slider-wrapper {
    display: flex;
    transition: transform 0.7s ease;
    width: 100%;
    height: 100%;
}

.slide {
     min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    /* IMPORTANT: remove display: none */
    position: absolute;
    top: 0;
    left: 0;

    opacity: 0;
    transition: opacity 3s ease-in-out;
    z-index: 1; /* background slides stay behind */
}
/* Only apply fade animation when there are multiple slides */
.slider-wrapper.multiple-slides .slide {
    opacity: 0;
    animation: fadeSlide 7s ease-in-out infinite;
}
.slider-wrapper.multiple-slides .slide.active {
    opacity: 1;
}
.slide.active,
.slider .slide[style*="opacity: 1"] {
    opacity: 1;
    z-index: 2; /* active slide comes on top */
}
.slider .active  {
	opacity: 1;
  display: block;
}
/* Fade keyframes */
@keyframes fadeSlide {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}
.about-hero-content {
  position: relative;
  z-index: 5;
  max-width: 600px;
  width: 90%;
  text-align: center;
}
.about-section,
.slider {
    overflow: visible !important;
}

.about-title {
  font-size: 4.5em;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Circular Image */
.circular-image-container {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 8;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* -------------------------------------------- */
/* FEEDS SECTION */
/* -------------------------------------------- */
.noveltech-feeds-section {
  background-color: #fff;
  padding: 100px 20px 60px;
  text-align: center;
}

.content-container {
  max-width: 1000px;
  margin: 0 auto;
}

.text-block {
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-block p {
  font-size: 1.1em;
  line-height: 1.6;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  text-align: left;
  max-width: 400px;
}

.stat-icon-wrapper {
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.stat-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-text {
  font-size: 1em;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.highlight {
  font-weight: 800;
  display: block;
}

/* -------------------------------------------- */
/* DETAILS SECTION */
/* -------------------------------------------- */
.noveltech-details-section {
  background-color: #f7f7f7;
  padding: 80px 20px;
}

.noveltech-details-section .content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.detail-card {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.detail-card:hover {
  transform: translateY(-2px);
}

.card-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.card-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-title {
  font-size: 1.25em;
  color: #613614;
  font-weight: 700;
  margin: 0 0 5px;
  position: relative;
}

.card-title span {
  color: #c78d53;
}

.card-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #c88d51, #613614);
  margin-top: 8px;
}

.card-content p {
  font-size: 0.95em;
  line-height: 1.5;
  margin: 0;
}

/* -------------------------------------------- */
/* LEADERSHIP SECTION */
/* -------------------------------------------- */
.leadership-section {
  background-color: #e6e6e6;
  padding: 80px 20px;
  color: #333;
  text-align: center;
}

.leadership-header {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.team-member-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 25px;
}

.member-photo {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 15px;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.member-title {
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(to right, #c88d51, #613614);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----------------------------------------------------------- */
/* RESPONSIVE DESIGN */
/* ----------------------------------------------------------- */

/* Tablet adjustments */
@media (max-width: 1024px) {
  .about-title {
    font-size: 3em;
  }

  .circular-image-container {
    width: 200px;
    height: 200px;
    bottom: -80px;
  }

  .stats-row {
    gap: 60px;
  }

  .team-grid {
    gap: 20px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.5em;
  }

  .circular-image-container {
    width: 160px;
    height: 160px;
    bottom: -60px;
  }

  .detail-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .card-icon-wrapper {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
  }

  .stat-icon-wrapper {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .card-title {
    justify-items: center;
  }
  .accordion-button {
    width: 100%;
  }
  .accordion {
    width: 100%!important;
  }
  .map-section {
    padding: 0.75rem!important;
  }
}

/* Small Mobile (Phones <480px) */
@media (max-width: 480px) {
  .about-title {
    font-size: 3em;
  }

  .text-block p {
    font-size: 1em;
  }

  .section-title {
    font-size: 1.6em;
  }

  .member-name {
    font-size: 1.2rem;
  }

  .member-title {
    font-size: 0.9rem;
  }
}

/* ----------------------------------------------------------- */
/* PRODUCT HERO SECTION */
/* ----------------------------------------------------------- */
.product-section {
  /* background: url("../images/banner-ourpresence-22nov.png") no-repeat center center/cover; */
  height: 100vh;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.brands-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(to right, #c88d51, #613614);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brands-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-card {
  background: #d9d9d9;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
  flex: 1 1 300px;
  max-width: 340px;
  text-align: left;
  border-left: 6px solid #613614;
  border-bottom: 6px solid #613614;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.15);
}

.brand-logo {
  height: 40px;
  margin-bottom: 10px;
}

.brand-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .brands-container {
    flex-direction: column;
    align-items: center;
  }

  .brand-card {
    max-width: 90%;
  }

  .section-title {
    font-size: 1.3rem;
  }
}
.tabs,
.sub-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.tab,
.sub-tab {
  font-weight: 600;
  width: 17%;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background-color: #C88D51;
  color: white;
  transition: background 0.3s;
}
.sub-tabs {
  width: 20%;
  height: 100%;
  display: grid;
  justify-content: left !important;
  gap: 22px;
  margin-top: 22px;
}
.sub-tab {
  width: 143%;
  height: 50px;
  border-radius: 0%;
  gap: 0%;
  margin: 0% !important;
}
.tab.active,
.sub-tab.active {
  background-color: #613614;
}
.content-section {
  display: none;
}
.content-section.active {
  display: flex;
  /* justify-content: center; */
  width: 100%;
}
.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
  margin-top: 20px;
  justify-content: center;
  width: 100%;
}
.brand .brand-img {
  display: block;
  margin: auto;
  width: 100% !important;
}

.brand h3 {
  margin-bottom: 10px;
}
ul {
  list-style: disc inside;
  padding: 0%;
  gap: 10px;
  display: grid;
  font-weight: 501;
}

@media (max-width: 1024px) {
  .sub-tab {
    width: 20%;
    padding: 8px 10px !important;
    height: 40px !important;
  }
  .tab {
    padding: 8px 10px;
  }
  .sub-tabs {
    width: 100% !important;
    display: flex;
    justify-content: center !important;
  }
  .content-section.active {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .sub-tabs {
    width: 100% !important;
    display: flex;
    justify-content: center !important;
    gap: 0 !important;
    height: 20% !important;
  }
}
@media (max-width: 600px) {
  .tab,
  .sub-tab {
    flex: 1 1 100%;
    text-align: center;
  }
  .circular-image-container {
    display: none;
  }
}
@media (max-width: 425px) {
  .sub-tab {
    width: 27% !important;
  }
}

.query-section {
  background-color: #bfbfbf;
  padding: 60px 20px;
  text-align: center;
}

.query-title {
  display: grid;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 25px;
  background: linear-gradient(to right, #c88d51, #613614);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  justify-items: center;
}

.query-title::before {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #c88d51, #613614);
  margin-top: 8px;
}

.query-form {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-row input,
.form-row select {
  flex: 1;
  min-width: 240px;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #ccc; /* Add a border so the dropdown is visible */
  border-radius: 5px;
  outline: none;
  background: #fff; /* Ensure the background is white */
}
.form-control {
    padding: 12px 14px;
}
.query-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='7' viewBox='0 0 12 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 7px;
    cursor: pointer;
    transition: border 0.3s;
}

textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px 14px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  resize: vertical;
  outline: none;
}

.form-btn {
  width: 120px;
  padding: 10px;
  background: #000;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 0 auto;
  transition: background 0.3s ease;
}

.form-btn:hover {
  background: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .query-title {
    font-size: 1.5rem;
  }

  button {
    width: 100%;
    max-width: 100%;
  }
  .accordion-header button  {
     max-width:100%!important;
  }
}
/* ----------------------------------------------------------- */
/* OUR PRESENCE HERO SECTION */
/* ----------------------------------------------------------- */
.presence-section {
  /* background: url("../images/banner-product-main.png") no-repeat center center/cover; */
  height: 100vh;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.presence-hero-content {
  position: absolute;
  top: 80%; /* Center vertically */
  left: 50px;
  transform: translateY(-50%); /* Adjust for perfect vertical center */
  max-width: 900px;
  z-index: 5;
}

.presence-title {
  font-size: 2.5em;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: left;
}
.map {
  background-color: white;
}
.container-map {
  text-align: center;
  padding: 40px 20px;
}
.map-section {
  display: flex;
  gap: 20px;
  padding: 2rem;
}
.map-acc {
  width: 100%;
}
.container-map h3 {
  font-weight: 600;
  font-size: 1.5rem;
}
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.india {
  font-weight: bold;
  font-size: 44px;
}

.accordion-body {
  text-align: left;
}
.accordion {
  display: grid;
  padding: 0px 20px;
  gap: 10px;
  width: 100%;
  height: 600px;
  overflow-y: scroll;
  scrollbar-color: #AF512E #ffffff;
}

.accordion {
    position: relative;
}

.accordion-scroll {
    max-height: 600px; /* adjust as needed */
    /* overflow-y: auto; */
    padding-right: 5px;
}

.accordion-legend {
    /* position: sticky; */
    bottom: 0;
    background: #fff;
    padding: 10px 15px;
    border-top: 1px solid #ddd;
}

.accordion-header button {
  font-weight: bold;
    border-radius: 10px!important;
}
.info {
  text-align: center;
}
.info p {
  color: red;
  font-size: 12px;
}
.accordion-button {
  background-color: #C88D51;
  color: white;
  border-radius: 10px;
  box-shadow: none;
}
.accordion-button::after {
  color: white;
}
.accordion-button:not(.collapsed) {
  background-color: #C88D51;
  color: white;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  border: none!important;
}

.life-section {
  /* background: url("../images/ourpresence-22noc.png") no-repeat center center/cover; */
  /* height: 57vh; */
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/* --- Our Strength Section --- */
.strength-section {
  background-color: #d6d6d6;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.strength-container {
  background-color: #fff;
  max-width: 1100px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.strength-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #3b2f2f;
  margin-bottom: 20px;
  text-align: left;
}

.strength-title span {
  color: #a85500;
}

.strength-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  text-align: justify;
}

.strength-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.career-link {
  color: #a85500;
  font-weight: 600;
  text-decoration: none;
}

.career-link:hover {
  text-decoration: underline;
}

.email-link {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

/* --- Life @ Noveltech Section --- */
.lifes-section {
  background-color: #1f1f1f;
  color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}

.life-container {
  max-width: 900px;
  margin: 0 auto;
}

.life-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #c47300;
  margin-bottom: 20px;
}

.life-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #d8d8d8;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .strength-container {
    padding: 25px;
  }

  .strength-title {
    font-size: 1.3rem;
  }

  .strength-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .life-title {
    font-size: 1.3rem;
  }

  .life-text {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .map-section {
    flex-direction: column;
  }

}

.contact-banner-section {
  /* background: url("../images/Contact-us-Banner-22nov.png") no-repeat center center/cover; */
  height: 100vh;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* --- Contact Section --- */
.contact-page-section {
  /* background-color: #bfbfbf; */
  text-align: center;
  padding: 60px 20px 0;
}

.contact-container {
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 10px;
}

.contact-title {
  font-size: 1.5rem;
  color: #a85500;
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-card-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon {
  width: 120px;
  height: 110px;
  margin-bottom: 15px;
  border-radius: 12px;
}

.contact-info-section h3 {
  color: #a85500;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-info-section p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-section a {
  color: #333;
  text-decoration: none;
}

/* --- Footer Contact Section --- */
.footer-connect {
  background-color: #464646;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin: 40px;
  border-radius: 10px;
}

.footer-connect h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  position: relative;
}

.footer-connect h3::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: #fff;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
  max-width: 800px;
  margin: 0 auto;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #f2f2f2;
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: #ddd;
  transform: translateY(-2px);
}

.icon-contact {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .contact-container {
    padding: 25px;
  }

  .contact-title {
    font-size: 1.3rem;
  }
  .footer-connect {
    margin: 15px;
  }

  .footer-connect h3 {
    font-size: 1.1rem;
  }
  .social-links {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .social-btn {
    justify-content: center;
    text-align: center;
    font-size: 12px;
    width: 90%;
  }

  .icon-contact {
    margin-right: 8px;
  }

  .logo img{
    width:60%;
  }
  .footer-column {
    min-width: 110px;
  }
  .product-categories {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;

  }
  .product-item img{
    width: 80%;
  }
  .contact-banner-section {
    height: 60vh;
  }
  .life-section {
    height: 60vh;
  }
  .product-section {
    height: 60vh;
  }
  .presence-section {
    height: 60vh;
  }
}
@media (max-width: 425px) {
  .contact-banner-section {
    height: 25vh;
    width: 100%;
  }
  .life-section {
    height: 30vh;
  }
  .product-section {
    height: 30vh;
  }
  .presence-section {
    height: 30vh;
  }
  .hero {
    height: 30vh;
  }
  .about-section {
    height: 30vh;
  }

  .product-item {
    width: 45%;
  }
  .product-item img {
    width: 100%;
  }
  .product-categories{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .presence-title {
    font-size: 15px;
  }
  .presence-hero-content {
    left: -2px;
    padding: 30px;
  }
  .tab {
    font-size: 10px;
  }
  .motto-content {
    gap: 20px;
  }
  .product-categories {
    margin-bottom: 20px;
  }
  .navbar {
    margin: 0px;
    border-radius: 0px;
    position: sticky;
  }
  .hero-title {
    font-size: 30px;
    margin-bottom: .5rem;
  }
  .hero-description {
    font-size: 14px;
    margin-bottom: 30px;
    }
    .hero-content {
      top: 60%;
    }
    .circular-image-container {
      width: 100px;
      height: 100px;
      bottom: -60px;
    }
    .about-title {
      font-size: 2em;
      margin: 10px;
    }
    .navbar {
      height: 45px;
    }
    .about-us-section{
      padding: 40px 20px;
    }
    .social-links {
      margin-right: 5px;
    }
  }
@media (max-width: 320px) {
  .social-btn {
    justify-self: flex-start;
  }

}

.slider-old {
	width: 100%;
  height: 400px;
	margin: 2em auto;

}

.slider-wrapper-old {
	width: 100%;
	height: 400px;
	position: relative;
}

.slide-old {
	float: left;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 3s;
}

.slider-wrapper-old > .slide-old:first-child {
	opacity: 1;
}

@media (max-width: 767px) {
  .img2,
  .img1,
  .img3 {
    width: 88px;
    height: 50px;
    margin-top: 0;
  }
  .footer-section p {
    display: grid;
  }
}
/* Remove arrows in Chrome, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

#mainTabs {
    scroll-margin-top: 120px; /* height of your fixed header */
}
