*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Accounts for sticky header */
}

body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    background-color: white;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    width: 100%;
    height: 80px;
    padding: 0 126px;
    border-bottom: 1.5px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar button {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;

    font-size: 16px;
    color: #364152;
    cursor: pointer;
}
.navbar .get-started {
    background-color: #00a63d;
    width: 105px;
    height: 36px;

    border: none;              /* remove border */
    outline: none;             /* remove outline */
    box-shadow: none;          /* remove default shadow */

    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
}
.solutions:hover{
color: #00a63d;
}
.industries:hover{
color: #00a63d;
}
.impact:hover{
color: #00a63d;
}
.whyus:hover{
color: #00a63d;
}
.contact:hover{
color: #00a63d;
}
.get-started:hover{
background-color: #008236;
}

.nav-texts{
    background-color: transparent;
    border: none;
    display: flex;
    gap: 33px;
    font-size: 16px;
}
.section1{
    background-image: url('factoryfinal.png');
    height: 770px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.brand-logo-img {
    height: 58px; /* Increased from 48px */
    width: auto;
    margin-right: 14px;
    mix-blend-mode: multiply;
}
.logo h2 {
    font-size: 24px; /* Slightly larger heading */
}
.logo p{
    font-size: 14px;
    color: #4b5563;
    margin-top: -2px;
}
.logo{
    display: flex;
    align-items: center;
}

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #364152;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Drawer */
/* Mobile Drawer */
.mobile-drawer {
    display: block; /* Change from flex to block to allow height transition */
    width: 100%;
    height: 0; /* Ideally start collapsed */
    overflow: hidden; /* Hide content when collapsed */
    background-color: white;
    transition: height 0.3s ease-in-out; /* Smooth height transition */
    border-bottom: 1px solid #e5e7eb;
}

.mobile-drawer.active {
    height: auto; /* Allow content to dictate height when active */
    padding: 10px 0; /* Minimal vertical padding */
}



.mobile-drawer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* Remove gap completely, use link padding */
}

.mobile-drawer-content a {
    font-size: 16px; /* Smaller font size */
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    padding: 12px 0; /* Comfortable touch target via padding */
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f3f4f6; /* Subtle separators */
}
.mobile-drawer-content a:last-child {
    border-bottom: none;
}

.get-started-mobile {
    background-color: #00a63d;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
}

.cleanair{
    display: flex;
    justify-content: center;
    color: black;
    background-color:white;
    border-radius: 20px;
    width: 380px;
    height: 37px;
    margin-left: 287px;
    align-items: center;
    position: relative;
    top: 112px;
}
.blink-light {
    width: 10px;
    height: 10px;
    background-color: #00a63d;
    border-radius: 50%;
    margin-right: 12px;
    animation: blink-slow 2.0s ease-in-out infinite;
    box-shadow: 0 0 3px #00a63d;
}
@keyframes blink-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.make-sustainability{
    margin-left: 287px;
    margin-top: 147px;
    font-weight: 600;
    font-size: 72px;

}
.profitable-compliant{
    display: flex;
    font-size: 72px;
    font-weight: 600;
     margin-left: 287px;
}
.measurable{
    color: #009689;
    font-weight: 600;
    font-size: 72px;
    margin-left: 287px;
}
.profitable{
    color: #00a63d;
}
.compliant{
    padding-left: 20px;
    color: #165dfc;
}
.caption{
    color: #414c5d;
    font-weight: 550;
    width: 800px;
    height: 78px;
    font-size: 23px;
    margin-left: 287px;
    margin-top: 30px;
}
.request{
    margin-left: 287px;
    margin-top: 45px;
    margin-bottom: 20px; /* Added spacing below */
    border: none;
    color: white;
    background-color: #00a63d;
    font-size: 18px;
    border-radius: 10px;
    width: 382px;
    height: 45px;
}
.request:hover{
    background-color: #008236;
    cursor: pointer;
}
.explore{
    margin-left: 40px; /* Increased from 20px */
    background-color: white;
    border: 2px solid #00a63d; /* Ensure solid border */
    color: #00a63d;
    font-size: 18px;
    border-radius: 10px;
    width: 210px;
    height: 45px;
    cursor: pointer;
}
.explore:hover{
    color:black;
    background-color: #f0fdf4;
}

