/* ===============================
   GLOBAL RESET (Premium Clean)
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #262626;
}

/* ===============================
   HEADER
================================ */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo img {
    height: 48px;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #0b2c4d; /* Primary Blue */
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

/* Premium Hover Line */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f6c200; /* Secondary Yellow */
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: #123d6a;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Enquire Button */
.header-cta .btn-enquire {
    background: linear-gradient(135deg, #0b2c4d, #123d6a);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(11, 44, 77, 0.25);
    transition: all 0.3s ease;
}

/* Button Hover */
.header-cta .btn-enquire:hover {
    background: linear-gradient(135deg, #f6c200, #ffd54f);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(246, 194, 0, 0.45);
}

/* ===============================
   FOOTER
================================ */
.main-footer {
    background: #0b2c4d;
    color: #ffffff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Footer Columns */
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #f6c200;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.85;
}

.footer-logo {
    height: 45px;
    margin-bottom: 15px;
}

/* Footer Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f6c200;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.8;
}

.footer-bottom .designed-by {
    color: #f6c200;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav {
        display: none; /* later add mobile menu */
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-wrapper {
        height: 70px;
    }

    .logo img {
        height: 40px;
    }
}
/* ===============================
   HERO SECTION
================================ */
/* ===============================
   LIGHT HERO SECTION (PREMIUM)
================================ */
.light-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(246,194,0,0.15), transparent 45%),
        radial-gradient(circle at bottom left, rgba(11,44,77,0.12), transparent 50%),
        #f8fafc; /* off-white base */
    color: #0b2c4d;
}

.hero-content {
    max-width: 720px;
    animation: fadeUp 1s ease;
}

/* Tagline */
.hero-tagline {
    background: rgba(11,44,77,0.08);
    color: #0b2c4d;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
    display: inline-block;
}

/* Heading */
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-content h1 span {
    color: #f6c200; /* secondary yellow */
}

/* Paragraph */
.hero-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* ===============================
   SEARCH BAR – LIGHT LUXURY
================================ */
.hero-search {
    margin-bottom: 35px;
}

.search-box {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 20px 40px rgba(11,44,77,0.12);
    gap: 6px;
}

.search-box select {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 14px;
    outline: none;
    color: #334155;
    background: #f8fafc;
    border-radius: 12px;
}

/* Search Button */
.search-box button {
    background: linear-gradient(135deg, #0b2c4d, #123d6a);
    color: #ffffff;
    border: none;
    padding: 0 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover {
    background: linear-gradient(135deg, #123d6a, #0b2c4d);
}

/* ===============================
   CTA BUTTONS
================================ */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #f6c200, #ffd54f);
    color: #000;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(246,194,0,0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #0b2c4d;
    color: #0b2c4d;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #0b2c4d;
    color: #ffffff;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .search-box {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
        width: fit-content;
    }
}
/* ===============================
   FEATURED PROJECTS
================================ */
.featured-projects {
    padding: 100px 0;
    background: #ffffff;
}

/* Section Heading */
.section-head {
    max-width: 600px;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 13px;
    color: #0b2c4d;
    background: rgba(11,44,77,0.08);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-head h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-head h2 span {
    color: #f6c200;
}

.section-head p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.project-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(11,44,77,0.12);
    transition: 0.4s;
}

.project-card:hover {
    transform: translateY(-8px);
}

/* Image */
.project-image {
    position: relative;
    height: 220px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Status Badge */
.project-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f6c200;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.project-status.completed {
    background: #22c55e;
    color: #fff;
}

.project-status.upcoming {
    background: #0b2c4d;
    color: #fff;
}

/* Content */
.project-content {
    padding: 22px;
}

.project-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.project-content .location {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.project-meta span {
    font-size: 12px;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 12px;
    color: #0b2c4d;
    font-weight: 500;
}

/* Link */
.project-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #0b2c4d;
    transition: 0.3s;
}

.project-link:hover {
    color: #f6c200;
}

/* CTA */
.section-cta {
    margin-top: 60px;
}

.section-cta .btn-primary {
    padding: 14px 36px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 32px;
    }
}
/* Project Details */
.project-details {
    list-style: none;
    margin-bottom: 18px;
}

.project-details li {
    font-size: 13px;
    color: #475569;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.project-details strong {
    color: #0b2c4d;
    font-weight: 600;
}

/* Status Colors */
.project-status.ongoing {
    background: #f6c200;
    color: #000;
}

.project-status.upcoming {
    background: #0b2c4d;
    color: #fff;
}

.project-status.completed {
    background: #22c55e;
    color: #fff;
}
/* ===============================
   CURATED COLLECTIONS – LUXURY
================================ */
.curated-collections {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    padding: 120px 0;
    margin-top: -40px; /* smooth join */
}

/* Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.collection-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 30px 60px rgba(11,44,77,0.12);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Soft Glow */
.collection-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(246,194,0,0.25),
        transparent 60%
    );
    opacity: 0;
    transition: 0.4s;
}

.collection-card:hover::after {
    opacity: 1;
}

