/* VARIABLES */
:root {
    /* Colors based on the provided logo */
    --brand-cyan: #00a8e8;
    /* Bright cyan from logo */
    --brand-cyan-dark: #008fca;
    --brand-navy: #0a192f;
    /* Deep navy blue from logo */
    --brand-navy-light: #112240;
    --brand-navy-dark: #020c1b;
    --bg-light: #f8f9fa;
    /* Very light cool gray/white */
    --white: #ffffff;
    --text-main: #333333;
    --text-light: #666666;

    /* Typography */
    --font-sans: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* UTILITIES */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-padding {
    padding: 70px 0;
}

.text-center {
    text-align: center;
}

.max-w-3xl {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.mt-5 {
    margin-top: 2rem;
}

.bg-white {
    background-color: var(--white);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--brand-navy);
}

.text-dark {
    color: var(--brand-navy);
}

.text-white {
    color: var(--white);
}

.highlight {
    color: var(--brand-cyan);
}

.section-title {
    padding-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
   

}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-fast);
    cursor: pointer;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;

    max-width: 100%;
    white-space: normal;
}

.btn-primary {
    background-color: var(--brand-cyan);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--brand-cyan-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background-color: var(--brand-navy);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--brand-navy-light);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--brand-navy);
    border: 2px solid var(--brand-navy);
}

.btn-outline-dark:hover {
    background-color: var(--brand-navy);
    color: var(--white);
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}


.navbar.scrolled .nav-item a {
    color: var(--brand-navy);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--brand-navy);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-img {
    padding-top: 10px;
    width: 200px;
    height: auto;
    transition: all 0.3s ease;
    object-fit: contain;
}

/* The logo is white by default. */
.navbar:not(.scrolled) .brand-img {
    filter: none;
    /* Keeps it white on the dark hero */
}



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

.nav-item {
    position: relative;
}

.nav-item a {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.nav-item a:hover {
    color: var(--brand-cyan);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Align the last few dropdowns to the right to prevent going off-screen */
.nav-item:nth-last-child(1) .dropdown-menu,
.nav-item:nth-last-child(2) .dropdown-menu,
.nav-item:nth-last-child(3) .dropdown-menu {
    left: auto;
    right: 0;
}

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

.dropdown-menu a {
    color: var(--brand-navy) !important;
    padding: 10px 20px;
    font-size: 0.875rem;
    display: block;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--brand-cyan) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    padding: 100px 30px;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
     z-index: 9999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--brand-navy);
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 120px;
    /* Add padding to prevent overlapping with navbar */
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(17, 34, 64, 0.9) 100%), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%2300a8e8" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.line {
    height: 1px;
    width: 40px;
    background-color: var(--brand-cyan);
}

.subtitle {
    color: var(--brand-cyan);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-title {
    font-size:2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trust-item i {
    color: var(--brand-cyan);
    font-size: 1.25rem;
    margin-top: 2px;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.feature-card:hover {
    border-color: rgba(0, 168, 232, 0.3);
    box-shadow: var(--shadow-sm);
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.icon-box i {
    color: var(--brand-cyan);
    font-size: 1.25rem;
}

.feature-card span {
    font-weight: 600;
    color: var(--brand-navy);
    line-height: 1.3;
}

.about-image {
    position: relative;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.glass-box {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    border-radius: 4px;
}

.glass-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.glass-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--brand-cyan);
    line-height: 1;
}

.glass-text {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cards-grid.grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 168, 232, 0.2);
}

.card-number {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 168, 232, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-cyan);
    border-radius: 4px;
    margin-bottom: 24px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 16px;
}

.card-desc {
    color: var(--text-light);
}

/* KOCHI SECTION */
.kochi {
    position: relative;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--brand-navy-light);
    transform: skewX(-10deg) translateX(50px);
    opacity: 0.8;
    z-index: 1;
}

.kochi-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .kochi-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.kochi-list {
    margin-top: 40px;
    margin-bottom: 40px;
}

.kochi-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.kochi-list i {
    color: var(--brand-cyan);
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.link-btn:hover {
    color: var(--white);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--brand-cyan);
    margin-bottom: 16px;
}

.stat-card h4 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
    color: #0a192f;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.blog-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.blog-content li {
    margin-bottom: 10px;
}

.blog-content a {
    color: #0077cc;
    text-decoration: none;
    font-weight: 600;
}

