  /* ================= GLOBAL RESET ================= */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
  }

  html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
  }

  body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #F5F0F9;
    width: 100%;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #672072;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ================= HEADER (PURPLE TINTED TRANSPARENT) ================= */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(245, 240, 249, 0.88); /* Light purple with transparency */
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-bottom: 1px solid rgba(103, 32, 114, 0.12); /* Light purple border */
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(103, 32, 114, 0.08); /* Purple shadow */
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }

  /* ================= LOGO (MOVED LEFT + PVT LTD BLACK & SMALLER) ================= */
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    /* MOVE LOGO LEFT - Change this value to move logo */
    margin-left: -60px; /* NEGATIVE VALUE = MOVES LEFT, POSITIVE = MOVES RIGHT */
    margin-right: auto;
  }

  .logo:hover {
    transform: scale(1.05);
  }

  .logo img {
    /* LOGO IMAGE SIZE */
    height: 65px; /* CHANGE THIS TO RESIZE LOGO IMAGE */
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }

    /* LOGO TEXT FIX */

    .logo-text {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 32px; /* SAME SIZE FOR NAMMA & RX */
      letter-spacing: -1px;
      line-height: 1;
      display: flex;
      align-items: baseline;
      gap: 0px;
    }

    .namma {
      color: #672072; /* PURPLE */
    }

    .rx {
      color: #6BAA4F; /* GREEN */
      font-size: 32px; /* SAME AS NAMMA */
      font-weight: 600;
    }

    .pvt {
      color: #000000; /* BLACK */
      font-size: 18px; /* SMALLER */
      font-weight: 500;
      margin-left: 4px;
    }

  /* ================= NAVIGATION (WITH HOVER UNDERLINE) ================= */
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
  }

  .main-nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6BAA4F;
    transition: width 0.3s ease;
  }

  .main-nav a:hover::after,
  .main-nav a.active::after {
    width: 100%;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: #672072;
  }
  /* ================= DROPDOWN MENU STYLES ================= */

  /* Dropdown container */
  .nav-item {
    position: relative;
  }

  /* Dropdown menu - hidden by default */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(32, 10, 40, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 280px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 8px;
    border: 1px solid rgba(107, 170, 79, 0.2);
  }

  /* Show dropdown on hover */
  .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Dropdown links */
  .dropdown-menu a {
    display: block;
    padding: 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
  }

  /* Dropdown link hover effect */
  .dropdown-menu a:hover {
    background: rgba(107, 170, 79, 0.15);
    border-left-color: #6BAA4F;
    color: #6BAA4F;
    padding-left: 32px;
  }

  /* Add down arrow for dropdown parent links */
  .nav-item > a.has-dropdown {
    position: relative;
    padding-right: 20px;
  }

  .nav-item > a.has-dropdown::before {
    content: '▼';
    position: absolute;
    right: 0;
    font-size: 9px;
    transition: transform 0.3s ease;
    color: #6BAA4F;
  }

  .nav-item:hover > a.has-dropdown::before {
    transform: rotate(180deg);
  }

  /* ================= MOBILE DROPDOWN ================= */
  @media (max-width: 900px) {
    .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      background: rgba(32, 10, 40, 0.8);
      margin-top: 0;
      padding-left: 20px;
      display: none;
    }

    .mobile-nav .nav-item.open .dropdown-menu {
      display: block;
    }

    .mobile-nav .nav-item > a {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  }
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #672072;
    user-select: none;
  }

  .mobile-nav {
    display: none;
    width: 100%;
    background: F5F0F9;
    border-top: 1px solid #eee;
    padding: 16px 0;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 14px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
  }

  .mobile-nav a:hover {
    background: #f4f1f6;
    color: #672072;
  }

  .mobile-nav.open {
    display: flex;
  }

  /* ================= HERO SECTION (PLAYFAIR DISPLAY) ================= */
  .video-hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 80px; /* ADD SPACE FOR FIXED HEADER */
  }

  .video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  
  /* ================= HOME PAGE VIDEO HERO OVERLAY - LIGHTER FOR BETTER VIDEO VISIBILITY ================= */

  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)); 
    /* Very light overlay - video very clear */
  }
  .hero-center {
    position: relative;
    z-index: 2; 
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  /* HERO TITLE - PLAYFAIR DISPLAY */
  .hero-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 5.0rem; /*science matters*/
    font-weight: 700;
    text-shadow: 0 12px 35px rgba(1, 1, 1, 0.8);
    margin-bottom: 1rem;
    animation: fadeInScale 1.2s ease forwards;
    opacity: 0;
    letter-spacing: 2px;
  }

  .hero-sub {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    text-shadow: 0 12px 35px rgba(1, 1, 1, 0.8);
    animation: fadeInUp 1.6s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
    letter-spacing: 0.5px;
  }

  /* ================= HERO SUBTITLE SPAN - BETTER TEXT VISIBILITY ================= */

  .hero-sub span {
    color: #6BAA4F; /* Green color */
    font-weight: 700;
    text-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.9),    /* Close shadow for definition */
      0 4px 16px rgba(0, 0, 0, 0.8),   /* Medium shadow for depth */
    /* Multiple shadows create strong, readable text on video */
  }
  /* HERO ANIMATIONS */
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ================= SECTIONS ================= */
  .section {
    padding: 6rem 0;
  }

  .gray {
    background: #f8f8f8;
  }

  .split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
  }

  .split.reverse {
    direction: rtl;
  }

  .split.reverse > * {
    direction: ltr;
  }

  /* ================= ABOUT TEXT (PLAYFAIR DISPLAY) ================= */
  .about-text {
    max-width: 550px;
  }

  .about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem; /*Pharmaceutical Innovation at Scale*/
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #672072;
  }

  .about-text h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #6BAA4F;
    margin-top: 18px;
    border-radius: 2px;
  }

  .about-text h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: #672072;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
  }

  .about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #444;
  }

  .about-text ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
  }

  .about-text li {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    line-height: 1.6;
  }

  /* ================= IMAGE ================= */
  .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  /* ================= IMAGE SLIDER (FASTER + NO CAPTIONS) ================= */
  /* HERO IMAGE SLIDER */

  .image-slider {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
  }

  .slider-track {
    display: flex;
    gap: 20px;
    animation: scrollImages 30s linear infinite;
  }

  .image-slider:hover .slider-track {
    animation-play-state: paused;
  }

  .slide {
    flex: 0 0 auto;
  }

  .slide img {
    width: 320px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  .slide:hover img {
    transform: scale(1.05);
  }

  /* Animation */

  @keyframes scrollImages {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-1 * (340px * 6)));
    }
  }

  /* ================= BUSINESS SEGMENTS (GLASSY MODERN LOOK) ================= */

  .center-title {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
  }

  .business-title {
    color: #672072; /* Purple */
    font-weight: 500;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Green underline for title */
  .business-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #6BAA4F; /* Green */
    margin: 18px auto 0;
    border-radius: 2px;
  }

  /* BUSINESS GRID - 3 PER ROW */
  .business-grid.enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  /* Business card - clickable with glassy effect */
  .business-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(103, 32, 114, 0.15); /* Purple shadow */
    border: 1px solid rgba(255, 255, 255, 0.18); /* Light border for glass effect */
  }

  /* Hover animation - lift and glow */
  .business-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(103, 32, 114, 0.3); /* Stronger purple shadow on hover */
  }

  /* Card image */
  .business-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.5s ease;
  }

  .business-card:hover img {
    transform: scale(1.15); /* Zoom in on hover */
    filter: brightness(0.75); /* Darken slightly */
  }

  /* Glassy overlay */
  .business-overlay {
    position: absolute;
    inset: 0;
    color: #F5F0F9; /* Off-white text */  
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s ease;
  }
  /* ================= MAKE CARDS WORK AS LINKS ================= */

  /* Remove default link styling */
  .business-card {
    text-decoration: none;
    display: block;
  }

  .business-card:visited {
    color: inherit; /* Keep text color same after visit */
  }

  .business-card:focus {
    outline: 2px solid #6BAA4F; /* Green outline for accessibility */
    outline-offset: 3px;
  }

  /* Card title */
  .business-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* Shadow for readability */
    transition: transform 0.4s ease;
  }

  .business-card:hover .business-overlay h3 {
    transform: translateY(-5px); /* Lift title on hover */
  }

  /* Card description */
  .business-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #f0f0f0;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: opacity 0.4s ease;
  }

  .business-card:hover .business-overlay p {
    opacity: 1;
  }

  /* Click indicator - optional */
  .business-card::after {
    content: "→";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .business-card:hover::after {
    opacity: 0.8;
    transform: translateX(5px);
  }

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

  @media (max-width: 1024px) {
    .business-grid.enhanced {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
      gap: 25px;
    }
    
    .business-card {
      height: 300px;
    }
  }

  @media (max-width: 768px) {
    .business-grid.enhanced {
      grid-template-columns: 1fr; /* 1 column on mobile */
      gap: 22px;
    }
    
    .business-card {
      height: 280px;
    }
    
    .business-overlay h3 {
      font-size: 1.3rem;
    }
    
    .business-overlay p {
      font-size: 0.9rem;
    }
  }
  /* ================= CLIENTS AND PARTNERS SECTION ================= */

  /* Center the "Clients and Partners" title */
  .partners-title {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #672072; /* Purple */
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Green underline for title */
  .partners-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #6BAA4F; /* Green */
    margin: 18px auto 0;
    border-radius: 2px;
  }

  /* Main container for the slider */

 /* ================= CLIENTS AND PARTNERS SECTION ================= */

.partners-slider {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
  background: #F5F0F9;
}

.partners-track {
  display: flex;
  align-items: center;
  animation: scrollPartners 25s linear infinite;
  will-change: transform;
  /* NO width:max-content */
}

.partner-logo {
  flex-shrink: 0;
  width: 280px;
  height: 160px;
  margin-right: 80px;  /* 280 + 80 = 360px per slot */
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: 260px;
  height: 150px;
  object-fit: contain;
  display: block;
  max-width: none !important;
  max-height: none !important;
}

/* 
  18 logos total, animate by 9 slots:
  9 × 360px = 3240px — moves exactly half, seamless loop
*/
@keyframes scrollPartners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-3240px); }
}

  /* RESPONSIVE DESIGN - Mobile devices */
  @media (max-width: 768px) {
    .partners-slider {
      padding: 40px 0; /* Less vertical padding on mobile */
      min-height: 150px; /* Smaller minimum height on mobile */
    }
    
    .partners-track {
      gap: 60px; /* Reduce gap between logos on mobile */
      animation-duration: 20s; /* Faster animation on mobile for better UX */
    }
    
    .partner-logo {
      width: 140px; /* Smaller logo width on mobile */
      height: 70px; /* Smaller logo height on mobile */
      padding: 10px; /* Less padding on mobile */
    }
  }

  /* RESPONSIVE DESIGN - Tablets */
  @media (min-width: 769px) and (max-width: 1024px) {
    .partner-logo {
      width: 170px; /* Medium size for tablets */
      height: 85px;
    }
    
    .partners-track {
      gap: 80px; /* Medium gap for tablets */
    }
  }

  /* RESPONSIVE DESIGN - Large screens */
  @media (min-width: 1440px) {
    .partner-logo {
      width: 220px; /* Larger logos for big screens */
      height: 110px;
    }
    
    .partners-track {
      gap: 120px; /* More space on large screens */
    }
  }
  /* ================= BUSINESS PAGE SPECIFIC ================= */
  .page-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: 80px; /* ADD SPACE FOR FIXED HEADER */
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      rgba(20, 10, 30, 0.7),
      rgba(20, 10, 30, 0.75)
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }

  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  }

  .page-hero p {
    font-size: 1.25rem;
    color: #f1f1f1;
    line-height: 1.7;
  }

  .business-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
  }

  .business-block.reverse {
    direction: rtl;
  }

  .business-block.reverse > * {
    direction: ltr;
  }

  .business-text {
    max-width: 650px;
  }

  .business-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #672072;
  }

  .business-text h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #6BAA4F;
    margin-top: 18px;
    border-radius: 2px;
  }

  .business-text h4 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #672072;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
  }

  .business-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #444;
  }

  .business-text ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
  }

  .business-text li {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
  }

  .business-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .business-cta {
    background: linear-gradient(135deg, #672072, #4e1858);
    text-align: center;
    padding: 5rem 0;
  }

  .business-cta h2 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .business-cta p {
    color: #f1f1f1;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
  }

  .btn.primary {
    background: #6BAA4F;
    color: #fff;
  }

  .btn.primary:hover {
    background: #5a8f42;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(107, 170, 79, 0.4);
  }

  .btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
  }

  .btn.secondary:hover {
    background: #fff;
    color: #672072;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
  }

  .cta-group {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .cta-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
  }

  .cta-primary {
    background: #672072;
    color: #fff;
  }

  .cta-primary:hover {
    background: #4e1858;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(103, 32, 114, 0.4);
  }

  .cta-secondary {
    background: transparent;
    border: 2px solid #672072;
    color: #672072;
  }

  .cta-secondary:hover {
    background: #672072;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(103, 32, 114, 0.3);
  }

  /* ================= PAGE HERO BACKGROUNDS ================= */
  .image-hero {
    background: url("../assets/business/hero.jpg") center/cover no-repeat;
  }

  .image-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
  }

  .image-hero h1 {
    font-size: 3.6rem;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
    margin-bottom: 1rem;
  }

  .image-hero p {
    font-size: 1.25rem;
    color: #f1f1f1;
    line-height: 1.7;
  }

  /* ================= ABOUT HERO ================= */
  .about-hero {
    position: relative;
    min-height: 73vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url("../assets/about/about-hero.jpg") center/cover no-repeat;
    margin-top: 95px; /* ADD SPACE FOR FIXED HEADER */
  }

  /* ================= ABOUT HERO OVERLAY - LIGHTER FOR BETTER IMAGE VISIBILITY ================= */

  .about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      rgba(0, 0, 0, 0.3),    /* Light black overlay at top - 30% opacity */
      rgba(0, 0, 0, 0.4)     /* Slightly darker at bottom - 40% opacity */
    );
  }

  .about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 1.5rem;
  }

  .about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  }

  .about-hero-content p {
    font-size: 1.2rem;
    color: #eaeaea;
    line-height: 1.7;
  }

  /* ================= CORE VALUES BACKGROUND ================= */
  .core-values-bg {
    position: relative;
    background: url("../assets/about/values-bg.jpg") center/cover no-repeat;
    padding: 7rem 0;
  }

  .core-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      rgba(32, 10, 40, 0.85),
      rgba(32, 10, 40, 0.85)
    );
  }

  .core-values-content {
    position: relative;
    z-index: 2;
  }

  .center-title.light {
    color: #ffffff;
    margin-bottom: 4rem;
  }

  /* FIXED GRID - Works for both 5 and 6 items */
  .core-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .core-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.4rem;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    transition: transform 0.4s ease, background 0.4s ease;
    flex: 0 1 calc(33.333% - 2rem); /* 3 items per row */
    min-width: 280px;
  }

  .core-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.14);
  }

  .core-item h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
  }

  .core-item p {
    color: #e6e6e6;
    font-size: 1rem;
    line-height: 1.6;
  }
  /* Force center alignment for core values title */
  .core-values-content .center-title.light,
  .careers-culture-bg .center-title.light {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

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

  /* Tablet - 2 columns */
  @media (max-width: 1024px) {
    .core-item {
      flex: 0 1 calc(50% - 2rem);
      min-width: 240px;
    }
  }

  /* Mobile - 1 column */
  @media (max-width: 768px) {
    .core-grid {
      gap: 2rem;
    }
    
    .core-item {
      flex: 0 1 100%;
      min-width: auto;
    }
    
    .core-values-bg,
    .careers-culture-bg {
      padding: 5rem 0;
    }
  }
  /* ================= OUR TEAM SECTION STYLES ================= */

  /* Team header - centered title and introduction */
  .team-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
  }

  /* Main "Our Team" title - centered with purple color */
  .center-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #672072; /* Purple */
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }

  /* Green underline for center title */
  .center-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #6BAA4F; /* Green */
    margin: 18px auto 0;
    border-radius: 2px;
  }

  /* Subtitle below main title */
  .team-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #672072; /* Purple */
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  /* Introduction paragraph */
  .team-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
  }

  /* Two column grid for team details */
  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 3rem; /* Space between columns */
    margin-top: 3rem;
  }

  /* Individual team card */
  .team-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  /* Team card heading (h3) */
  .team-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #672072; /* Purple */
    margin-bottom: 0.5rem;
  }

  /* Team label - "(The 7 Promoters)" etc */
  .team-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #6BAA4F; /* Green */
    margin-bottom: 1rem;
    font-style: italic;
  }

  /* Team card h4 (sub-headings) */
  .team-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #672072; /* Purple */
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
  }

  /* Team card paragraphs */
  .team-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.2rem;
  }

  /* Team card lists */
  .team-card ul {
    margin: 1.2rem 0;
    padding-left: 1.5rem;
  }

  .team-card li {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
  }

  .team-card li strong {
    color: #672072; /* Purple for bold labels */
    font-weight: 600;
  }
  /* ================= TEAM SYNERGY SECTION (FULL WIDTH BELOW COLUMNS) ================= */

  .team-synergy {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    text-align: center;
    max-width: 100%;
  }

  .team-synergy h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #672072; /* Purple */
    margin-bottom: 1.5rem;
  }

  .team-synergy p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
    text-align: left;
  }

  .team-synergy p:last-child {
    margin-bottom: 0;
  }

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

  @media (max-width: 768px) {
    .team-synergy {
      padding: 2rem;
      margin-top: 2rem;
    }
    
    .team-synergy h4 {
      font-size: 1.5rem;
    }
    
    .team-synergy p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .team-synergy {
      padding: 1.5rem;
    }
    
    .team-synergy h4 {
      font-size: 1.3rem;
    }
    
    .team-synergy p {
      font-size: 0.95rem;
    }
  }

  /* ================= RESPONSIVE - MOBILE ================= */

  /* Tablet view */
  @media (max-width: 1024px) {
    .team-grid {
      gap: 2.5rem;
    }
    
    .team-card {
      padding: 2rem;
    }
    
    .center-title {
      font-size: 2.2rem;
    }
    
    .team-subtitle {
      font-size: 1.6rem;
    }
  }

  /* Mobile view - stack cards vertically */
  @media (max-width: 768px) {
    .team-grid {
      grid-template-columns: 1fr; /* Single column on mobile */
      gap: 2rem;
    }
    
    .team-card {
      padding: 1.8rem;
    }
    
    .center-title {
      font-size: 2rem;
    }
    
    .team-subtitle {
      font-size: 1.4rem;
    }
    
    .team-intro {
      font-size: 1rem;
    }
    
    .team-card h3 {
      font-size: 1.4rem;
    }
    
    .team-card p,
    .team-card li {
      font-size: 0.95rem;
    }
  }

  /* Small mobile */
  @media (max-width: 480px) {
    .team-header {
      margin-bottom: 3rem;
    }
    
    .center-title {
      font-size: 1.8rem;
    }
    
    .team-subtitle {
      font-size: 1.2rem;
    }
    
    .team-card {
      padding: 1.5rem;
    }
  }

  /* ================= CAREERS HERO ================= */
  .careers-hero {
    background: url("../assets/careers/hero.jpg") center/cover no-repeat;
  }
  /* Careers Hero — ADD this if it's missing */
  .careers-hero {
    position: relative;
    min-height: 72.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 100px; /* ADD this line */
  }
  .careers-culture-bg {
    position: relative;
    background: url("../assets/careers/work-culture-bg.jpg") center/cover no-repeat;
    padding: 7rem 0;
  }

  /* ================= JOBS SECTION ================= */

  .jobs-section {
    background: #F5F0F9;
  }

  .jobs-section .center-title {
    margin-bottom: 3rem;
  }

  /* Two column layout */
  .jobs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  /* ================= JOB LISTINGS (LEFT) ================= */

  .jobs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Hide checkbox */
  .job-toggle {
    display: none;
  }

  /* Each job item */
  .job-item {
    border: 1px solid rgba(103, 32, 114, 0.15);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
  }

  /* Job header row */
  .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .job-header:hover {
    background: rgba(103, 32, 114, 0.05);
  }

  .job-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #672072;
  }

  .job-icon {
    font-size: 1.5rem;
    color: #6BAA4F;
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
  }

  /* Job details - hidden by default */
  .job-details {
    display: none;
    padding: 0 24px 20px;
    border-top: 1px solid rgba(103, 32, 114, 0.1);
  }

  .job-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-top: 10px;
  }

  /* Show details when checked */
  .job-toggle:checked ~ .job-details {
    display: block;
  }

  /* Rotate + to x when open */
  .job-toggle:checked ~ .job-header .job-icon {
    transform: rotate(45deg);
    color: #672072;
  }

  /* ================= APPLICATION FORM (RIGHT) ================= */
  .jobs-section .center-title {
    margin-bottom: 3rem;
    text-align: center;        /* ADD THIS */
    display: block;            /* ADD THIS */
    width: 100%;               /* ADD THIS */
  }
    
  .center-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #6BAA4F;
    margin: 18px auto 0;    /* "auto" centers the underline */
    border-radius: 2px;
  }
  .jobs-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(103, 32, 114, 0.1);
    border: 1px solid rgba(103, 32, 114, 0.1);
    position: sticky;
    top: 110px;
  }

  .form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #672072;
    margin-bottom: 1.8rem;
    text-align: center;
  }

  /* Two input row */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  /* All inputs */
  .apply-form input[type="text"],
  .apply-form input[type="email"],
  .apply-form input[type="tel"],
  .apply-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0d6e8;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background: #faf8fc;
    transition: border-color 0.3s ease;
    outline: none;
  }

  .apply-form input:focus,
  .apply-form select:focus {
    border-color: #672072;
    background: #ffffff;
  }

  /* Select dropdown */
  .apply-form select {
    width: 100%;
    margin-bottom: 12px;
    cursor: pointer;
    appearance: auto;
  }

  /* File upload */
  .form-upload {
    margin-bottom: 14px;
  }

  .form-upload label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 6px;
  }

  .form-upload input[type="file"] {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #444;
    width: 100%;
  }

  /* Submit button */
  .submit-btn {
    width: 100%;
    padding: 14px;
    background: #672072;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
  }

  .submit-btn:hover {
    background: #4e1858;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(103, 32, 114, 0.3);
  }

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

  @media (max-width: 1024px) {
    .jobs-layout {
      gap: 3rem;
    }
  }

  @media (max-width: 768px) {
    .jobs-layout {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .jobs-form-wrapper {
      position: static;
    }

    .form-row {
      grid-template-columns: 1fr;
    }
  }
  /* ================= R&D HERO ================= */
  .rnd-hero {
    background: url("../assets/rnd/hero.jpg") center/cover no-repeat;
  }

  /* ================= TECH BACKGROUND ================= */
  .tech-bg {
    position: relative;
    background: url("../assets/rnd/technology-bg.jpg") center/cover no-repeat;
    padding: 7rem 0;
  }

  .tech-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 30, 0.75);
    z-index: 1;
  }

  .tech-content {
    position: relative;
    z-index: 2;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
  }

  .card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .tech-cards .card {
    background: rgba(255, 255, 255, 0.96);
    color: #1c1c1c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .tech-cards .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  }
  /* ================= SMOOTH SCROLLBAR ================= */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  ::-webkit-scrollbar-thumb {
    background: #672072;
    border-radius: 5px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #4e1858;
  }

  /* ================= MOBILE RESPONSIVE ================= */
  @media (max-width: 1024px) {
    .business-grid.enhanced {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .business-card {
      height: 300px;
    }

    .business-block {
      grid-template-columns: 1fr;
    }

    .business-image img {
      height: 320px;
    }

    .logo img {
      height: 58px;
    }

    .logo-text {
      font-size: 28px;
    }

    .rx {
      font-size: 18px;
    }

    .partners-slider {
      height: 150px;
    }

    .partner-logo {
      width: 170px;
      height: 110px;
    }
  }

  @media (max-width: 900px) {
    .main-nav {
      display: none !important;
    }

    .mobile-menu-btn {
      display: block;
    }

    .nav {
      flex-wrap: wrap;
    }

    .split {
      grid-template-columns: 1fr !important;
      gap: 3rem;
    }

    .about-text {
      max-width: 100%;
    }

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

    .hero-sub {
      font-size: 1.5rem;
    }

    .business-title {
      font-size: 2.5rem;
    }

    .image-hero h1 {
      font-size: 2.8rem;
    }

    .about-hero-content h1 {
      font-size: 2.8rem;
    }

    .logo img {
      height: 52px;
    }

    .logo-text {
      font-size: 26px;
    }

    .rx {
      font-size: 17px;
    }

    .partners-slider {
      height: 130px;
    }

    .partner-logo {
      width: 150px;
      height: 100px;
    }
  }

  @media (max-width: 768px) {
    .video-hero {
      height: 70vh;
    }

    .hero-title {
      font-size: 2.8rem;
      line-height: 1.2;
      letter-spacing: 1px;
    }

    .hero-sub {
      font-size: 1.3rem;
    }

    .logo img {
      height: 48px;
    }

    .logo-text {
      font-size: 24px;
    }

    .rx {
      font-size: 16px;
    }

    .about-text h2 {
      font-size: 2.2rem;
    }

    .about-text p {
      font-size: 1rem;
    }

    .image-slider {
      height: 250px;
    }

    .slide img {
      width: 250px;
      height: 250px;
    }

    .business-grid.enhanced {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .business-card {
      height: 280px;
    }

    .business-overlay h3 {
      font-size: 1.3rem;
    }

    .business-overlay p {
      font-size: 0.9rem;
    }

    .center-title {
      font-size: 2.2rem;
    }

    .partners-slider {
      height: 120px;
    }

    .partner-logo {
      width: 140px;
      height: 90px;
      padding: 15px;
    }

    .partners-track {
      gap: 40px;
      animation: scrollPartners 20s linear infinite;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .section {
      padding: 4rem 0;
    }

    .page-hero h1 {
      font-size: 2.4rem;
    }

    .image-hero h1 {
      font-size: 2.4rem;
    }

    .image-hero p {
      font-size: 1.05rem;
    }

    .about-hero-content h1 {
      font-size: 2.3rem;
    }

    .about-hero-content p {
      font-size: 1rem;
    }

    .business-cta h2 {
      font-size: 2rem;
    }

    .business-cta p {
      font-size: 1rem;
    }

    .cta-buttons {
      flex-direction: column;
      gap: 1rem;
    }

    .btn {
      width: 100%;
      max-width: 300px;
    }

    .cta-group {
      flex-direction: column;
    }

    .cta-btn {
      text-align: center;
      width: 100%;
      max-width: 300px;
    }

    .core-values-bg,
    .tech-bg,
    .careers-culture-bg {
      padding: 5rem 0;
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 2.2rem;
      letter-spacing: 0.5px;
    }

    .hero-sub {
      font-size: 1.1rem;
    }

    .logo img {
      height: 42px;
    }

    .logo-text {
      font-size: 22px;
    }

    .rx {
      font-size: 15px;
    }

    .about-text h2 {
      font-size: 1.8rem;
    }

    .business-card {
      height: 260px;
    }

    .center-title {
      font-size: 1.8rem;
    }

    .business-overlay h3 {
      font-size: 1.2rem;
    }

    .business-overlay p {
      font-size: 0.85rem;
    }

    .partners-slider {
      height: 100px;
    }

    .partner-logo {
      width: 120px;
      height: 75px;
      padding: 12px;
    }

    .partners-track {
      gap: 30px;
      animation: scrollPartners 15s linear infinite;
    }
  }
  /* ================= BUSINESS SERVICES GRID (CLICKABLE BLOCKS) ================= */

  /* Grid layout for service blocks - 2 columns */
  .business-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 2.5rem; /* Space between blocks */
    margin-top: 3rem;
  }

  /* Individual service block - clickable */
  .service-block {
    position: relative;
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: block;
    min-height: 200px; /* Ensure consistent height */
  }

  /* Hover effect */
  .service-block:hover {
    border-color: #6BAA4F; /* Green border on hover */
    box-shadow: 0 8px 25px rgba(103, 32, 114, 0.15);
    transform: translateY(-5px);
  }

  /* Service content container */
  .service-content {
    position: relative;
  }

  /* Service heading */
  .service-block h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #672072; /* Purple */
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  /* Service description */
  .service-block p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
  }

  /* Arrow indicator */
  .service-arrow {
    position: absolute;
    bottom: -2rem;
    right: 0;
    font-size: 2rem;
    color: #6BAA4F; /* Green */
    opacity: 0;
    transition: all 0.3s ease;
  }

  .service-block:hover .service-arrow {
    opacity: 1;
    right: -0.5rem;
  }

  /* Green line appears on hover */
  .service-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #6BAA4F; /* Green */
    border-radius: 2px;
    transition: width 0.3s ease;
  }

  .service-block:hover::after {
    width: 100%;
  }

  /* ================= RESPONSIVE - MOBILE ================= */

  /* Tablet view */
  @media (max-width: 1024px) {
    .business-services-grid {
      gap: 2rem;
    }
    
    .service-block {
      padding: 2.5rem 2rem;
      min-height: 180px;
    }
    
    .service-block h3 {
      font-size: 1.6rem;
    }
  }

  /* Mobile view - single column */
  @media (max-width: 768px) {
    .business-services-grid {
      grid-template-columns: 1fr; /* Single column on mobile */
      gap: 1.5rem;
    }
    
    .service-block {
      padding: 2rem 1.8rem;
      min-height: 160px;
    }
    
    .service-block h3 {
      font-size: 1.5rem;
    }
    
    .service-block p {
      font-size: 1rem;
    }
  }

  /* Small mobile */
  @media (max-width: 480px) {
    .service-block {
      padding: 1.8rem 1.5rem;
    }
    
    .service-block h3 {
      font-size: 1.3rem;
    }
    
    .service-block p {
      font-size: 0.95rem;
    }
  }
  /* ================= BUSINESS SERVICES GRID (WITH BACKGROUND IMAGES) ================= */

  /* Grid layout for service blocks - 2 columns */
  .business-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 2.5rem; /* Space between blocks */
    margin-top: 3rem;
  }

  /* Individual service block with image background */
  .service-block-img {
    position: relative;
    height: 300px; /* Height of each card */
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
  }

  /* Hover effect - lift card */
  .service-block-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(103, 32, 114, 0.2);
  }

  /* Background image */
  .service-block-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  /* Zoom image on hover */
  .service-block-img:hover img {
    transform: scale(1.1);
  }

  /* Overlay with gradient for text readability */
  .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75), /* Dark at bottom for text */
      rgba(0, 0, 0, 0.3),  /* Medium in middle */
      rgba(0, 0, 0, 0.1)   /* Light at top */
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: background 0.3s ease;
  }

  /* Darker overlay on hover */
  .service-block-img:hover .service-overlay {
    background: linear-gradient(
      to top,
      rgba(192, 183, 193, 0.85), /* Purple at bottom */
      rgba(0, 0, 0, 0.4),  /* Purple medium */
    );
  }

  /* Service heading */
  .service-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }

  /* Lift heading on hover */
  .service-block-img:hover .service-overlay h3 {
    transform: translateY(-5px);
  }

  /* Service description */
  .service-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  }

  /* ================= RESPONSIVE - MOBILE ================= */

  /* Tablet view */
  @media (max-width: 1024px) {
    .business-services-grid {
      gap: 2rem;
    }
    
    .service-block-img {
      height: 280px;
    }
    
    .service-overlay {
      padding: 2rem;
    }
    
    .service-overlay h3 {
      font-size: 1.6rem;
    }
    
    .service-overlay p {
      font-size: 1rem;
    }
  }

  /* Mobile view - single column */
  @media (max-width: 768px) {
    .business-services-grid {
      grid-template-columns: 1fr; /* Single column on mobile */
      gap: 1.5rem;
    }
    
    .service-block-img {
      height: 260px;
    }
    
    .service-overlay {
      padding: 1.8rem;
    }
    
    .service-overlay h3 {
      font-size: 1.5rem;
    }
    
    .service-overlay p {
      font-size: 0.95rem;
    }
  }

  /* Small mobile */
  @media (max-width: 480px) {
    .service-block-img {
      height: 240px;
    }
    
    .service-overlay {
      padding: 1.5rem;
    }
    
    .service-overlay h3 {
      font-size: 1.3rem;
    }
    
    .service-overlay p {
      font-size: 0.9rem;
    }
  }
  /* ================= REMOVE TEXT HIGHLIGHT (GLOBAL HERO + TITLES) ================= */

  /* Disable selection for all hero banner headings */
  .hero-section,
  .hero-section * ,
  .page-banner,
  .page-banner * ,
  .banner-title,
  .banner-subtitle,
  .hero-title,
  .hero-sub,
  .hero-sub span,
  .section-banner h1,
  .section-banner h2,
  .section-banner p {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

  /* ================= LOGO SETTINGS ================= */

  /* Default logo area (no text select) */
  .logo,
  .logo * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

  /* Only NammaRx text shows pointer */
  .logo-text,
  .logo-text .namma,
  .logo-text .rx {
    cursor: pointer;
  }

  /* Images inside logo should not show pointer */
  .logo img {
    cursor: default;
  }
  /* =========================================================
    REMOVE TEXT HIGHLIGHT FROM ALL PAGE HERO / BANNERS
    ========================================================= */

  /* Any section that has big page heading */
  section[class*="banner"],
  section[class*="hero"],
  section[class*="page"],
  div[class*="banner"],
  div[class*="hero"],
  div[class*="header-image"] {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
  }

  /* Headings inside those sections */
  section[class*="banner"] h1,
  section[class*="banner"] h2,
  section[class*="banner"] h3,
  section[class*="hero"] h1,
  section[class*="hero"] h2,
  section[class*="hero"] h3,
  section[class*="page"] h1,
  section[class*="page"] h2,
  section[class*="page"] h3,
  div[class*="banner"] h1,
  div[class*="banner"] h2,
  div[class*="banner"] h3 {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    cursor: default !important;
  }

  /* =========================================================
    LOGO CLICKABLE (ICON + TEXT BOTH SHOW POINTER)
    ========================================================= */

  /* disable selection but keep clickable */
  .logo,
  .logo * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer !important;
  }

  /* make sure links inside logo behave correctly */
  .logo a {
    cursor: pointer !important;
    text-decoration: none;
  }

  /* prevent drag image ghost */
  .logo img {
    pointer-events: none;
    -webkit-user-drag: none;
  }