/* Hover Lift */
.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 45px 90px rgba(11,44,77,0.18);
}

/* Icon */
.collection-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-icon img {
    width: 42px;
    height: 42px;
}

/* Title */
.collection-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #0b2c4d;
    margin-bottom: 6px;
}

/* AI Text */
.collection-ai {
    font-size: 13px;
    color: #64748b;
}

/* Count Badge */
.collection-count {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #0b2c4d;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

/* AI Paragraph */
.ai-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
}
.collection-icon svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: #0b2c4d;
    stroke-width: 1.8;
    transition: 0.4s;
}

/* Hover animation */
.collection-card:hover .collection-icon svg {
    stroke: #f6c200;
    transform: scale(1.15);
}
/* ===============================
   HOW WE WORK
================================ */
.how-we-work {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    padding: 120px 0;
    margin-top: -40px; /* smooth section join */
}

/* Grid */
.work-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.work-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(11,44,77,0.12);
    transition: all 0.4s ease;
    position: relative;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 45px 90px rgba(11,44,77,0.18);
}

/* Icon */
.work-icon {
    width: 70px;
    height: 70px;
    background: rgba(11,44,77,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.work-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #0b2c4d;
    stroke-width: 1.8;
    transition: 0.4s;
}

.work-card:hover .work-icon svg {
    stroke: #f6c200;
    transform: scale(1.15);
}

/* Text */
.work-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #0b2c4d;
    margin-bottom: 12px;
}

.work-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .work-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .work-steps {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   CLIENT VOICES – EDITORIAL
================================ */
.client-voices {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    padding: 140px 0;
    margin-top: -40px;
}

.voice-wrapper {
    max-width: 820px;
    margin: 80px auto 0;
    position: relative;
    min-height: 220px;
}

.voice {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease;
}

.voice.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* Text */
.voice-text {
    font-size: 20px;
    line-height: 1.9;
    color: #334155;
    text-align: center;
    margin-bottom: 40px;
}

/* User */
.voice-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.voice-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(11,44,77,0.12);
    color: #0b2c4d;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-avatar.gold {
    background: rgba(246,194,0,0.25);
    color: #000;
}

.voice-user h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0b2c4d;
}

.voice-user span {
    font-size: 13px;
    color: #64748b;
}

/* Dots */
.voice-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.voice-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.voice-dots .dot.active {
    background: #f6c200;
}
/* ===============================
   HOME BLOG SECTION
================================ */
.home-blogs {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    padding: 130px 0;
    margin-top: -40px; /* smooth join "no cut" */
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Card */
.blog-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11,44,77,0.12);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 45px 90px rgba(11,44,77,0.18);
}

/* Image */
.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.06);
}

/* Content */
.blog-content {
    padding: 32px;
}

.blog-date {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0b2c4d;
    margin-bottom: 14px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Read More */
.read-more {
    font-size: 14px;
    font-weight: 600;
    color: #0b2c4d;
    text-decoration: none;
    transition: 0.3s;
}

.read-more:hover {
    color: #f6c200;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   FEATURED LOCATIONS – CLEAN
================================ */
.clean-locations {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    padding: 140px 0;
    margin-top: -40px; /* smooth section join */
}

/* List */
.locations-list {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Row */
.location-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 40px;
    border-radius: 22px;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(11,44,77,0.08);
    transition: all 0.35s ease;
}

/* Hover */
.location-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 70px rgba(11,44,77,0.14);
}

/* Left */
.location-left h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0b2c4d;
    margin-bottom: 8px;
}

.location-left p {
    font-size: 14.5px;
    color: #475569;
    max-width: 520px;
    line-height: 1.8;
}

/* Right */
.location-right span {
    font-size: 14px;
    font-weight: 600;
    color: #0b2c4d;
    transition: color 0.3s;
}

.location-row:hover .location-right span {
    color: #f6c200;
}

/* Responsive */
@media (max-width: 768px) {
    .location-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
/* ===============================
   FEATURED DEVELOPERS – CLEAN
================================ */
.featured-developers {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    padding: 140px 0;
    margin-top: -40px; /* smooth section join */
}

/* List */
.developer-list {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* Row */
.developer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 34px 40px;
    border-radius: 22px;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(11,44,77,0.08);
    transition: all 0.35s ease;
}

/* Hover */
.developer-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 70px rgba(11,44,77,0.14);
}

/* Left */
.developer-left h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0b2c4d;
    margin-bottom: 6px;
}

.developer-left p {
    font-size: 14.5px;
    color: #475569;
    max-width: 520px;
    line-height: 1.8;
}

/* Right */
.developer-right span {
    font-size: 14px;
    font-weight: 600;
    color: #0b2c4d;
    transition: color 0.3s;
}

.developer-row:hover .developer-right span {
    color: #f6c200;
}