.blog-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 15px;
        font-size: 16px;
    }

    .blog-content h1 {
        font-size: 30px;
    }

    .blog-content h2 {
        font-size: 24px;
    }

    .blog-content h3 {
        font-size: 20px;
    }
}

/* CHOOSE US */
.feature-box {
    padding: 40px;
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.feature-box i {
    font-size: 2rem;
    color: var(--brand-cyan);
    margin-bottom: 24px;
    display: block;
    transition: color var(--transition-fast);
}

.feature-box:hover {
    background-color: var(--brand-navy);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box:hover .card-title,
.feature-box:hover .card-desc {
    color: var(--white);
}

/* CTA SECTION */
.cta {
    background-color: var(--brand-cyan);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h40v40H0V0zm20 20h20v20H20V20zM0 20h20v20H0V20z" fill="%230a192f" fill-opacity="0.05" fill-rule="evenodd"/%3E%3C/svg%3E');
    opacity: 0.5;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    background-color: var(--brand-navy);
    padding: 80px 0 0 0;
    border-top: 4px solid var(--brand-cyan);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    margin: 24px 0;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--brand-navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--brand-cyan);
    color: var(--white);
}

.footer h3 {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--brand-cyan);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-contact i {
    color: var(--brand-cyan);
    font-size: 1.25rem;
    margin-top: 2px;
}

.footer-contact a:hover {
    color: var(--brand-cyan);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter input {
    background-color: var(--brand-navy-light);
    border: 1px solid var(--brand-navy-dark);
    padding: 12px 16px;
    color: var(--white);
    outline: none;
    border-radius: 4px;
}

.footer-newsletter input:focus {
    border-color: var(--brand-cyan);
}

.footer-newsletter button {
    background-color: var(--brand-cyan);
    color: var(--white);
    border: none;
    padding: 12px 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
}

.footer-newsletter button:hover {
    background-color: var(--brand-cyan-dark);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom .tag {
    font-weight: 500;
    color: var(--brand-cyan);
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(17, 34, 64, 0.95) 100%), url('https://images.unsplash.com/photo-1593693397690-362bb9a1153a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .brand-img {
        width: 170px;
    }

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

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

    .about-image {
        height: 350px;
    }
}
/* =========================================
   MOBILE RESPONSIVE FIX
========================================= */

@media screen and (max-width: 768px) {

    /* GENERAL */
    html,
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 50px 0;
    }

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

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-container {
        padding: 10px 16px;
    }

    .brand-img {
        width: 150px;
    }

    /* MOBILE MENU */
    .mobile-menu {
        width: 80%;
        padding: 100px 20px 40px;
         z-index: 9999;
    }

    .mobile-menu a {
        font-size: 1rem;
    }

    /* HERO SECTION */
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

    .subtitle {
        font-size: 0.75rem;
    }

    /* HERO BUTTONS */
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* TRUST INDICATORS */
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-item {
        align-items: flex-start;
    }

    /* REMOVE BROKEN <br> EFFECT */
    .trust-indicators{
        display: none;
    }

    /* ABOUT SECTION */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 300px;
    }

    .glass-box {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 16px;
    }

    .glass-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .glass-number {
        font-size: 2rem;
    }

    /* FEATURES GRID */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* CARDS */
    .cards-grid,
    .cards-grid.grid-3 {
        grid-template-columns: 1fr !important;
    }

    .card,
    .feature-box {
        padding: 24px;
    }

    /* KOCHI SECTION */
    .kochi-grid {
        grid-template-columns: 1fr;
    }

    .bg-shape {
        display: none;
    }

    .kochi-list {
        gap: 16px;
    }

    /* STATS */
    .kochi-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 24px;
    }

    /* SECTION TITLES */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-desc {
        font-size: 1rem;
    }

    /* WHO WE SERVE */
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-bottom {
        text-align: center;
    }

    /* PAGE HEADER */
    .page-header {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    /* BLOG */
    .blog-content {
        padding: 20px 15px;
        font-size: 16px;
    }

    .blog-content h1 {
        font-size: 28px;
    }

    .blog-content h2 {
        font-size: 24px;
    }

    .blog-content h3 {
        font-size: 20px;
    }
}
.who-we-serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media(max-width:768px){
    .who-we-serve-grid{
        grid-template-columns: 1fr;
    }
}