/* ===============================================================
   MOBILE LOGO FIX
   Add this at the very BOTTOM of your css/style.css file
   =============================================================== */

@media (max-width: 900px) {

  /* Remove the negative left margin that hides logo on mobile */
  .logo {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Keep logo image a good size on mobile */
  .logo img {
    height: 48px !important;
  }

  /* Keep NammaRx text fully visible */
  .logo-text {
    font-size: 24px !important;
  }

  .namma,
  .rx {
    font-size: 24px !important;
  }
}

@media (max-width: 480px) {

  .logo {
    margin-left: 0 !important;
  }

  .logo img {
    height: 42px !important;
  }

  .logo-text {
    font-size: 22px !important;
  }

  .namma,
  .rx {
    font-size: 22px !important;
  }
}
/* =====================================================
   ACHIEVEMENTS SLIDER — FINAL FIX
===================================================== */

.achieve-wrap {
  width: 100%;
  min-width: 0;
}

.achieve-viewport {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(103,32,114,0.13);
  position: relative;
}

.achieve-track {
  display: flex;
  height: 100%;
  animation: none !important;
  will-change: transform;
}

.achieve-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  height: 100%;
}

.achieve-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.achieve-prev,
.achieve-next,
.achieve-dots { display: none !important; }

@media (max-width: 768px) {
  .achieve-viewport { height: 260px; }
}
@media (max-width: 480px) {
  .achieve-viewport { height: 210px; }
}
 /* =====================================================
   FOOTER — PREMIUM UPGRADE (TEXT VISIBILITY FIXED)
   ===================================================== */