/* Responsive */
@media (max-width: 768px) {
    .developer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
/* ===============================
   FEATURED DEVELOPERS – MOVING
================================ */
.moving-developers {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    padding: 120px 0;
    margin-top: -40px;
    overflow: hidden;
}

/* Marquee container */
.developer-marquee {
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

/* Track */
.developer-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: developerScroll 35s linear infinite;
}

/* Pause on hover */
.developer-marquee:hover .developer-track {
    animation-play-state: paused;
}

/* Developer name */
.developer-name {
    font-size: 22px;
    font-weight: 600;
    color: #0b2c4d;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 6px;
}

/* Subtle underline */
.developer-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #f6c200;
    transition: width 0.4s ease;
}

.developer-name:hover::after {
    width: 100%;
}

/* Animation */
@keyframes developerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .developer-name {
        font-size: 18px;
    }
}
/* ===============================
   ENQUIRE POPUP
================================ */
.enquire-popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.enquire-popup.active {
    display: block;
}

/* Overlay */
.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,44,77,0.55);
    backdrop-filter: blur(6px);
}

/* Box */
.popup-box {
    position: relative;
    max-width: 460px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(11,44,77,0.35);
    animation: popupIn 0.45s ease forwards;
}

/* Animation */
@keyframes popupIn {
    to {
        transform: translateY(-50%) scale(1);
    }
}

/* Close */
.popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(11,44,77,0.08);
    font-size: 22px;
    cursor: pointer;
}

/* Content */
.popup-content {
    padding: 45px 40px;
    text-align: center;
}

.popup-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0b2c4d;
    margin: 14px 0 10px;
}

.popup-content p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Form */
.popup-form input,
.popup-form select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
}

.popup-form input:focus,
.popup-form select:focus {
    border-color: #0b2c4d;
    outline: none;
}

/* Button */
.btn-primary.full {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border-radius: 14px;
}
/* ===============================
   RESPONSIVE BASE RESET
================================ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: auto;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* ===============================
   RESPONSIVE BASE RESET
================================ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: auto;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* ======================================
   ABOUT HERO – SAME AS HOME
====================================== */

.about-hero-home {
    padding: 180px 0 140px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );
}

/* Reuse existing home hero styles */
.about-hero-home .hero-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 18px;
}

.about-hero-home h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 600;
    color: #0b2c4d;
}

.about-hero-home h1 span {
    color: #f6c200;
}

.about-hero-home p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 620px;
    margin-top: 28px;
    color: #475569;
}

/* Mobile */
@media (max-width: 992px) {
    .about-hero-home {
        padding: 120px 0 90px;
    }

    .about-hero-home h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .about-hero-home p {
        font-size: 16px;
    }
}
/* ======================================
   ABOUT – APPROACH (HOME STYLE)
====================================== */

.about-approach {
    padding: 160px 0;
    background: #ffffff;
}

/* Grid */
.approach-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Card */
.approach-card {
    background: #ffffff;
    padding: 44px 38px;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(11,44,77,0.08);
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-6px);
}

/* Text */
.approach-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0b2c4d;
}

.approach-card p {
    font-size: 15.5px;
    line-height: 1.9;
    color: #475569;
}

/* Mobile */
@media (max-width: 992px) {
    .about-approach {
        padding: 120px 0;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* ======================================
   ABOUT – IMPACT / TRUST (ULTRA PREMIUM)
====================================== */

.about-impact {
    padding: 180px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 55%,
        #ffffff 100%
    );
    margin-top: -40px;
}

/* Layout */
.impact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 120px;
    align-items: center;
}

/* Left Content */
.impact-left h2 {
    font-size: 48px;
    line-height: 1.15;
    margin: 18px 0 28px;
    color: #0b2c4d;
}

.impact-left h2 span {
    color: #f6c200;
}

.impact-left p {
    font-size: 17px;
    line-height: 2;
    color: #475569;
    margin-bottom: 22px;
    max-width: 560px;
}

/* Stats Grid (Desktop) */
.impact-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

/* Premium Box */
.impact-box {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.85)
    );
    backdrop-filter: blur(8px);
    padding: 54px 46px;
    border-radius: 34px;
    box-shadow:
        0 40px 80px rgba(11,44,77,0.12),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition: transform .35s ease, box-shadow .35s ease;
}

.impact-box:hover {
    transform: translateY(-8px);
    box-shadow:
        0 60px 120px rgba(11,44,77,0.18);
}

.impact-box h3 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0b2c4d;
}

.impact-box span {
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #64748b;
}

/* ===============================
   PHONE / MOBILE – ULTRA PREMIUM
================================ */
@media (max-width: 992px) {

    .about-impact {
        padding: 120px 0;
        margin-top: 0;
    }

    .impact-wrapper {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .impact-left h2 {
        font-size: 34px;
    }

    .impact-left p {
        font-size: 16px;
        line-height: 1.9;
    }

    /* Mobile Cards = App-like Tiles */
    .impact-right {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .impact-box {
        padding: 38px 34px;
        border-radius: 26px;
        box-shadow:
            0 20px 40px rgba(11,44,77,0.12),
            inset 0 1px 0 rgba(255,255,255,0.7);
    }

    .impact-box h3 {
        font-size: 36px;
    }

    .impact-box span {
        font-size: 13px;
    }
}

