/* --- GLOBAL STYLES --- */
:root {
    --main-blue: #0A66C2; /* Main blue from buttons/text */
    --text-dark: #202636; /* Dark text from nav and headlines */
    --text-mid: #6C7280;  /* Description text */
    --badge-bg: rgba(10, 102, 194, 0.1); /* Transparent light blue for badge */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #f3f6f9;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease-in-out;
}

ul {
    list-style: none;
}

/* --- STICKY NAV BAR (THE REQUESTED EFFECT) --- */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Adjust height as needed */
    z-index: 1000;
    /* This makes the initial state transparent/glassy but clear */
    background-color: transparent; 
    border-bottom: 1px solid rgba(255,255,255,0.1); /* Subtle white line at top */
    transition: background-color 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, border-color 0.4s ease-in-out;
    display: flex;
    align-items: center;
}

/* THE EFFECT: Applied when page is scrolled */
.sticky-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.3); /* Glassy White (70% transparent) */
    backdrop-filter: blur(15px); /* Strong blur effect */
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Very subtle dark line */
}

.nav-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-box {
    background-color: var(--main-blue);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 8px; /* Slightly rounded square like the image */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main-text {
    font-weight: 800;
    font-size: 18px;
    color: #141824;
    text-transform: none;
}

.logo-sub-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-mid);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--main-blue);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    /* Exact background image found on Unsplash: A perfect match for image_0.png */
    background-image: url('11.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    /* Account for the sticky navbar height */
    padding-top: 80px; 
}

/* Overlay to darken background slightly for text readability */


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-left: 100px;
    text-align: left;
}

/* Elements Inside Hero */
.badge-blue {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: var(--badge-bg);
    color: var(--main-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #141824; /* Title is a distinct near-black */
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.text-blue {
    color: var(--main-blue);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #3e485e; /* Subtitle color */
    background-color: rgba(255, 255, 255, 0.3); /* Glassy White (70% transparent) */
    backdrop-filter: blur(15px); /* Strong blur effect */
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Very subtle dark line */
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5%;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    color:#fff;
    line-height: 1.7;
    padding: 10px;
    border-radius: 5%;
    background-color: rgba(255, 255, 255, 0.3); /* Glassy White (70% transparent) */
    backdrop-filter: blur(15px); /* Strong blur effect */
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Very subtle dark line */
    margin-bottom: 40px;
    max-width: 600px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

.btn-blue {
    background-color: var(--main-blue);
    color: #fff;
}
.btn-blue:hover {
    background-color: #085aab;
}

.btn-white {
    background-color: #fff;
    color: var(--text-dark);
}
.btn-white:hover {
    background-color: #f7f9fc;
}

.btn-trans {
    color: var(--text-dark);
}
.btn-trans:hover {
    text-decoration: underline;
}

.phone-icon {
    font-size: 18px;
}

/* WHATSAPP FLOAT (Optional) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* Spacer Content */
.scroll-spacer {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    text-align: center;
    font-size: 22px;
    gap: 20px;
    color: #777;
    background-color: white;
}
/* --- RESPONSIVE HERO FIX --- */
@media (max-width: 768px) {
    .hero {
        padding-top: 80px; /* Space for sticky nav */
        height: auto;      /* Allows section to grow with content */
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 40px 20px; /* Removes the 100px left padding from desktop */
        text-align: center; /* Centers text for better mobile look */
        width: 100%;
        max-width: 100%;    /* Ensures it stays inside the frame */
        margin: 0 auto;
    }

    .hero-title {
        font-size: 36px;    /* Scales down from 64px to fit mobile screens */
        line-height: 1.2;
        margin-bottom: 15px;
        word-wrap: break-word; /* Prevents long words from breaking the frame */
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        margin: 0 auto 30px auto;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column; /* Stacks buttons vertically */
        gap: 12px;
        width: 100%;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 90%;          /* Makes buttons easy to tap */
        justify-content: center;
    }
}

/* Global Fix to prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
/* --- HAMBURGER & MOBILE MENU STYLES --- */

/* Hide Hamburger by default (Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    
}

/* Mobile Menu Container (Hidden off-screen) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off to the right */
    width: 250px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 999;
    padding-top: 80px;
    transition: 0.4s ease-in-out;
}

/* When menu is active */
.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.mobile-nav-links li a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide standard links */
    }

    .hamburger {
        display: block; /* Show hamburger */
    }

    .nav-container {
        padding: 0 20px;
    }
}

/* --- ABOUT US SECTION STYLES --- */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px; /* Space between text and cards */
    align-items: center;
}

/* Left side text */
.about-text {
    flex: 1.2;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #141824;
    margin-top: 15px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-para {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 25px;
}

/* Right side cards */
.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    gap: 20px;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eef1f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.blue-soft {
    background-color: rgba(10, 102, 194, 0.08);
}

.icon {
    font-size: 22px;
    color: var(--main-blue);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #141824;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        text-align: left;
    }
    .stats-grid {
        width: 100%;
    }
}

/* --- SERVICES SECTION STYLES --- */
.services-section {
    padding: 100px 0;
    background-color: #fcfdfe; /* Very light background to separate from white sections */
}

.text-center {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    color: var(--text-mid);
    margin-top: -15px;
    margin-bottom: 50px;
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eef1f6;
    text-align: left;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(10, 102, 194, 0.08);
    border-color: var(--main-blue);
}