.footer {
  background: #0f0818;
  color: #e8e2ef;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Deep space background mesh */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 60%, rgba(103, 32, 114, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 88% 20%, rgba(107, 170, 79, 0.12) 0%, transparent 48%),
    radial-gradient(ellipse at 50% 110%, rgba(78, 24, 88, 0.28) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Grain texture */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.footer > * { position: relative; z-index: 1; }

/* Animated gradient accent line */
.footer-accent {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #672072, #b845d4, #7ecf5a, #3da82b, #b845d4, #672072);
  background-size: 300% 100%;
  animation: footerShimmer 5s linear infinite;
}

@keyframes footerShimmer {
  0%   { background-position: 0%; }
  100% { background-position: 300%; }
}

/* ===== GRID ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  gap: 3rem;
  padding: 4rem 0 3.5rem;
  align-items: start;
}

/* ===== COLUMN 1: BRAND ===== */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 65px;
  width: auto;
  display: block;
  margin-bottom: 0.6rem;
  max-width: none !important;
}

.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.fb-namma { color: #672072; }   /* ← brighter purple — clearly visible */
.fb-rx    { color: #6BAA4F; }   /* ← brighter green — clearly visible */

.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #b0a8bc;               /* ← was 0.38 opacity, now solid readable grey */
  line-height: 1.8;
  margin-bottom: 1.4rem;
  max-width: 240px;
}

/* Social icons */
.footer-socials { display: flex; gap: 9px; }

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ccc;                  /* ← was rgba 0.50, now solid #ccc */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}

.footer-socials a::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #7a2490, #4e1858);
  opacity: 0;
  transition: opacity 0.28s ease;
  border-radius: 10px;
}

