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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    background-color: white;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(3, 17, 27, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    width: 100%;
    height: 76px;
    padding: 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(2, 15, 25, 0.22);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 126, 181, 0.35), transparent);
    pointer-events: none;
}

.navbar button {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.76);
    cursor: pointer;
    font-weight: 700;
    transition: color 0.25s ease, transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar .get-started {
    background: linear-gradient(135deg, #1e7eb5 0%, #165b94 100%);
    width: auto;
    min-width: 142px;
    height: 42px;
    margin-left: 16px;
    margin-right: 0;
    border: none;
    outline: none;
    box-shadow: 0 8px 22px rgba(30, 126, 181, 0.28);
    border-radius: 999px;
    color: white;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.2px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, filter 0.3s ease;
}

.navbar .get-started::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.solutions,
.industries,
.impact,
.whyus,
.contact {
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
}

.solutions:hover,
.industries:hover,
.impact:hover,
.whyus:hover,
.contact:hover {
    color: #ffffff;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
}
.get-started:hover{
    background: linear-gradient(135deg, #165b94 0%, #0f3d5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(30, 126, 181, 0.38);
    filter: saturate(1.08);
}

.nav-texts{
    background-color: transparent;
    border: none;
    display: flex;
    gap: 6px;
    font-size: 14px;
    align-items: center;
}

.section1{
    background-image: url('backgroundimg.png');
    height: auto;
    min-height: 850px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 0 120px 287px;
    position: relative;
}

.section1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 15, 25, 0.55);
    z-index: 1;
}