/* Hero Responsiveness */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 40px;
    }
    .nav-texts {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .section1 {
        padding: 0 20px; /* Removed top and bottom padding */
        text-align: center;
        height: auto;
        min-height: calc(100vh - 80px); /* Adjust for navbar height */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .cleanair {
        margin: 0 auto 30px;
        width: 100%;
        max-width: 400px;
        top: 0;
        font-size: 14px;
        padding: 0 10px;
    }
    .make-sustainability, .profitable-compliant, .measurable {
        margin-left: 0;
        font-size: 42px;
        justify-content: center;
        margin-top: 0;
        line-height: 1.2;
    }
    .make-sustainability {
        margin-top: 40px;
    }
    .profitable-compliant {
        flex-direction: column;
        gap: 5px;
    }
    .compliant {
        padding-left: 0;
    }
    .caption {
        margin: 30px auto 0;
        width: 100%;
        font-size: 18px;
        height: auto;
        text-align: center;
    }
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 24px; /* Increased from 16px */
        margin-top: 40px;
        padding-bottom: 60px;
    }
    .request, .explore {
        margin: 0;
        width: 100%;
        max-width: 382px;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 0 20px;
        height: 70px; /* Slightly smaller on phones */
    }

    .brand-logo-img {
        height: 48px; /* Smaller logo on phones */
    }
    .brand-text-box {
        display: block; /* Show text on mobile */
    }
    .brand-text-box h2 {
        font-size: 16px; /* Smaller font for mobile */
    }
    .section1 {
        padding: 0 16px; /* Tighter horizontal padding */
        min-height: 95vh !important; /* Increased height for mobile, override tablet */
        height: auto !important;
    }
    .make-sustainability, .profitable-compliant, .measurable {
        font-size: 36px; /* Increased from 28px */
        line-height: 1.25;
        font-weight: 700;
    }
    .make-sustainability {
        margin-top: 12px; /* Slightly increased gap from badge */
    }
    .cleanair {
        font-size: 13px; /* Increased from 11px */
        height: auto;
        padding: 8px 12px;
        max-width: 340px;
        margin-bottom: 24px; /* Slightly increased gap to headline */
    }
    .caption {
        font-size: 18px; /* Increased from 16px */
        padding: 0 8px;
        line-height: 1.5;
    }
    .buttons {
        gap: 32px; /* Larger gap between buttons on mobile */
    }
    .request {
        font-size: 17px; /* Increased from 16px */
        height: 50px; /* Slightly taller */
        max-width: 100%;
        margin-bottom: 0 !important;
        font-weight: 600;
    }
    .explore {
        font-size: 17px; /* Increased from 16px */
        height: 50px; /* Slightly taller */
        max-width: 100%;
        margin-top: 32px !important; /* Force gap between buttons */
        font-weight: 600;
    }
}

.br{
    border: 2px solid red;
}
.textdiv{
    display: flex;
    justify-content: center;
}
.threediv{
    padding-bottom: 100px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 40px 100px;
}
.div1{
    border-radius: 10px ;
    background-color: white;
    min-height: 240px;
    width: 380px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    margin-left: 0;
}
@media (max-width: 640px) {
    .threediv {
        padding: 0 20px 60px;
    }
    .div1 {
        width: 100%;
    }
}
.div1:hover{
    box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: rgb(0, 114, 152);
    border-width: 2px;

}

.texdiv1{
   padding-top: 60px;
    text-align: center;
    padding-bottom: 60px;
}
.h1{
    color: #111828;
    font-size: 60px;
    display: flex;
    justify-content: center;
}
.p1{
    padding-top: 15px;
    color: #362152;
    font-size: 20px;
    font-weight: 700;
}

