        @font-face {
            font-family: mainfont;
            src: url(../font/NotoSansThai-Regular.ttf);
        }

        /* Apply mainfont globally */
        * {
            font-family: mainfont, sans-serif;
            user-select: none; /* Make all text unselectable by default */
        }

        :root {
            --primary: #e81e52;
            --secondary: #d4af37;
            --light: #f8f8f8;
            --dark: #121212;
            --cream: #f5f5e9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'mainfont', sans-serif;
        }
        
        body {
            background-color: white;
            color: var(--dark);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
          font-family: 'Montserrat', sans-serif;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            width: 100%;
            background-color: transparent;
            z-index: 100;
            transition: background-color 0.3s;
        }
        
        header.scrolled {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        #welcomePopup {
            transition: opacity .4s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        header.scrolled .logo {
            color: var(--dark);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-family: 'Montserrat', sans-serif;
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        header.scrolled nav ul li a {
            color: var(--dark);
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            color: white;
            font-size: 28px;
        }
        
        header.scrolled .menu-toggle {
            color: var(--dark);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: white;
            z-index: 1000;
            transition: right 0.3s ease;
            padding: 80px 5% 30px; /* Added 5% side padding */
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu ul {
            list-style: none;
        }
        
        .mobile-menu ul li {
            margin-bottom: 0px;
        }
        
        .mobile-menu ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 16px;
        }
        
        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .hero-slides {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #c21845;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 1px solid white;
            margin-left: 15px;
        }
        
        .btn-secondary:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        /* Mission Section */
        .mission {
            padding: 100px 0;
            background-color: var(--cream);
            text-align: center;
        }
        
        .mission p {
            font-size: 24px;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Why Preservation Matters Section */
        .preservation-matters {
            padding: 100px 0 20px 0;
            background-color: var(--cream);
            position: relative;
        }
        
        .preservation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        
        .preservation-card {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .preservation-card:hover {
            transform: translateY(-10px);
        }
        
        .preservation-icon {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .preservation-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .preservation-quote {
            max-width: 700px;
            margin: 60px auto 0;
            text-align: center;
        }
        
        .preservation-quote blockquote {
            font-size: 24px;
            font-weight: 300;
            line-height: 1.4;
            color: var(--dark);
            position: relative;
            padding: 0 40px;
        }
        
        .preservation-quote blockquote::before,
        .preservation-quote blockquote::after {
            content: '"';
            font-size: 60px;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
        }
        
        .preservation-quote blockquote::before {
            top: -20px;
            left: 0;
        }
        
        .preservation-quote blockquote::after {
            bottom: -50px;
            right: 0;
        }
        
        .preservation-quote footer {
            margin-top: 20px;
            font-size: 16px;
            color: #666;
            font-style: italic;
        }
        
        /* Why A360 Section */
        .why-a360 {
            padding: 100px 0;
            background-color: var(--cream);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .feature {
            text-align: center;
            padding: 40px 30px;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
            background-color: white;
        }
        
        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        /* Value Proposition */
        .value-props {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 36px;
            font-weight: 600;
        }
        
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        
        .card-img {
            height: 200px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        /* Comparison Table */
        .comparison {
            padding: 100px 0;
            background-color: white;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 40px;
        }
        
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        th {
            background-color: var(--dark);
            color: white;
            font-weight: 500;
        }
        
        tr:nth-child(even) {
            background-color: rgba(0,0,0,0.02);
        }
        
        .check {
            color: var(--primary);
            font-weight: bold;
        }
        
        .cross {
            color: #999;
        }

        /* Sponsors Section */
    .sponsors {
        padding: 20px 0;
        background-color: white;
    }

    .sponsors-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 40px;
        align-items: center;
        justify-items: center;
    }

    .sponsor-logo {
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all 0.3s ease;
        max-width: 150px;
    }

    .sponsor-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    .sponsor-logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .sponsors-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .sponsors-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
    }

    @media (max-width: 576px) {
        .sponsors-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }
        
        /* Case Studies Grid */
        .case-studies {
            padding: 100px 0;
            background-color: var(--cream);
        }
        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Case Study Card */
        .case-study-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .case-study-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .case-study-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .case-study-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .case-study-content p {
            flex-grow: 1;
            color: #666;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .case-study-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .case-study-actions .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            width: auto;
            font-size: 14px;
        }

        .case-study-duration {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #666;
            font-size: 14px;
        }

        .case-study-duration .material-icons {
            font-size: 16px;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .case-studies-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .case-studies-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* FAQ */
        .faq {
            padding: 100px 0;
            background-color: white;
        }
        
        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .accordion-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .accordion-header {
            background-color: white;
            padding: 20px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .accordion-header:hover {
            background-color: #f9f9f9;
        }
        
        .accordion-content {
            background-color: white;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-content-inner {
            padding: 20px 0;
        }
        
        .accordion-item.active .accordion-content {
            max-height: 300px;
        }
        
        /* Final CTA */
        .final-cta {
            padding: 100px 0;
            text-align: center;
            background-color: var(--dark);
            color: white;
        }
        
        .final-cta h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }
        
        .final-cta .btn {
            background-color: var(--primary);
            border: none;
        }
        
        .final-cta .btn-secondary {
            background-color: transparent;
            border: 1px solid white;
            color: white;
        }
        
        .final-cta .btn-secondary:hover {
            background-color: rgba(255,255,255,0.1);
        }

        /* Final CTA */
        .final-cta2 {
            padding: 50px 0 50px 0;
            text-align: center;
            color: white;
        }
        
        .final-cta2 h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }
        
        .final-cta2 .btn {
            background-color: var(--primary);
            border: none;
        }
        
        .final-cta2 .btn-secondary {
            background-color: transparent;
            border: 1px solid white;
            color: white;
        }
        
        .final-cta2 .btn-secondary:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 20px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #999;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .carousel-img {
                height: 400px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .btn-group {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .btn-secondary {
                margin-left: 0;
                margin-top: 15px;
            }
            
            .carousel-img {
                height: 300px;
            }
        }

        
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 36px;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        

        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .info-icon {
            font-size: 24px;
            color: var(--primary);
            margin-right: 15px;
            margin-top: 4px;
        }
        
        .info-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .info-content p {
            color: #555;
        }
        
        /* What to Expect Section */
        .expect-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .expect-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .expect-card {
            background-color: var(--cream);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .expect-card:hover {
            transform: translateY(-5px);
        }
        
        .expect-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .consultation-hero h1 {
                font-size: 42px;
            }
            
            .consultation-hero p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 30px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .consultation-hero h1 {
                font-size: 36px;
            }
            
            .consultation-hero p {
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .consultation-hero h1 {
                font-size: 32px;
            }
            
            .consultation-form {
                padding: 30px 20px;
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .carousel-img {
                height: 400px;
            }
        }
        
        
        /* Case Studies Grid */
        .case-studies-hero {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/hero/atta.jpg') no-repeat center center;
            background-size: cover;
        }

        /* Case Studies Grid */
        .case-studies-hero2 {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/hero/31stcentury.jpg') no-repeat center center;
            background-size: cover;
        }
        .case-studies-hero3 {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/hero/numthong.jpg') no-repeat center center;
            background-size: cover;
        }
        .case-studies-hero4 {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/hero/bacc.jpg') no-repeat center center;
            background-size: cover;
        }

        .case-studies-hero5 {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/hero/inson.jpg') no-repeat center center;
            background-size: cover;
        }
        .project-hero {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/casestudies/worldexpo.jpg') no-repeat center center;
            background-size: cover;
        }

        .project-hero2 {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/casestudies/tawee.jpg') no-repeat center center;
            background-size: cover;
        }

        .project-hero3 {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/hero/bacc.jpg') no-repeat center center;
            background-size: cover;
        }

        .project-campus {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/yeonhee-TJQ81PlErII-unsplash.jpg') no-repeat center center;
            background-size: cover;
        }

        .project-creative {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/services/atty.jpg') no-repeat center center;
            background-size: cover;
        }

        .learn {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/learn/taylor-flowe-aXeVH4FcS1k-unsplash.jpg') no-repeat center center;
            background-size: cover;
        }
        
        .case-studies-container {
            padding: 80px 0;
        }

        .case-studies-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .case-studies-hero2 h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .case-studies-hero3 h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .case-studies-hero4 h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .case-studies-hero5 h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .project-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .project-hero2 h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .project-hero3 h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .project-campus h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .project-creative h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .learn h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            align-items: stretch;
        }

        .case-study-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .case-study-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .case-study-img {
            height: 250px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .case-study-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .case-study-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .case-study-content p {
            flex-grow: 1;
            color: #666;
            margin-bottom: 20px;
        }

        .case-study-content .btn {
            margin-top: auto; /* Push button to bottom */
            align-self: flex-start; /* Align button to start (left) */
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .case-studies-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Language Toggle Styles */
        .language-toggle {
            position: relative;
            margin-left: 20px;
        }
        
        .language-btn {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            font-family: 'mainfont', sans-serif;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: #fff;
            border-radius: 4px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 5px 0;
            min-width: 120px;
            z-index: 1000;
            display: none;
            font-size: 14px;
        }
        
        .language-dropdown.active {
            display: block;
        }
        
        .language-option {
            padding: 8px 15px;
            cursor: pointer;
            color: #000;
            transition: all 0.2s ease;
        }
        
        /* Language Button - When header is scrolled (black text) */
        header.scrolled .language-btn {
            color: #000 !important; /* Force black text when scrolled */
        }

        /* Language Button - Hover state */
        header.scrolled .language-btn:hover {
            color: #000 !important; /* Maintain black text on hover */
        }

        /* Mobile Language Button - Always black */
        .mobile-language .language-btn {
            color: #000;
        }
        @media (max-width: 768px) {
            .language-toggle {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }
            
            .language-btn {
                justify-content: center;
                width: 100%;
                color: #333;
                padding: 10px;
            }
            
            .language-dropdown {
                position: static;
                box-shadow: none;
                width: 100%;
            }
        }

        /* Optional: Add some styling to make it stand out more */
        .year-badge {
            display: inline-block;
            background-color: #f0f0f0;
            color: #666;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        /* Consultation Hero */
        .consultation-hero {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/hero/atta.jpg') no-repeat center center;
            background-size: cover;
        }
        
        .consultation-hero-content {
            max-width: 800px;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .consultation-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .consultation-hero p {
            font-size: 20px;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        /* Consultation Form Section */
        .consultation-section {
            padding: 80px 0;
            background-color: var(--cream);
        }
        
        .consultation-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .consultation-info {
            flex: 1;
            min-width: 300px;
        }
        
        .consultation-form {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 36px;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .btn-consult {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
        }
        
        .btn-consult:hover {
            background-color: #c21845;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .info-icon {
            font-size: 24px;
            color: var(--primary);
            margin-right: 15px;
            margin-top: 4px;
        }
        
        .info-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .info-content p {
            color: #555;
        }
        
        /* What to Expect Section */
        .expect-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .expect-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .expect-card {
            background-color: var(--cream);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .expect-card:hover {
            transform: translateY(-5px);
        }
        
        .expect-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary);
        }


        
        /* About Page Specific Styles */
        .about-hero {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/casestudies/worldexpo.jpg') no-repeat center center;
            background-size: cover;
        }
        
        .about-section {
            padding: 80px 0;
        }
        
        .about-content {
            max-width: 900px;
            margin: 0 auto;
        }

        /* Mission Section */
        .mission {
            padding: 50px 0;
            background-color: var(--cream);
            text-align: center;
        }
        
        .mission p {
            font-size: 24px;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        .mission-statement {
            background: var(--cream);
            padding: 50px;
            border-radius: 12px;
            margin: 60px 0;
            position: relative;
        }
        
        .mission-statement:before {
            content: "";
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 100px;
            color: rgba(232,30,82,0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .case-studies-container {
            padding: 80px 0;
        }

        .case-studies-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .filter-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 8px 20px;
            background: white;
            border: 1px solid var(--primary);
            color: var(--primary);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .case-study-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .case-study-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        
        .case-study-img {
            height: 250px;
            background-size: cover;
            background-position: center;
        }
        
        .case-study-content {
            padding: 25px;
        }
        
        .case-study-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .case-study-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .case-study-tag {
            display: inline-block;
            padding: 4px 12px;
            background: var(--cream);
            color: var(--primary);
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            margin-right: 8px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .case-studies-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Page-specific styles */
        .service-hero {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/services/foster.jpg') no-repeat center center;
            background-size: cover;
        }
        .service2-hero {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/hero/atta.jpg') no-repeat center center;
            background-size: cover;
        }
        .service3-hero {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../img/hero/worldexpo1.jpg') no-repeat center center;
            background-size: cover;
        }
        
        .service-content {
            padding: 80px 0;
        }

        .service-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .service2-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .service3-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .benefits-section {
            padding: 80px 0;
            background-color: var(--cream);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .benefit-card {
            background: white;
            padding: 35px 30px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .benefit-icon {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .benefit-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
            position: relative;
            padding-bottom: 10px;
        }
        
        .benefit-card h3:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }
        
        .benefit-card p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .benefit-card .learn-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .benefit-card .learn-more .material-icons {
            font-size: 18px;
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .benefit-card:hover .learn-more .material-icons {
            transform: translateX(3px);
        }

        .project-overview {
          padding: 100px 0 0 0;
          display: flex;
          flex-wrap: wrap;
          margin-bottom: 3rem;
          gap: 2rem;
          align-items: center;
        }

        .overview-row {
          display: flex;
          flex-wrap: wrap;
          margin-bottom: 3rem;
          gap: 2rem;
          align-items: center;
        }

        .project-overview .overview-text {
          flex: 1 1 50%;
        }
        .project-overview .overview-image {
          flex: 1 1 45%;
        }
        .project-overview .overview-image img {
          width: 100%;
          height: auto;
          border-radius: 12px;
          box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
          .project-overview .overview-row {
            flex-direction: column;
          }
        }

        /* Justify paragraphs and add indent */
        .overview-text p {
          text-align: justify;
          text-indent: 2em;
          line-height: 1.8;
          margin-bottom: 1.5em;
        }

        #scrollToTop {
          display: none;
          position: fixed;
          bottom: 70px;
          right: 20px;
          background-color: #222;
          color: #fff;
          border: none;
          padding: 14px 16px;
          font-size: 18px;
          cursor: pointer;
          z-index: 999;
          box-shadow: 0 4px 6px rgba(0,0,0,0.2);
          transition: background-color 0.3s ease;
        }

        #scrollToTop:hover {
          background-color: #555;
        }

        #scrollToTop span {
          font-weight: bold;
        }

    