.hero-badge {
    position: relative;
    z-index: 2;
    color: #1e7eb5;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 600;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    position: relative;
    z-index: 2;
    font-size: 76px;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 1100px;
    letter-spacing: -1.5px;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

.hero-location {
    position: relative;
    z-index: 2;
    font-size: 52px;
    font-weight: 800;
    color: #1e7eb5;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-description {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 50px;
    font-weight: 400;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.hero-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 24px;
    margin-bottom: 100px;
    animation: fadeInDown 0.8s ease-out 0.4s both;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #1e7eb5 0%, #165b94 100%);
    color: white;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #165b94 0%, #0f3d5c 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(30, 126, 181, 0.3);
}

.hero-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border-color: #1e7eb5;
    color: #1e7eb5;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 100px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.stat-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-number {
    color: #1e7eb5;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    font-weight: 700;
}
.brand-logo-img {
    width: 88px;
    height: 56px;
    margin-right: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    mix-blend-mode: normal;
    object-fit: contain;
}
.logo h2 {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: white;
}
.logo h4 {
    color: #adb1b5;
}
.logo p{
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.logo{
    display: flex;
    align-items: center;
    min-width: 245px;
    cursor: pointer;
}

.brand-text-box {
    min-width: 0;
}

.main1 {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    padding-bottom: 140px;
}

/* 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: rgba(255, 255, 255, 0.78);
    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;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(3, 17, 27, 0.98) 0%, rgba(5, 30, 46, 0.98) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: max-height 0.34s ease, padding 0.34s ease, box-shadow 0.34s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(2, 15, 25, 0);
}

.mobile-drawer.active {
    max-height: 520px;
    padding: 18px 16px 22px;
    box-shadow: 0 24px 55px rgba(2, 15, 25, 0.28);
}



.mobile-drawer-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto;
}

.mobile-drawer-content a {
    font-size: 15px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 14px 16px;
    width: 100%;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer-content a::after {
    content: "›";
    color: rgba(255, 255, 255, 0.45);
    font-size: 22px;
    line-height: 1;
}

.mobile-drawer-content a:hover {
    background: rgba(30, 126, 181, 0.16);
    border-color: rgba(30, 126, 181, 0.3);
    transform: translateX(2px);
}
.mobile-drawer-content a:last-child {
    border-bottom: none;
}

.get-started-mobile {
    background: linear-gradient(135deg, #1e7eb5 0%, #165b94 100%);
    color: white;
    border: none;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(30, 126, 181, 0.22);
    margin-top: 8px;
    width: 100%;
    cursor: pointer;
    letter-spacing: 0.2px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.get-started-mobile:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(30, 126, 181, 0.32);
}

.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: 80px 40px;
        min-height: calc(100vh - 80px);
        height: auto;
    }
    .hero-title {
        font-size: 52px;
    }
    .hero-location {
        font-size: 36px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 0 20px;
        height: 70px;
    }

    .brand-logo-img {
        width: 76px;
        height: 48px;
        margin-right: 0;
    }
    .logo {
        min-width: 0;
    }
    .logo h2 {
        font-size: 16px;
    }
    .logo p {
        font-size: 9px;
        letter-spacing: 1.2px;
    }
    .section1 {
        padding: 60px 20px;
        min-height: 100vh;
    }
    .hero-badge {
        font-size: 11px;
        margin-bottom: 24px;
    }
    .hero-location {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 60px;
    }
    .hero-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }
    .stat-number {
        font-size: 40px;
    }

    .section1 {
        background-attachment: scroll;
    }
}

.br{
    border: 2px solid red;
}
.textdiv{
    display: flex;
    justify-content: center;
}
.threediv{
    padding-bottom: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    padding: 0 40px;
}
.div1{
    border-radius: 20px;
    background-color: white;
    min-height: 236px;
    width: 420px;
    border: 1px solid #e6edf4;
    transition: all 0.3s ease;
    margin-left: 0;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    padding: 34px 30px 30px;
}
@media (max-width: 640px) {
    .threediv {
        padding: 0 20px 60px;
    }
    .div1 {
        width: 100%;
        min-height: auto;
    }
}
.div1:hover{
    box-shadow: 0 22px 55px rgba(30, 126, 181, 0.14);
    border-color: #8ec7e8;
    transform: translateY(-6px);
}
.texdiv1{
   padding-top: 110px;
    text-align: center;
    padding-bottom: 64px;
}
.h1{
    color: #111828;
    font-size: 68px;
    display: flex;
    justify-content: center;
    font-weight: 900;
    letter-spacing: -1.6px;
    line-height: 0.98;
}
.p1{
    padding-top: 0;
    color: #1e7eb5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.p2{
    padding-top: 18px;
    color: #66758a;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}
.icon {
      width: 28px;
      height: 28px;
      color: white;
    }
.icon1{
      width: 28px;
      height: 28px;
      color: white;
    }
.icon2{
      width: 28px;
      height: 28px;
      color: white;
    }
.svg{
     display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #0b2438;
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    transition: all 0.3s ease;
} 
.svg1{
     display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #0b2438;
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    transition: all 0.3s ease;
} 
.svg2{
     display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #0b2438;
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}
.div1:hover .svg,
.div1:hover .svg1,
.div1:hover .svg2 {
    transform: scale(1.1);
} 
.clean{
    padding-left: 0;
    padding-bottom: 12px;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}   
.reduce{
    color: #4A5565;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    line-height: 1.7;
}
.impact-snapshot{
    background-image: url('gradient-background.avif');
     background-size: cover;
    background-repeat: no-repeat;
   color: white;
    padding: 100px 0;
    position: relative;
}

.impact-snapshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 15, 25, 0.7) 0%, rgba(30, 126, 181, 0.2) 100%);
    z-index: 1;
}

.impact-snapshot > * {
    position: relative;
    z-index: 2;
}

.textss{
    text-align: center;
}
.impact-snapshot h1{
    margin-bottom: 16px;
    font-size: 56px;
    font-weight: 900;
}
.impact-snapshot p{
    padding-bottom: 48px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}
.cards{
    display: flex;
    text-align: center;
    padding: 0 40px 60px;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.card1{
    padding: 32px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
    min-width: 280px;
    margin: 0;
}
@media (max-width: 640px) {
    .impact-snapshot {
        padding: 60px 20px;
    }
    .cards {
        padding: 0 20px;
    }
}
.card1:hover{
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card1:hover .icon-circle {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.icon-svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}
.built-for {
    background: linear-gradient(135deg, #010c14 0%, #031f33 55%, #062b46 100%);
    padding: 92px 40px 100px;
    position: relative;
    overflow: hidden;
}

.built-for::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 18%, rgba(6, 84, 132, 0.28), transparent 36%), radial-gradient(circle at 90% 72%, rgba(5, 35, 59, 0.55), transparent 28%);
    pointer-events: none;
}

.built-for-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1240px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 300px;
}

.about-copy {
    max-width: 560px;
    margin-left: clamp(0px, 9vw, 130px);
    animation: fadeInDown 0.8s ease-out;
}

.about-kicker {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-title {
    color: #ffffff;
    font-size: clamp(44px, 4vw, 62px);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: -1.8px;
    margin-bottom: 20px;
    max-width: 620px;
}

.about-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
    max-width: 560px;
}

.story-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 84px 40px 92px;
}

.story-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: clamp(24px, 6vw, 96px);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(520px, 0.95fr);
    gap: 56px;
    align-items: start;
}

.story-copy {
    max-width: 620px;
    padding-top: 4px;
}

.story-title {
    color: #0f172a;
    font-size: clamp(34px, 3.6vw, 58px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.8px;
    margin-bottom: 18px;
}

.story-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 16px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.story-stat-card {
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 14px;
    padding: 24px 22px;
    min-height: 108px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.story-stat-value {
    color: #0c7db8;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 4px;
}

.story-stat-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.principles-section {
    background: linear-gradient(180deg, #f5f9fd 0%, #eff5fb 100%);
    padding: 18px 40px 110px;
}

.principles-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.principle-card {
    background: #ffffff;
    border: 1px solid #e1eaf2;
    border-radius: 22px;
    padding: 48px 42px 44px;
    min-height: 320px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09);
}

.principle-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, #139fd1 0%, #0c7db8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 16px 30px rgba(19, 159, 209, 0.18);
}

.principle-icon svg {
    width: 30px;
    height: 30px;
    color: white;
    stroke: white;
}

.principle-card h3 {
    color: #0f172a;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.principle-card p {
    color: #6b7c93;
    font-size: 17px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .built-for {
        padding: 80px 40px 90px;
    }
    .built-for-container {
        max-width: 100%;
    }
    .about-copy {
        margin-left: 0;
        max-width: 580px;
    }
    .about-title {
        font-size: 52px;
    }

    .story-section {
        padding: 64px 40px 76px;
    }

    .story-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 0;
    }
    .story-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .principles-section {
        padding: 10px 40px 90px;
    }

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

    .principle-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .built-for {
        padding: 76px 20px 88px;
    }
    .built-for-container {
        min-height: auto;
    }
    .about-kicker {
        font-size: 11px;
        margin-bottom: 14px;
    }
    .about-title {
        font-size: 34px;
        margin-bottom: 14px;
        letter-spacing: -1.2px;
    }
    .about-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .story-section {
        padding: 48px 20px 60px;
    }

    .story-inner {
        padding-left: 0;
    }

    .story-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .story-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .principles-section {
        padding: 6px 20px 72px;
    }

    .principle-card {
        padding: 34px 26px 30px;
        border-radius: 20px;
    }

    .principle-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .principle-card h3 {
        font-size: 24px;
    }

    .principle-card p {
        font-size: 16px;
        line-height: 1.65;
    }
}

/* Capabilities Section */
.capabilities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #fff 50%, #f0f4f8 100%);
}