.footer-socials a:hover::before { opacity: 1; }

.footer-socials a:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 22px rgba(122,36,144,0.42);
}

.footer-socials a span,
.footer-socials a { position: relative; z-index: 1; }

/* ===== COLUMNS 2 3 4 ===== */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* Column headings */
.footer-heading {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;    /* ← pure white — clearly visible */
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  position: relative;
}

/* Glowing gradient underline */
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, #7a2490, #7ecf5a);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(126,207,90,0.5);
}

/* ===== LINKS ===== */
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #c4bcd0;               /* ← was 0.38 opacity — now clearly readable */
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #8fd46e;
  padding-left: 6px;
}

/* ===== CONTACT LIST ===== */
.footer-contact {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #c4bcd0;               /* ← matches links — clearly readable */
  line-height: 1.7;
}

.fc-icon {
  flex-shrink: 0;
  width: 20px;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ===== BOTTOM BAR ===== */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.40);
  padding: 1.2rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: #888;                  /* ← was 0.22 opacity — now clearly readable */
  margin: 0;
  letter-spacing: 0.3px;
}

/* =====================================================
   RESPONSIVE — IDENTICAL TO ORIGINAL
   ===================================================== */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 3rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0 2.5rem;
  }
  .footer-tagline { max-width: 100%; }
  .footer-heading { font-size: 0.68rem !important; }
  .footer-links a,
  .footer-contact li { font-size: 0.85rem; }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  .footer-bottom p { font-size: 0.78rem; }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
  }
  .footer-brand { align-items: center; text-align: center; }
  .footer-logo { margin: 0 auto 0.6rem; }
  .footer-tagline { max-width: 100%; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-col { align-items: center; text-align: center; }
  .footer-heading { text-align: center; }
  .footer-heading::after { left: 50%; transform: translateX(-50%); }
  .footer-links { align-items: center; }
  .footer-links a { text-align: center; justify-content: center; }
  .footer-contact { align-items: center; }
  .footer-contact li { justify-content: center; text-align: center; }
  .fc-icon { margin-top: 0; }
  .footer-bottom-inner { flex-direction: column; gap: 0.4rem; text-align: center; }
  .footer-bottom p { font-size: 0.76rem; }
}
/* ================================================================
   HERO FIXES — PASTE AT VERY BOTTOM OF style.css
   ONLY affects laptop & desktop (min-width: 769px)
   Mobile is completely untouched.
   ================================================================ */