.p2{
    padding-top: 15px;
    color: #4a5565;
    font-size: 18px;
}
.icon {
   
      width: 40px;
      height: 40px;
      color: #165DFC; /* icon color #165DFC */
    }
.icon1{
   
      width: 40px;
      height: 40px;
      color: #0092B9; /* icon color #165DFC */
    }
.icon2{
   
      width: 40px;
      height: 40px;
      color: #00A63D; /* icon color #165DFC */
    }
.svg{
     display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 32px;
    margin-left: 32px;
    background-color: #EEF6FF;
    width: 65px;
    height: 65px;
    margin-bottom: 32px;
} 
.svg1{
     display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 32px;
    margin-left: 32px;
    background-color: #EBFEFF;
    width: 65px;
    height: 65px;
    margin-bottom: 32px;
} 
.svg2{
     display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 32px;
    margin-left: 32px;
    background-color: #F0FDF4;
    width: 65px;
    height: 65px;
    margin-bottom: 32px;
} 
.clean{
    padding-left: 32px;
    padding-bottom: 15px;
    
}   
.reduce{
    color: #4A5565;
    padding-left: 32px;
}
.impact-snapshot{
    background-image: url('gradient-background.avif');
     background-size: cover;
    background-repeat: no-repeat;
   color: white;
    padding-top: 50px;

}
.textss{
    text-align: center;
}
.impact-snapshot h1{
    margin-bottom: 15px;
}
.impact-snapshot p{
    padding-bottom: 30px;
}
.cards{
    display: flex;
    text-align: center;
    padding: 0 40px 60px;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.card1{
    padding: 30px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 280px;
    margin: 0;
}
@media (max-width: 640px) {
    .impact-snapshot {
        padding: 60px 20px;
    }
    .cards {
        padding: 0;
    }
}
.card1:hover{
    background: rgba(255, 255, 255, 0.26);
    transform: scale(1.08);
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
margin-left: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}
/* built for */
.built-for {
    background-color: #F9FAFB;
    padding: 100px 126px;
}
.built-for-container {
    background-color: white;
    padding: 100px 40px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .built-for {
        padding: 60px 40px;
    }
    .built-for-container {
        padding: 60px 20px;
    }
    .s1 h1 {
        font-size: 32px;
    }
    .s2 {
        justify-content: center;
    }
    .s3 > h3 {
        font-size: 24px;
    }
}
@media (max-width: 640px) {
    .built-for {
        padding: 40px 16px;
    }
    .built-for-container {
        padding: 40px 16px;
        border-radius: 20px;
    }
    .s1 h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    .s1 p {
        font-size: 16px;
    }
    .s2-1 {
        padding: 16px 20px; /* Comfortable padding */
        font-size: 15px;
        width: 100%; /* Full width for consistency */
        justify-content: flex-start; /* Align content to start */
    }
    .s3 > h3 {
        font-size: 22px;
    }
    .delivery-track {
        width: calc(100% + 32px); /* Full width accounting for padding */
        margin-left: -16px; /* Negative margin to pull to edge */
        margin-right: -16px;
        border-radius: 0; /* Remove corners */
    }
}
.s1 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.s1 h1 {
    font-size: 48px;
    color: #111827;
    margin-bottom: 20px;
}
.s1 p {
    line-height: 1.6;
    color: #4b5563;
    font-size: 19px;
}
.s2 {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
    flex-wrap: wrap;
}
.s2-1 {
    display: flex;
    align-items: center;
    padding: 16px 28px;
    border: 1px solid #E6E7EB;
    border-radius: 12px;
    background-color: #f9fbfb;
    transition: all 0.3s ease;
}
.s2-1:hover {
    border-color: #00a63d;
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 61, 0.1);
}
.s2-1 p {
    white-space: nowrap;
    font-weight: 500;
    color: #374151;
}
.s2-1 img {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}
.s3 {
    margin-top: 80px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}