.capabilities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.capabilities-content {
    max-width: 500px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #1e7eb5;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.capabilities-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capabilities-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #374151;
    margin-bottom: 20px;
    font-weight: 500;
}

.capabilities-list li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #1e7eb5;
    flex-shrink: 0;
    stroke-width: 3;
}

.capabilities-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.image-top,
.image-bottom {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-top img,
.image-bottom img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-top {
    height: 140px;
}

.image-bottom {
    height: 140px;
}

@media (max-width: 1024px) {
    .capabilities-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .capabilities-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .capabilities-section {
        padding: 60px 0;
    }

    .capabilities-container {
        padding: 0 20px;
        gap: 30px;
    }

    .capabilities-content h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .capabilities-list li {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .image-top {
        height: 100px;
    }

    .image-bottom {
        height: 100px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    border-color: #1e7eb5;
    box-shadow: 0 12px 32px rgba(30, 126, 181, 0.12);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: #111827;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.service-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

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

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

@media (max-width: 640px) {
    .services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-header h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

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

    .service-card p {
        font-size: 13px;
    }
}

/* Industries We Serve Section */
.industries-section {
    padding: 80px 0;
    background: #f9fafb;
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.industries-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
    line-height: 1.2;
}

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

.industry-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: #1e7eb5;
    box-shadow: 0 12px 32px rgba(30, 126, 181, 0.12);
    transform: translateY(-4px);
}

.industry-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e7eb5;
}

.industry-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.industry-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .industries-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .industries-section {
        padding: 60px 0;
    }

    .industries-container {
        padding: 0 20px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industries-header h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .industry-card {
        padding: 30px 20px;
    }

    .industry-card h3 {
        font-size: 16px;
    }

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

    .industry-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* Customer Reviews Section */
.reviews-section {
    background: #f7fbff;
    text-align: center;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}

.reviews-hero {
    min-height: 446px;
    padding: 112px 40px 80px;
    background: linear-gradient(115deg, #010a10 0%, #031723 42%, #07354f 100%);
    color: #ffffff;
}

.reviews-kicker {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 24px;
}

.reviews-title {
    color: #ffffff;
    font-size: 61px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 34px;
}

.reviews-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 310px;
    min-height: 86px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.reviews-score {
    color: #08a8e6;
    font-size: 51px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.reviews-stars-info {
    text-align: left;
}

.reviews-stars {
    display: flex;
    gap: 3px;
    color: #08a8e6;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 6px;
}

.reviews-stars-info p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.reviews-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 86px 22px 16px;
    position: relative;
}

.review-stars {
    color: #079ad1;
    line-height: 1;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-bottom: 50px;
}

.review-card {
    min-height: 322px;
    background: #ffffff;
    border: 1px solid #dce8f2;
    border-radius: 11px;
    padding: 30px 34px 34px;
    text-align: left;
    box-shadow: 0 34px 56px rgba(30, 54, 72, 0.13);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: #b7d6e9;
    box-shadow: 0 42px 82px rgba(18, 47, 69, 0.16);
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 19px;
}

.review-stars {
    display: flex;
    gap: 2px;
    font-size: 18px;
}

.quote-mark {
    color: #cfe6f4;
    font-family: Georgia, serif;
    font-size: 58px;
    font-weight: 900;
    line-height: 0.48;
}

.review-text {
    color: #071827;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.55;
    margin: 0 0 27px;
}

.review-divider {
    width: 100%;
    height: 1px;
    background: #dce6ee;
    margin: auto 0 28px;
}

.review-author h3 {
    color: #071827;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.2px;
    margin-bottom: 5px;
}

.review-author p {
    color: #60728c;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.reviews-google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border: 3px solid #0875c8;
    border-radius: 7px;
    color: #0875c8;
    background: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(8, 117, 200, 0.08);
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.reviews-google-btn:hover {
    color: #ffffff;
    background: #0875c8;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(8, 117, 200, 0.18);
}

.whatsapp-chat-btn {
    position: fixed;
    right: 28px;
    bottom: 24px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.whatsapp-chat-btn svg {
    width: 26px;
    height: 26px;
    transition: transform 0.25s ease;
}

.whatsapp-chat-btn:hover {
    background: #1fbd5a;
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(37, 211, 102, 0.38);
}

.whatsapp-chat-btn:hover svg {
    transform: scale(1.12) rotate(-8deg);
}

.whatsapp-chat-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

@media (max-width: 1024px) {
    .reviews-hero {
        min-height: 360px;
        padding-top: 82px;
    }

    .reviews-title {
        font-size: 44px;
    }

    .reviews-container {
        padding: 0 32px;
        padding-top: 64px;
        padding-bottom: 80px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .review-card {
        min-height: 300px;
    }

    .whatsapp-chat-btn {
        right: 24px;
        bottom: 22px;
    }
}

@media (max-width: 640px) {
    .reviews-hero {
        min-height: 310px;
        padding: 62px 20px 54px;
    }

    .reviews-kicker {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .reviews-title {
        font-size: 34px;
        letter-spacing: -1px;
        margin-bottom: 26px;
    }

    .reviews-rating-badge {
        min-width: 0;
        width: 100%;
        max-width: 300px;
        min-height: 72px;
        padding: 13px 18px;
    }

    .reviews-score {
        font-size: 40px;
    }

    .reviews-stars-info p {
        font-size: 12px;
    }

    .reviews-container {
        padding: 44px 20px 86px;
    }

    .reviews-grid {
        gap: 20px;
        margin-bottom: 42px;
    }

    .review-card {
        min-height: auto;
        padding: 28px 24px 30px;
        border-radius: 12px;
    }

    .review-stars {
        font-size: 20px;
        gap: 2px;
    }

    .quote-mark {
        font-size: 62px;
    }

    .review-text {
        font-size: 18px;
        line-height: 1.55;
        margin-bottom: 28px;
    }

    .review-divider {
        margin-bottom: 26px;
    }

    .review-author h3 {
        font-size: 20px;
    }

    .review-author p {
        font-size: 14px;
    }

    .reviews-google-btn {
        width: 100%;
        min-height: 62px;
        padding: 0 18px;
        border-width: 3px;
        font-size: 18px;
    }

    .whatsapp-chat-btn {
        right: 16px;
        bottom: 16px;
        min-height: 48px;
        padding: 0 14px;
        font-size: 14px;
    }
}

.s1 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact CTA Section */
.contact-cta-section {
    min-height: 340px;
    background: linear-gradient(115deg, #010a10 0%, #031723 42%, #07354f 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 58px 40px;
}

.contact-cta-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 42px;
}

.contact-cta-kicker {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 24px;
}

.contact-cta-title {
    color: #ffffff;
    font-size: 62px;
    font-weight: 900;
    letter-spacing: -2.2px;
    line-height: 1.02;
    margin-bottom: 28px;
    max-width: 760px;
}

.contact-cta-copy {
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
}

/* Quote Section */
.quote-section {
    background: #f6f9fc;
    padding: 86px 40px 92px;
}

.quote-container {
    max-width: 1295px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 490px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.quote-contact-list {
    display: grid;
    gap: 26px;
}

.quote-info-card {
    min-height: 115px;
    background: #ffffff;
    border: 1px solid #dbe7f0;
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.04);
}

.quote-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #061926;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.quote-info-icon svg {
    width: 23px;
    height: 23px;
}

.quote-info-card h3 {
    color: #071827;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 8px;
}

.quote-info-card p {
    color: #60728c;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.quote-form {
    background: #ffffff;
    border: 1px solid #dbe7f0;
    border-radius: 12px;
    padding: 36px 34px 34px;
    text-align: left;
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.11);
}

.quote-form h2 {
    color: #071827;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 28px;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    margin-bottom: 22px;
}

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.quote-field-full {
    margin-bottom: 22px;
}

.quote-field label {
    color: #071827;
    font-size: 14px;
    font-weight: 800;
}

.quote-field label span {
    color: #0a9bcc;
}

.quote-field input,
.quote-field textarea {
    width: 100%;
    border: 1px solid #dce6f1;
    border-radius: 6px;
    background: #f8fbff;
    color: #071827;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-transform: capitalize;
}

.quote-field input[type="email"] {
    text-transform: none;
}

.quote-field input {
    height: 40px;
    padding: 0 13px;
}

.quote-field textarea {
    min-height: 124px;
    resize: vertical;
    padding: 13px;
    line-height: 1.5;
}

.quote-field input:focus,
.quote-field textarea:focus {
    border-color: #0a9bcc;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(10, 155, 204, 0.1);
}

.quote-field textarea::placeholder {
    color: #7a8a9d;
}

.quote-submit-btn {
    min-width: 193px;
    min-height: 52px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, #0a96c7 0%, #04acd3 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(10, 150, 199, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(10, 150, 199, 0.22);
}

.quote-submit-btn:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.quote-submit-btn svg {
    width: 18px;
    height: 18px;
}

.quote-form-status {
    min-height: 22px;
    margin-top: 14px;
    color: #60728c;
    font-size: 14px;
    font-weight: 700;
}

.quote-form-status.success {
    color: #098b48;
}

.quote-form-status.error {
    color: #b42318;
}

/* Location Map Section */
.map-section {
    background: #f6f9fc;
    padding: 22px 40px 96px;
}

.map-container {
    max-width: 1720px;
    margin: 0 auto;
    border: 1px solid #dbe7f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.11);
    background: #ffffff;
}

.map-frame {
    display: block;
    width: 100%;
    height: 390px;
    border: 0;
}

@media (max-width: 1024px) {
    .contact-cta-section {
        min-height: 310px;
        padding: 54px 40px;
    }

    .contact-cta-inner {
        padding-left: 0;
    }

    .contact-cta-title {
        font-size: 48px;
        max-width: 650px;
    }

    .quote-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quote-contact-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .map-section {
        padding: 12px 32px 76px;
    }

    .map-frame {
        height: 340px;
    }
}

@media (max-width: 640px) {
    .contact-cta-section {
        min-height: 270px;
        padding: 46px 20px;
    }

    .contact-cta-kicker {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .contact-cta-title {
        font-size: 35px;
        letter-spacing: -1.1px;
        line-height: 1.08;
        margin-bottom: 20px;
    }

    .contact-cta-copy {
        font-size: 16px;
        line-height: 1.55;
    }

    .quote-section {
        padding: 48px 20px 72px;
    }

    .quote-contact-list,
    .quote-form-grid {
        grid-template-columns: 1fr;
    }

    .quote-info-card {
        min-height: auto;
        padding: 18px;
    }

    .quote-form {
        padding: 28px 20px;
    }

    .quote-form h2 {
        font-size: 24px;
    }

    .quote-submit-btn {
        width: 100%;
    }

    .map-section {
        padding: 0 20px 64px;
    }

    .map-container {
        border-radius: 12px;
    }

    .map-frame {
        height: 300px;
    }
}
.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: #06131b;
    padding: 48px 40px 0;
    color: white;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 0.75fr 1.15fr 0.95fr;
    gap: 54px;
    max-width: 1680px;
    margin: 0 auto;
    padding-bottom: 42px;
}

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

.footer-brand h2 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.22;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    max-width: 390px;
}

.footer-column h4 {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 3.5px;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: #1e7eb5;
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.9);
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1px;
}

.footer-muted-item,
.footer-muted-item svg {
    color: rgba(255, 255, 255, 0.58);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    min-height: 62px;
    display: grid;
    place-items: center;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    font-weight: 800;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer {
        padding: 48px 40px 0;
    }
    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
        padding-bottom: 44px;
    }

    .footer-brand h2 {
        font-size: 34px;
    }

    .footer-column h4 {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .footer-brand p,
    .footer-links a,
    .footer-contact-item {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 48px 20px 0;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 48px;
    }
    .footer-brand h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .footer-brand {
        gap: 20px;
    }

    .footer-brand p,
    .footer-links a,
    .footer-contact-item {
        font-size: 17px;
    }
    .footer-column h4 {
        font-size: 16px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    .footer-bottom {
        min-height: 74px;
    }
    .footer-bottom p {
        font-size: 14px;
    }
}

.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;
    border: 1px solid rgba(30, 126, 181, 0.1);
}

@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: #d1d5db;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #1e7eb5;
    background: rgba(30, 126, 181, 0.1);
    border-radius: 50%;
}

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

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

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

/* 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 #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    text-transform: capitalize;
    font-family: inherit;
}

.form-group input[type="email"] {
    text-transform: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #1e7eb5;
    box-shadow: 0 0 0 3px rgba(30, 126, 181, 0.1);
    background: rgba(30, 126, 181, 0.02);
}

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

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

.modal-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e7eb5 0%, #165b94 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(30, 126, 181, 0.2);
}

.modal-submit-btn:hover {
    background: linear-gradient(135deg, #165b94 0%, #0f3d5c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 126, 181, 0.3);
}

.modal-submit-btn:active {
    transform: translateY(-1px);
}

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

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #eef6ff 0%, #f0f9ff 100%);
    color: #1e7eb5;
    font-size: 32px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(30, 126, 181, 0.2);
}

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

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

@keyframes popIn {
    from { transform: scale(0.3); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@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;
    }
}

/* Final Phone Responsiveness Pass */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 72px;
    }

    body {
        min-width: 0;
    }

    .navbar {
        height: 70px;
        padding: 0 16px;
    }

    .logo {
        min-width: 0;
        max-width: calc(100% - 56px);
    }

    .brand-logo-img {
        width: 74px;
        height: 46px;
        margin-right: 0;
        border-radius: 0;
    }

    .logo h2 {
        font-size: 14px;
        line-height: 1.12;
        white-space: normal;
        max-width: 210px;
    }

    .logo p {
        display: none;
    }

    .mobile-drawer {
        position: sticky;
        top: 70px;
        z-index: 999;
    }

    .section1 {
        min-height: calc(100svh - 70px);
        padding: 52px 20px 44px;
        background-attachment: scroll;
        justify-content: center;
    }

    .hero-badge {
        font-size: 10px;
        line-height: 1.5;
        letter-spacing: 1.4px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.08;
        letter-spacing: -0.8px;
        margin-bottom: 16px;
    }

    .hero-location {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 22px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .hero-buttons {
        width: 100%;
        gap: 12px;
        margin-bottom: 34px;
    }

    .hero-btn {
        width: 100%;
        min-height: 48px;
        padding: 13px 16px;
        font-size: 13px;
    }

    .hero-stats {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 18px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stat-label {
        font-size: 9px;
        letter-spacing: 1.3px;
        line-height: 1.4;
    }

    .main1 {
        padding-bottom: 58px;
    }

    .texdiv1 {
        padding: 58px 20px 34px;
    }

    .h1 {
        display: block;
        font-size: clamp(34px, 10vw, 42px);
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    .p2 {
        font-size: 15px;
        line-height: 1.6;
    }

    .threediv {
        padding: 0 20px;
        gap: 18px;
    }

    .div1,
    .principle-card,
    .service-card,
    .industry-card,
    .review-card,
    .quote-info-card,
    .quote-form {
        border-radius: 12px;
    }

    .div1 {
        padding: 26px 22px;
        width: 100%;
    }

    .clean {
        font-size: 22px;
    }

    .reduce {
        font-size: 15px;
    }

    .built-for,
    .story-section,
    .principles-section,
    .capabilities-section,
    .services-section,
    .industries-section,
    .reviews-section,
    .quote-section,
    .map-section {
        overflow-x: hidden;
    }

    .about-title,
    .story-title,
    .capabilities-content h2,
    .services-header h2,
    .industries-header h2,
    .reviews-title,
    .contact-cta-title {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .story-inner,
    .capabilities-container,
    .quote-container {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .story-stats,
    .principles-grid,
    .services-grid,
    .industries-grid,
    .reviews-grid,
    .quote-contact-list,
    .quote-form-grid {
        grid-template-columns: 1fr;
    }

    .story-stat-card,
    .principle-card,
    .service-card,
    .industry-card {
        min-height: auto;
    }

    .capabilities-container,
    .services-container,
    .industries-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .capabilities-images {
        gap: 16px;
    }

    .image-top,
    .image-bottom {
        height: 180px;
        border-radius: 12px;
    }

    .image-top img,
    .image-bottom img {
        height: 100%;
        object-fit: cover;
    }

    .reviews-hero {
        min-height: auto;
        padding: 54px 20px;
    }

    .reviews-rating-badge {
        max-width: 100%;
    }

    .reviews-container {
        padding: 42px 20px 86px;
    }

    .review-card {
        padding: 24px 20px 26px;
    }

    .review-text {
        font-size: 16px;
    }

    .reviews-google-btn {
        width: 100%;
        min-height: 54px;
        font-size: 15px;
    }

    .contact-cta-section {
        min-height: auto;
        padding: 52px 20px;
    }

    .contact-cta-inner {
        padding-left: 0;
    }

    .contact-cta-copy {
        font-size: 15px;
        line-height: 1.6;
    }

    .quote-section {
        padding: 44px 20px 58px;
    }

    .quote-container {
        gap: 24px;
    }

    .quote-info-card {
        min-height: auto;
        padding: 18px;
        align-items: flex-start;
    }

    .quote-form {
        padding: 26px 18px;
    }

    .quote-field input {
        height: 44px;
    }

    .quote-field textarea {
        min-height: 132px;
    }

    .quote-submit-btn {
        width: 100%;
        min-height: 50px;
    }

    .map-section {
        padding: 0 20px 56px;
    }

    .map-frame {
        height: 300px;
    }

    .footer {
        padding: 42px 20px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 40px;
    }

    .footer-brand h2 {
        font-size: 27px;
        line-height: 1.2;
    }

    .footer-brand p,
    .footer-links a,
    .footer-contact-item {
        font-size: 15px;
    }

    .footer-contact-item {
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 10px;
    }

    .footer-contact-item svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        min-height: 66px;
        padding: 0 14px;
    }

    .whatsapp-chat-btn {
        right: 14px;
        bottom: 14px;
        min-height: 46px;
        padding: 0 13px;
        font-size: 13px;
        box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
    }
}

@media (max-width: 420px) {
    .logo h2 {
        font-size: 13px;
        max-width: 176px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .reviews-rating-badge {
        min-width: 0;
        padding: 12px 14px;
        gap: 12px;
    }

    .reviews-score {
        font-size: 36px;
    }

    .whatsapp-chat-btn span {
        display: none;
    }

    .whatsapp-chat-btn {
        width: 48px;
        justify-content: center;
        padding: 0;
    }

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