.service-icon-box {
    width: 45px;
    height: 45px;
    background-color: rgba(10, 102, 194, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #141824;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* Service Buttons */
.service-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-outline {
    border: 1px solid #eef1f6;
    background: #fff;
    color: var(--text-dark);
}

.btn-outline:hover {
    background: #f8f9fa;
}

/* --- RESPONSIVENESS (MOBILE FRIENDLY) --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* --- PROPERTIES SECTION --- */
.properties-section {
    padding: 100px 0;
    background-color: #fff;
}

/* Tab Styling */
.tab-container {
    background-color: #f1f5f9;
    display: inline-flex;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 10px 40px;
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-mid);
}

.tab-btn.active {
    background-color: #fff;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Hide tab content by default */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Property Card Styling */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    border: 1px solid #eef1f6;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.property-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.property-badge {
    background-color: rgba(10, 102, 194, 0.1);
    color: var(--main-blue);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.price {
    font-size: 20px;
    font-weight: 800;
    color: var(--main-blue);
}

.property-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #141824;
}

.location {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.property-specs {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 25px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.w-100 {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .properties-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .properties-grid { grid-template-columns: 1fr; }
    .tab-btn { padding: 10px 20px; }
}

/* --- CONSTRUCTION SECTION --- */
.construction-section {
    padding: 100px 0;
    background-color: #fff;
}

.construction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.const-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eef1f6;
    text-align: center; /* Icons and text are centered in this section */
    transition: all 0.3s ease;
}

.const-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.const-icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(10, 102, 194, 0.08);
    color: var(--main-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 24px;
}

.const-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #141824;
}

.const-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

.construction-action {
    margin-top: 20px;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .construction-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .construction-grid {
        grid-template-columns: 1fr;
    }
}

/* --- WHY CHOOSE US SECTION --- */
.why-us-section {
    padding: 100px 0;
    background-color: #fcfdfe;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eef1f6;
    display: flex; /* Aligns icon and text horizontally */
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    border-color: var(--main-blue);
}

.why-icon {
    font-size: 24px;
    color: var(--main-blue);
    padding-top: 3px; /* Aligns icon with first line of heading */
}

.why-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #141824;
    margin-bottom: 10px;
}

.why-text p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1100px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card {
        padding: 25px;
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.testimonial-slider {
    padding: 40px 20px 60px 20px;
    max-width: 1200px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eef1f6;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quote-icon {
    font-size: 40px;
    color: rgba(10, 102, 194, 0.1);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    background-color: rgba(10, 102, 194, 0.1);
    color: var(--main-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.client-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #141824;
    margin-bottom: 2px;
}

.client-details span {
    font-size: 13px;
    color: var(--text-mid);
}

/* Slider Arrow Customization */
.swiper-button-next, .swiper-button-prev {
    color: var(--main-blue);
    transform: scale(0.6);
}

.swiper-pagination-bullet-active {
    background: var(--main-blue);
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.mb-50 { margin-bottom: 50px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.column-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #141824;
}

/* Info Items */
.info-item {
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(10, 102, 194, 0.05);
    color: var(--main-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #141824;
}

.info-text p {
    font-size: 14px;
    color: var(--text-mid);
}

/* Form Styling */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #141824;
}

.required { color: #e11d48; }

.form-group input, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background-color: #f8fafc;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--main-blue);
}

.btn-blue-light {
    background-color: #7eb4e2; /* Matching the lighter blue in your screenshot */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-blue-light:hover { background-color: var(--main-blue); }

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { flex-direction: column; gap: 0; }
}

/* --- FOOTER STYLES --- */
.footer {
    padding-top: 80px;
    background-color: #fff;
    border-top: 1px solid #eef1f6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #141824;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-mid);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--main-blue);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--main-blue);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid #eef1f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #141824;
    font-size: 14px;
}

.social-links a:hover {
    background-color: var(--main-blue);
    color: #fff;
    border-color: var(--main-blue);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #eef1f6;
    padding: 25px 0;
    font-size: 13px;
    color: var(--text-mid);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.dev-link {
    font-weight: 600;
    color: var(--text-dark);
}

.dev-link:hover {
    color: var(--main-blue);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .bottom-flex { flex-direction: column; gap: 10px; text-align: center; }
}

/* --- ICON STYLING UPGRADES --- */

/* About Us Section Stat Icons */
.stat-icon-box {
    width: 65px;               /* Increased size from 50px */
    height: 65px;              /* Increased size from 50px */
    background-color: rgba(10, 102, 194, 0.1); /* Light blue background */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-icon-box i {
    font-size: 28px;           /* Larger Icon size */
    color: var(--main-blue);   /* Your primary brand blue */
}

/* Services Section Icons */
.service-icon-box {
    width: 60px;               /* Increased container size */
    height: 60px;
    background-color: rgba(10, 102, 194, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 15px;             /* Added internal padding */
    transition: all 0.3s ease;
}

.service-icon-box i {
    font-size: 26px;           /* Larger Icon size */
    color: var(--main-blue);
}

/* Hover Effect for Services */
.service-card:hover .service-icon-box {
    background-color: var(--main-blue);
}

.service-card:hover .service-icon-box i {
    color: #fff;               /* Icon turns white on card hover */
}