.s3 > h3 {
    font-size: 32px;
    color: #111827;
    font-weight: 700;
    margin-bottom: 40px;
}
.delivery-track {
    background-image: url('test.avif');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
        padding: 50px 40px;
    position: relative;
    overflow: hidden;
    
}
.delivery-track::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}
.typo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
}
.assess {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white ;
    border-radius: 12px;
    min-width: 130px;
    transition: all 0.3s ease;
}
.assess h3 {
    font-size: 20px;
    font-weight: 600;
}
.assess:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}
.arrow {
    display: flex;
    align-items: center;
    color: #D1D5DB;
    font-size: 24px;
}

@media (max-width: 1024px) {
    .delivery-track {
        padding: 40px 20px;
        height: auto;
    }
    .typo {
        flex-direction: column;
        gap: 20px;
    }
    .arrow {
        transform: rotate(90deg); /* Point down on mobile */
        padding: 5px 0;
    }
    .assess {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}
/* Solution Page Styles */
.solution-page {
    padding: 80px 0 0 0; /* Side padding removed */
    background-color: white;
}

.solutions-wrapper {
    padding: 0 40px; /* Side padding */
}

@media (max-width: 640px) {
    .solutions-wrapper {
        padding: 0 16px; /* Side padding mobile */
    }
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-header h1 {
    font-size: 56px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.solution-header p {
    font-size: 20px;
    color: #4b5563;
}

.solution-hero-container {
    width: 100%;
    margin-bottom: 80px;
}

.solution-hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sol-card {
    background-color: #f0faff; /* Light blue background */
    padding: 20px 30px; /* Reduced vertical padding */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #DBEAFF;
}

.sol-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.sol-icon-box {
    width: 48px; /* Slightly smaller icon box */
    height: 48px;
    background-color: #2563eb; /* Strong blue */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 15px; /* Reduced margin */
}

.sol-card h3 {
    font-size: 20px; /* Slightly smaller title */
    color: #111827;
    margin-bottom: 12px; /* Reduced margin */
    font-weight: 700;
}

.sol-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px; /* Reduced margin */
    flex-grow: 1;
}

.sol-card ul li {
    font-size: 15px; /* Slightly smaller text */
    color: #374151;
    margin-bottom: 6px; /* Reduced margin between items */
    position: relative;
    padding-left: 20px;
}

.sol-card ul li::before {
    content: "•";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.sol-outcome {
    border-top: 1px solid #d1d5db;
    padding-top: 20px; /* Reduced padding */
}

.sol-outcome h4 {
    color: #00a63d; /* Brand green */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sol-outcome p {
    font-size: 16px;
    color: #374151;
    margin-bottom: 4px;
    font-weight: 500;
}

/* Water Section Specifics */
.water-solution-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

.water-outcome-box {
    margin-top: 80px;
    background-color: white;
    border: 2.5px solid #A3F4FD;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 142, 180, 0.1);
}

.water-outcome-box h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 40px;
    font-weight: 700;
}

.water-outcome-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.outcome-stat {
    background-color: #f0faff;
    padding: 40px 60px;
    border-radius: 15px;
    min-width: 250px;
}

.outcome-stat h1 {
    font-size: 48px;
    color: #007696;
    margin-bottom: 10px;
}

.outcome-stat p {
    font-size: 18px;
    color: #4b5563;
    font-weight: 500;
}

/* Circular Economy Section Specifics */
.circular-solution-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

.circular-card {
    background-color: #f0fdf4 !important; /* Light green background */
    border: 1.5px solid #A7F3D0 !important; /* Match user's new border preference */
}

.circular-card:hover {
    border-color: #059669 !important;
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.1) !important;
}

.circular-icon {
    background-color: #059669 !important; /* Brand emerald green */
}

.circular-card ul li::before {
    color: #059669 !important;
}

.circular-outcome-box {
    margin-top: 80px;
    margin-left: 16px; /* Minimal side margin */
    margin-right: 16px; /* Minimal side margin */
    background-color: #059669; /* Solid green background */
    border-radius: 20px;
    padding: 40px 60px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.2);
    margin-bottom: 40px;
}