@media (min-width: 769px) {

  .about-hero,
  .careers-hero,
  .page-hero,
  .detail-hero {
    min-height: 85vh !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

}

@media (min-width: 1400px) {

  .about-hero,
  .careers-hero,
  .page-hero,
  .detail-hero {
    min-height: 88vh !important;
  }

}
/* ================================================================
   HERO FIXES — PASTE AT VERY BOTTOM OF style.css
   ONLY fixes: Careers page + Home page video hero
   Everything else: completely untouched
   ================================================================ */

@media (min-width: 769px) {

  /* CAREERS — scroll (NOT fixed, fixed clips the top), show full image */


  /* HOME — video hero taller so it fills screen properly */
  .video-hero {
    height: 92vh !important;
  }

}
/* ================================================================
   HERO FIXES — PASTE AT VERY BOTTOM OF style.css
   ONLY fixes: Home page video hero height
   Careers hero is now handled directly in careers.html
   ================================================================ */

@media (min-width: 769px) {
  /* HOME — video hero taller so it fills screen properly */
  .video-hero {
    height: 92vh !important;
  }
}
/* ===== ACHIEVEMENT SLIDER CAPTIONS ===== */
.achieve-slide {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.achieve-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achieve-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
}
.careers-culture-bg {
  background-image: url('../assets/careers/culture.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
