:root {
            --primary: #c5a059; /* Gold */
            --primary-dark: #9e7f45;
            --text-dark: #2b2b2b; /* Graphite */
            --text-light: #666;
            --bg-light: #f8f9fa;
            --bg-dark: #0a1128; /* Dark Navy */
            --white: #ffffff;
            --gradient-bg: linear-gradient(135deg, #fdf4eb 0%, #f0f2f5 50%, #e6eaef 100%);
            --radius: 16px;
            --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
            font-family: 'Inter', sans-serif;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Modern Animations & Keyframes --- */
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            will-change: opacity, transform;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .delay-100 { transition-delay: 100ms; }
        .delay-200 { transition-delay: 200ms; }
        .delay-300 { transition-delay: 300ms; }

        /* ==========================================================================
           HEADER & NAV (UPDATED FOR STICKY & MOBILE RESPONSIVENESS)
           ========================================================================== */
        
        .avanty-header {
            position: fixed; /* Made Sticky */
            top: 0; left: 0; right: 0;
            padding: 30px 0;
            z-index: 1000;
            background: transparent;
            transition: all 0.4s ease;
        }
        
        /* Added scrolled class for solid background on scroll */
        .avanty-header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        }

        .avanty-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .avanty-logo-wrapper {
            display: flex;
            align-items: center;
        }

        .avanty-nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .avanty-nav-links a {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            color: #4a5568;
            letter-spacing: 1.5px;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
        }

        .avanty-nav-links a:hover, .avanty-nav-links a.active {
            color: #b58e53;
        }

        .avanty-nav-links a.active::after, .avanty-nav-links a:hover::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 20px;
            height: 1px;
            background-color: #b58e53;
        }

        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-menu-toggle svg {
            width: 26px;
            height: 26px;
            stroke: #1c2733;
            transition: stroke 0.3s ease;
        }

        /* HERO LAYOUT */
        .avanty-hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: #1c2733; 
        }

        .avanty-hero-img-bg {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('img/hero3.jpg'); 
            background-size: cover;
            background-position: 60% center;
            z-index: 0;
        }

        .avanty-glass-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 239, 229, 0.85) 40%, rgba(242, 239, 229, 0.1) 100%);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 1;
        }

        .avanty-hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding-top: 80px;
        }

        .avanty-hero-text-col {
            max-width: 580px; 
        }

        .avanty-hero-subhead {
            font-size: 9px;
            font-weight: 700;
            color: #b58e53;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            opacity: 0;
            animation: heroFadeUp 0.8s ease-out forwards;
        }

        .avanty-hero-subhead span {
            color: #1c2733;
        }

        .avanty-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 5.5rem;
            line-height: 1.05;
            color: #1c2733; 
            font-weight: 600;
            margin-bottom: 30px;
            letter-spacing: -1.5px;
            opacity: 0;
            animation: heroFadeUp 0.8s ease-out 0.2s forwards;
        }

        .avanty-hero-title span.block-text {
            display: block;
        }

        .avanty-hero-title .gold-text {
            color: #b58e53; 
        }

        .avanty-hero-desc {
            font-size: 0.9rem;
            color: #3b4453;
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 520px;
            opacity: 0;
            animation: heroFadeUp 0.8s ease-out 0.4s forwards;
        }
        
        /* MATCHING STATS BAR WITH GIVEN IMAGE */
        .avanty-hero-bottom {
            background-color: #0d1622; 
            position: relative;
            z-index: 2;
            border-top: none;
        }

        .avanty-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 50px 0;
        }

        .avanty-stat-item {
            padding: 0 40px;
            border-right: 1px solid rgba(255,255,255,0.1);
            opacity: 0;
            animation: heroFadeUp 0.8s ease-out 0.8s forwards;
        }

        .avanty-stat-item:last-child {
            border-right: none;
        }

        .avanty-stat-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #c5a059;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .avanty-stat-desc {
            font-size: 0.85rem;
            color: #e2e8f0;
            line-height: 1.6;
            font-weight: 300;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: none;
            font-size: 15px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-outline {
            border: 1px solid var(--text-dark);
            background: transparent;
        }
        .btn-outline:hover { 
            background: var(--text-dark); 
            color: var(--white); 
            box-shadow: 0 6px 20px rgba(43, 43, 43, 0.2);
            transform: translateY(-2px);
        }

        /* --- REDESIGNED WHAT WE DO SECTION --- */
        .wwd-capabilities-wrapper {
            position: relative;
            z-index: 2;
            background-color: #fdfdfd;
            padding: 100px 0;
        }
        .wwd-cap-header {
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }
        .wwd-cap-header span {
            font-size: 12px;
            font-weight: 700;
            color: #b58e53;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .wwd-cap-header span::before {
            content: '';
            width: 50px;
            height: 2px;
            background-color: #b58e53;
        }
        .wwd-capabilities-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .wwd-cap-card {
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.04);
            border-radius: 24px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            z-index: 1;
        }
        .wwd-cap-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }
        .wwd-cap-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .wwd-cap-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            border-color: rgba(197, 160, 89, 0.2);
        }
        .wwd-cap-card:hover::before { opacity: 1; }
        .wwd-cap-card:hover::after { transform: scaleX(1); }
        .wwd-cap-num {
            font-size: 0.9rem;
            color: #b58e53;
            font-weight: 700;
            margin-bottom: 25px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(197, 160, 89, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            letter-spacing: 1px;
        }
        .wwd-cap-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: #1c2733;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
            letter-spacing: -0.5px;
        }
        .wwd-cap-card p {
            font-size: 0.95rem;
            color: #5a6575;
            line-height: 1.7;
        }

        @media (min-width: 993px) {
            .wwd-capabilities-grid > div:nth-child(7) {
                grid-column: span 2;
            }
        }

        .wwd-bottom-banner {
            max-width: 1200px;
            margin: 80px auto 0;
            padding: 60px 20px 0;
            border-top: 1px solid rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }
        .wwd-bottom-left h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #1c2733;
            font-weight: 600;
            line-height: 1.3;
        }
        .wwd-bottom-right {
            border-left: 2px solid #b58e53;
            padding-left: 30px;
        }
        .wwd-bottom-right p {
            font-size: 1rem;
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        .wwd-bottom-right strong {
            color: #1c2733;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: block;
            margin-top: 10px;
        }

        /* --- SHARED HERO-STYLE SECTIONS (ABOUT US, OUR APPROACH, AREAS OF FOCUS) --- */
        .about-hero-style {
            position: relative;
            min-height: 100vh;
            padding: 120px 0;
            overflow: hidden;
            background-color: #1c2733;
            display: flex;
            align-items: center;
        }

        .ahs-bg {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .ahs-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 239, 229, 0.92) 65%, rgba(242, 239, 229, 0.1) 100%);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1;
        }

        .ahs-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .ahs-main-grid {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ahs-text-col {
            max-width: 650px;
        }

        .ahs-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            line-height: 1.15;
            color: #1c2733;
            font-weight: 600;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .ahs-title .gold-text {
            color: #b58e53;
            display: block;
        }

        .ahs-desc p {
            font-size: 0.95rem;
            color: #3b4453;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .ahs-foundation-wrapper {
            margin-top: 80px;
            padding-top: 60px;
            border-top: 1px solid rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
        }

        .ahs-eyebrow {
            font-size: 11px;
            font-weight: 700;
            color: #b58e53;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            display: block;
        }

        .ahs-eyebrow::after {
            content: '';
            display: block;
            width: 30px;
            height: 1px;
            background-color: #b58e53;
            margin-top: 15px;
        }

        .ahs-foundation-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #1c2733;
            line-height: 1.3;
            font-weight: 600;
        }

        .ahs-foundation-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .ahs-feature h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #1c2733;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ahs-feature h4::before {
            content: '';
            display: block;
            width: 20px;
            height: 1px;
            background-color: #b58e53;
        }

        .ahs-feature p {
            font-size: 0.9rem;
            color: #4a5568;
            line-height: 1.7;
        }

        @media (min-width: 769px) {
            .ahs-foundation-grid .ahs-feature:nth-child(5) {
                grid-column: span 2;
            }
        }

        /* --- SINGAPORE SECTION --- */
        .singapore-section {
            position: relative;
            padding: 120px 0;
            background: #f4efea;
            overflow: hidden;
        }

        .sg-bg {
            position: absolute;
            top: 0; right: 0; bottom: 0; width: 50%;
            background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15; 
            z-index: 0;
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .sg-content {
            position: relative;
            z-index: 2;
        }

        .sg-grid-container {
            margin-top: 100px;
            padding-top: 80px;
            border-top: 1px solid rgba(197, 160, 89, 0.3);
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
        }

        .sg-grid-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #1c2733;
            line-height: 1.3;
            font-weight: 600;
            position: sticky;
            top: 120px;
        }

        .sg-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .sg-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 25px;
            color: #b58e53;
        }

        .sg-feature h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: #1c2733;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .sg-feature p {
            font-size: 0.9rem;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .sg-bottom-banner {
            margin-top: 100px;
            padding-top: 60px;
            border-top: 1px solid rgba(197, 160, 89, 0.3);
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
        }

        .sg-bottom-left h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #1c2733;
            font-weight: 600;
            line-height: 1.3;
        }

        .sg-bottom-right {
            border-left: 2px solid #b58e53;
            padding-left: 30px;
        }

        .sg-bottom-right p {
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        /* --- CONTACT US FORM STYLES --- */
        .contact-us-section {
            background-color: #f3efe8;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .contact-bg {
            position: absolute;
            top: 0; right: 0; bottom: 0; width: 45%;
            background-image: url('img/hero3.jpg');
            background-size: cover;
            background-position: left center;
            opacity: 0.2;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 0;
        }

        .contact-form-wrapper {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid rgba(197, 160, 89, 0.3);
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }
        .contact-col-title {
            font-size: 11px;
            font-weight: 700;
            color: #b58e53;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .contact-col-title::after {
            content: '';
            width: 30px;
            height: 1px;
            background-color: #b58e53;
        }
        .contact-sub {
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 90%;
        }
        .contact-info-list { display: flex; flex-direction: column; gap: 30px; }
        .contact-info-list li { display: flex; align-items: flex-start; gap: 15px; }
        .contact-info-list svg { width: 20px; height: 20px; color: #b58e53; flex-shrink: 0; margin-top: 3px;}
        .contact-info-list strong { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: #b58e53; display: block; margin-bottom: 5px; }
        .contact-info-list p { font-size: 0.95rem; color: #1c2733; font-weight: 600; line-height: 1.6; }
        .contact-info-list a { color: #1c2733; transition: color 0.3s; }
        .contact-info-list a:hover { color: #b58e53; }
        
        .contact-form { display: grid; gap: 20px; }
        .contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .contact-input {
            width: 100%;
            padding: 16px 20px;
            background: transparent;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 4px;
            font-family: inherit;
            font-size: 0.95rem;
            color: #1c2733;
            transition: border-color 0.3s;
        }
        .contact-input::placeholder { color: #888; }
        .contact-input:focus { border-color: #b58e53; outline: none; }
        textarea.contact-input { resize: vertical; min-height: 120px; }
        .btn-submit {
            background: #0d1622;
            color: #fff;
            border: none;
            padding: 16px 30px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background 0.3s;
            justify-self: flex-start;
            min-width: 200px;
            border-radius: 4px;
        }
        .btn-submit:hover { background: #b58e53; }
        
        .contact-bottom-banner {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid rgba(197, 160, 89, 0.3);
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .contact-bottom-left h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #1c2733;
            font-weight: 600;
            line-height: 1.3;
        }
        .contact-bottom-right {
            border-left: 2px solid #b58e53;
            padding-left: 30px;
        }
        .contact-bottom-right p {
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.6;
        }

        /* --- Footer Styles Matching Provided Design --- */
        .new-footer {
            background-color: #0b121a;
            color: #a0aec0;
            padding: 80px 20px 30px;
            font-family: 'Inter', sans-serif;
        }
        .new-footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 2fr 1.2fr;
            gap: 60px;
        }
        .nf-logo-col img { 
            max-height: 45px; 
            margin-bottom: 25px; 
        }
        .nf-logo-col p { 
            font-size: 0.85rem; 
            line-height: 1.7; 
            max-width: 320px; 
            color: #e2e8f0;
            opacity: 0.8;
        }
        
        .nf-links-col h4, .nf-contact-col h4 {
            color: #c5a059;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 30px;
        }
        .nf-links-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .nf-links-wrapper a, .nf-contact-col p, .nf-contact-col a {
            color: #e2e8f0;
            font-size: 0.85rem;
            text-decoration: none;
            line-height: 2.2;
            transition: color 0.3s;
            opacity: 0.8;
            display: block;
        }
        .nf-links-wrapper a:hover, .nf-contact-col a:hover { 
            color: #c5a059; 
            opacity: 1;
        }
        
        .nf-disclaimer {
            max-width: 1200px;
            margin: 60px auto 30px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .nf-disclaimer h4 {
            color: #c5a059;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }
        .nf-disclaimer p {
            font-size: 0.75rem;
            line-height: 1.8;
            color: #718096;
            text-align: justify;
        }
        
        .nf-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #718096;
        }
        .nf-bottom a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        /* ==========================================================================
           RESPONSIVE MOBILE STYLES (ALL SECTIONS)
           ========================================================================== */

        @media (max-width: 992px) {
            /* Header */
            .avanty-header { 
                padding: 20px 0; 
                background: rgba(255, 255, 255, 0.95); 
                backdrop-filter: blur(10px); 
                border-bottom: 1px solid rgba(0,0,0,0.05); 
            }
            .avanty-header.scrolled { padding: 15px 0; }
            .mobile-menu-toggle { display: block; }
            .avanty-nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 30px 20px;
                gap: 20px;
                box-shadow: 0 15px 30px rgba(0,0,0,0.1);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s ease;
            }
            .avanty-nav-links.nav-active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            .avanty-nav-links a {
                font-size: 13px;
                letter-spacing: 2px;
                width: 100%;
                text-align: center;
                padding: 10px 0;
            }
            .avanty-nav-links a.active::after, .avanty-nav-links a:hover::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .avanty-hero-content { padding-top: 100px; }

            .avanty-hero-title { font-size: 4rem; }
            .avanty-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .avanty-stat-item:nth-child(2) { border-right: none; }
            
            .new-footer-grid { grid-template-columns: 1fr; gap: 40px; }

            /* About Hero Style Media Queries */
            .ahs-overlay { background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 239, 229, 0.95) 75%, rgba(242, 239, 229, 0.2) 100%); }
            .ahs-foundation-wrapper { grid-template-columns: 1fr; gap: 40px; }

            /* Our Approach Style Media Queries */
            .app-overlay { background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 239, 229, 0.95) 75%, rgba(242, 239, 229, 0.2) 100%); }
            .app-content { justify-content: flex-start; }
            .app-text-col { max-width: 100%; }

            /* WWD Media Queries */
            .wwd-capabilities-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
            .wwd-bottom-banner { grid-template-columns: 1fr; gap: 30px; }

            /* Contact section media queries */
            .contact-form-wrapper, .contact-bottom-banner { grid-template-columns: 1fr; gap: 40px; }
            .contact-form .row { grid-template-columns: 1fr; }
            .btn-submit { width: 100%; }

            /* Singapore section media queries */
            .sg-grid-container { grid-template-columns: 1fr; gap: 40px; }
            .sg-grid-header h3 { position: relative; top: 0; }
            .sg-bottom-banner { grid-template-columns: 1fr; gap: 40px; }
        }

        @media (max-width: 768px) {
            .avanty-nav-container { padding: 0 20px; }
            .avanty-hero-title { font-size: 3rem; line-height: 1.1; margin-top: 15px; }
            .avanty-hero-content { padding-top: 100px; padding-bottom: 40px; }
            
            .avanty-stats-grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
            .avanty-stat-item { border-right: none; padding: 15px 0; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .avanty-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
            
            /* About Hero Style Media Queries */
            .ahs-title { font-size: 2.5rem; line-height: 1.2; }
            .ahs-text-col { max-width: 100%; }
            .ahs-foundation-wrapper { margin-top: 50px; padding-top: 40px; gap: 40px; }
            .ahs-foundation-grid { grid-template-columns: 1fr; gap: 30px; }
            
            /* Our Approach Style Media Queries */
            .app-title { font-size: 2.5rem; line-height: 1.2; }
            .app-feature p { padding-left: 0; }

            /* WWD Media Queries */
            .wwd-capabilities-grid { grid-template-columns: 1fr; gap: 20px; }
            .wwd-bottom-left h3 { font-size: 1.6rem; }
            .wwd-bottom-right { border-left: none; padding-left: 0; border-top: 2px solid #b58e53; padding-top: 20px; }

            /* Singapore Section Media Queries */
            .sg-grid-container { margin-top: 50px; padding-top: 40px; }
            .sg-bottom-banner { margin-top: 50px; padding-top: 40px; }
            .sg-grid { grid-template-columns: 1fr; }
            .sg-bottom-right { border-left: none; padding-left: 0; border-top: 2px solid #b58e53; padding-top: 20px; }
            
            /* Contact */
            .contact-form-wrapper { margin-top: 40px; padding-top: 40px; gap: 50px;}
            .contact-bottom-right { border-left: none; padding-left: 0; border-top: 2px solid #b58e53; padding-top: 20px; }

            /* Footer */
            .new-footer { padding: 60px 20px 30px; }
            .nf-links-wrapper { grid-template-columns: 1fr; gap: 10px; }
            .nf-bottom { flex-direction: column; gap: 15px; text-align: center; }
        }