.circular-outcome-box h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
}

.circular-outcome-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.circular-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px 50px;
    border-radius: 15px;
    min-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.circular-stat h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 5px;
}

.circular-stat p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive adjustment */
@media (max-width: 1024px) {    
    .solution-page {
        padding: 60px 0 0; /* Side padding removed */
    }
    .solution-header h1 {
        font-size: 40px;
    }
    .solution-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    .water-solution-grid, .circular-solution-grid {
        grid-template-columns: 1fr !important;
    }
    .water-outcome-flex, .circular-outcome-flex {
        flex-direction: column;
        align-items: center;
    }
    .outcome-stat, .circular-stat {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 640px) {
    .solution-page {
        padding: 40px 0 0; /* Side padding removed */
    }
    .solution-header h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    .solution-header p {
        font-size: 16px;
    }
    .solution-hero-img {
        border-radius: 16px;
        height: 220px;
    }
    .solution-cards {
        padding: 0;
        gap: 20px;
    }
    .sol-card {
        padding: 24px;
    }
    .sol-card h3 {
        font-size: 18px;
    }
    .sol-card ul li {
        font-size: 14px;
    }
    /* Mobile Circular Stat Fix */
    .circular-outcome-box {
        padding: 30px 20px; /* Reduced padding container */
    }
    .circular-stat {
        padding: 20px; /* Reduced padding card */
        width: 100%;
        min-width: 0;
    }
    .circular-stat h1 {
        font-size: 36px; /* Smaller number */
        line-height: 1.1;
    }
    .circular-stat p {
        font-size: 15px; /* Smaller text */
        line-height: 1.4;
    }
}

/* Industries We Serve Styles */
.industries-section {
    padding-top: 120px; /* Restored top padding */
    background-color: #f9fafb;
    width: 100%;
}

.section-header, .industry-grid {
    max-width: 1200px; /* Standardize content width */
    margin: 0 auto;
    padding: 0px 40px; 
    padding-bottom: 20px;
    margin-bottom: 50px;
}

/* For larger screens, align exactly with navbar (126px) */
@media (min-width: 1440px) {
    .section-header, .industry-grid {
        max-width: calc(100% - 252px);
        padding: 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px; /* More breathing room like in image */
}

.section-header h1 {
    font-size: 52px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 20px;
    color: #4b5563;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px; /* Increased gap to match image */
}

.industry-card {
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); /* Softer, broader shadow like image */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.industry-head {
    padding: 48px; /* Roomy header */
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-icon {
    width: 36px;
    height: 36px;
}

.industry-head h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.industry-body {
    padding: 48px; /* Match head padding */
    flex-grow: 1;
}

.industry-body ul {
    list-style: none;
    padding: 0;
}

.industry-body ul li {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    line-height: 1.4;
}

.industry-body ul li:last-child {
    margin-bottom: 0;
}

.industry-body ul li::before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 18px;
}

/* Gradients matching your design exactly */
.auto-gradient {
    background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
}

.pharma-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #0098ca 100%);
}

.fmcg-gradient {
    background: linear-gradient(135deg, #9333ea 0%, #e11482 100%);
}

.housing-gradient {
    background: linear-gradient(135deg, #059669 0%, #00a184 100%);
}

/* Full Width Background Rule */
.industries-section {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .industries-section {
        padding-top: 80px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        left: 0;
    }
    .section-header, .industry-grid {
        padding: 0 40px;
    }
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-header h1 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .industries-section {
        padding-top: 60px;
    }
    .section-header, .industry-grid {
        padding: 0 16px;
    }
    .section-header h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    .section-header p {
        font-size: 16px;
    }
    .industry-card {
        border-radius: 20px;
    }
    .industry-head {
        padding: 32px;
    }
    .industry-head h3 {
        font-size: 22px;
    }
    .industry-body {
        padding: 32px;
    }
    .industry-body ul li {
        font-size: 15px;
    }
}

/* ESG & Impact Section Styles */
.impact-section {
    padding: 100px 0; /* Removed horizontal padding */
    background-color: white;
}

.impact-container {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-column {
    flex: 1;
}

.impact-title {
    font-size: 42px;
    font-weight: 800;
    color: #112340; /* Darker navy for titles */
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.impact-desc {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ESG List Styles */
.esg-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.esg-item {
    background-color: #f0fdf4; /* Very light green */
    border: 1px solid #dcfce7;
    padding: 18px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s ease;
}

.esg-item:hover {
    transform: translateX(10px);
}

.esg-icon-box {
    width: 44px;
    height: 44px;
    background-color: #10b981; /* Brand Green */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.esg-item p {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
}

/* Impact Stats Grid */
.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-mini-card {
    background-color: #f0f9ff; /* Very light blue */
    border: 1px solid #e0f2fe;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow 0.3s ease;
}

.stat-mini-card:hover {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.stat-icon-blue {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
}

.stat-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 4px;
}

.stat-content span {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .impact-section {
        padding: 60px 40px;
    }
    .impact-container {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .impact-section {
        padding: 40px 16px;
    }
    .impact-container {
        gap: 40px;
    }
    .impact-title {
        font-size: 32px;
        line-height: 1.2;
    }
    .impact-desc {
        font-size: 16px;
    }
    .impact-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stat-mini-card {
        padding: 20px;
    }
    .esg-item {
        padding: 16px 20px;
    }
}

/* Why Us Section Styles */
.why-us-section {
    padding: 80px 0; /* Removed horizontal padding */
    background: linear-gradient(135deg, #064e3b 0%, #0c4a6e 50%, #1e3a8a 100%);
    color: white;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.why-us-header {
    margin-bottom: 60px; /* Reduced from 80 */
}

.why-us-header h1 {
    font-size: 48px; /* Slightly smaller to fit better */
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

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

.why-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px; /* Slightly more compact */
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(33.333% - 20px); /* Fit 3 cards per row */
    min-width: 300px;
    box-sizing: border-box;
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

.why-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
}

.why-card p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .why-us-section {
        padding: 60px 40px;
    }
    .why-card {
        width: calc(50% - 20px);
    }
    .why-us-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .why-card {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .why-us-section {
        padding: 40px 16px;
    }
    .why-us-header h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    .why-us-header p {
        font-size: 16px;
    }
    .why-card {
        padding: 24px;
        border-radius: 16px;
    }
    .why-card h3 {
        font-size: 18px;
    }
    .why-card p {
        font-size: 14px;
    }
}

/* Journey Section Styles */
.journey-section {
    padding: 60px 0; /* Removed horizontal padding */
    background-color: white;
}

.journey-card {
    background: linear-gradient(135deg, #00a63d 0%, #008eb4 50%, #165dfc 100%);
    border-radius: 40px;
    padding: 50px 40px; /* Reduced from 80px */
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.journey-card h1 {
    font-size: 48px; /* Slightly smaller from 52px */
    font-weight: 800;
    margin-bottom: 16px; /* Reduced from 24px */
    letter-spacing: -1px;
}

.journey-desc {
    font-size: 19px; /* Slightly smaller from 20px */
    max-width: 700px;
    margin: 0 auto 30px; /* Reduced from 40px */
    opacity: 0.95;
    line-height: 1.5;
}

.journey-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px; /* Reduced from 60px */
}

.journey-card button {
    padding: 14px 28px; /* slightly more compact */
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: white;
    color: #00a63d;
    border: none;
}

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

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.journey-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 40px; /* Reduced from 60px */
    max-width: 800px;
}

.journey-contact-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-item svg {
    margin-bottom: 8px;
    opacity: 0.9;
}

.contact-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    font-weight: 600;
}

.contact-item p {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .journey-section {
        padding: 60px 40px;
    }
    .journey-card h1 {
        font-size: 36px;
    }
    .journey-contact-grid {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .journey-section {
        padding: 40px 16px;
    }
    .journey-card {
        padding: 40px 20px;
        border-radius: 24px;
    }
    .journey-card h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    .journey-desc {
        font-size: 16px;
    }
    .journey-card button {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 640px) {
    .journey-buttons {
        flex-direction: column;
        align-items: center;
    }
    .journey-card button {
        width: 100%;
        max-width: 300px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none; /* Controlled by JS */
    justify-content: center;
    align-items: flex-start; /* Allow scrolling from top */
    z-index: 1000;
    animation: fadeIn 0.3s ease;
    overflow-y: auto; /* Enable scrolling */
    padding: 20px 0; /* Vertical breathing room */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer Styles */
.footer {
    background-color: #0b1527; /* Dark navy background */
    padding: 80px 0 40px; /* Removed horizontal padding */
    color: white;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    background-color: white; /* Creates a clean badge effect */
    border-radius: 50%;
    padding: 2px;
}
.brand-text h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.brand-text p {
    font-size: 13px;
    opacity: 0.6;
    font-weight: 500;
}

.brand-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 400px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
    cursor: pointer;
}

.footer-links a:hover {
    opacity: 1;
    color: #10b981;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.5;
}

.legal-links {
    display: flex;
    gap: 32px;
}

.legal-links a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.legal-links a:hover {
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 40px 40px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 32px;
        text-align: center;
    }
    .legal-links {
        justify-content: center;
    }
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 700px;
    border-radius: 24px;
    padding: 60px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: auto; /* Center properly with flex-start overlay */
}

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

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #111827;
}

.modal-header {
    margin-bottom: 32px;
}

.modal-header h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.modal-header p {
    color: #6b7280;
    font-size: 16px;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    text-transform: capitalize; /* Force first letter of each word to be capital */
}

/* Override capitalize for email since it should stay lowercase */
.form-group input[type="email"] {
    text-transform: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #00a63d;
    box-shadow: 0 0 0 3px rgba(0, 166, 61, 0.1);
}

.full-width {
    grid-column: span 2;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.modal-submit-btn {
    width: 100%;
    background-color: #00a63d;
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    margin-top: 10px;
}

.modal-submit-btn:hover {
    background-color: #008236;
    transform: translateY(-2px);
}

/* Success Message */
.form-success-message {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: #f0fdf4;
    color: #10b981;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid #dcfce7;
}

.form-success-message h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #111827;
}

.form-success-message p {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .modal-content {
        padding: 24px 20px;
        margin: 20px auto;
        width: 90%; /* Safer width */
        max-height: 95vh;
        overflow-y: auto;
    }
    .modal-close {
        top: 12px;
        right: 16px;
        font-size: 28px;
    }
    .modal-header {
        margin-bottom: 16px;
        padding-right: 20px;
    }
    .modal-header h2 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .modal-header p {
        display: block;
        font-size: 13px;
        line-height: 1.3;
        color: #6b7280;
    }
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }
    .form-group {
        gap: 4px;
        width: 100%; /* Ensure container handles width */
    }
    .form-group label {
        font-size: 12px;
        font-weight: 600;
    }
    .form-group input, .form-group select {
        width: 100%; /* Prevent overflow */
        padding: 8px 12px;
        font-size: 14px;
        height: 40px;
        border-radius: 8px;
    }
    .form-group textarea {
        width: 100%; /* Prevent overflow */
        height: 60px;
        padding: 8px 12px;
        font-size: 14px;
    }
    .full-width {
        grid-column: span 1;
        margin-bottom: 12px;
    }
    .modal-submit-btn {
        padding: 12px;
        font-size: 16px;
        margin-top: 4px;
        border-radius: 10px;
    }
}
