<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
    font-size: 16px;
    line-height: 1.6;
}
*, *:before, *:after {
    box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 0 0 10px 0;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.2rem; }

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.top-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-text {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #222;
}
.dots {
    color: #FFA726;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
}
.contact-info {
    display: flex;
    gap: 30px;
    font-size: 0.98rem;
    color: #222;
}
.contact-info i {
    color: #FFA726;
    margin-right: 6px;
}
.apply-btn {
    background: #FFA726;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.apply-btn:hover {
    background: #e5941a;
}

/* Navigation */
.navbar {
    background: #181818;
    padding: 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 18px 0;
    display: block;
    transition: color 0.2s;
}
.nav-menu li a:hover {
    color: #FFA726;
}
.nav-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    font-size: 1.2rem;
}
.mobile-menu {
    display: none;
    cursor: pointer;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    min-height: 650px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s, transform 0.8s;
    z-index: 1;
    display: flex;
    align-items: stretch;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    pointer-events: auto;
}
.hero-slide:not(.active) {
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.hero-content-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 420px;
    max-width: 600px;
    padding: 60px 0 60px 30px;
}
.hero-content-left .badge {
    background: #FFA726;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.hero-content-left .company {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 8px;
}
.hero-content-left h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 18px 0 10px 0;
    line-height: 1.15;
    color: #fff;
}
.hero-desc {
    color: #f3f3f3;
    font-size: 1.15rem;
    margin-bottom: 28px;
    margin-top: 0;
    max-width: 90%;
}
.hero-btns {
    display: flex;
    gap: 18px;
}
.hero-btn {
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    outline: none;
    display: inline-block;
}
.hero-btn.primary {
    background: #FFA726;
    color: #fff;
}
.hero-btn.primary:hover {
    background: #e5941a;
}
.hero-btn.secondary {
    background: #fff;
    color: #FFA726;
    border: 2px solid #FFA726;
}
.hero-btn.secondary:hover {
    background: #FFA726;
    color: #fff;
}
.hero-slider-nav {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    display: inline-block;
    margin-right: 4px;
    transition: opacity 0.2s, background 0.2s;
}
.slider-dot.active {
    background: #FFA726;
    opacity: 1;
}
.slider-arrow {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 8px;
    transition: background 0.2s;
}
.slider-arrow:hover {
    background: #FFA726;
    color: #fff;
}

/* Services Section */
.services {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: -60px;
    background: none;
    position: relative;
    z-index: 2;
}
.service-card {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-radius: 10px;
    flex: 1;
    padding: 32px 18px 24px 18px;
    text-align: center;
    min-width: 180px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.service-card i {
    font-size: 2.2rem;
    color: #FFA726;
    margin-bottom: 12px;
}
.service-card h3 {
    margin: 10px 0 6px 0;
    font-size: 1.15rem;
    font-weight: 700;
}
.service-card p {
    color: #666;
    font-size: 0.98rem;
}

/* About Section */
.about, .why-flex, .study-abroad {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 60px 0 40px 0;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.about-img, .why-right {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-img img, .why-right img {
    width: 90%;
    max-width: 800px;
    min-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.about-content, .why-left {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 0 32px;
}
.section-badge {
    background: #FFE0B2;
    color: #FFA726;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}
.about-content h2 {
    margin: 10px 0 12px 0;
    font-size: 2rem;
    font-weight: 700;
}
.about-content p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 18px;
}
.read-more-btn {
    background: #FFA726;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.read-more-btn:hover {
    background: #e5941a;
}

/* Why Work With Us */
.why-work {
    background: #222;
    color: #fff;
    padding: 60px 0 40px 0;
    position: relative;
}
.why-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.why-left {
    flex: 1.2;
}
.why-left h2 {
    margin: 10px 0 12px 0;
    font-size: 2rem;
    font-weight: 700;
}
.why-features {
    margin: 18px 0 18px 0;
}
.feature-card {
    background: #333;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}
.feature-card.orange {
    background: #FFA726;
    color: #fff;
}

/* Study Abroad Section */
.study-abroad {
    margin: 60px 0 40px 0;
    text-align: center;
}
.study-abroad h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0 24px 0;
}
.flags {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 18px;
    overflow-x: auto;
}
.country-card {
    position: relative;
    width: 300px;
    height: 300px;
    flex: 0 0 300px;
    margin: 0 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}
.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
.country-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 2;
}
.country-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    border-radius: 20px;
}
.country-card:hover .country-overlay {
    opacity: 1;
}
.country-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.country-btn {
    background: #FFA726;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
    outline: none;
    font-size: 1rem;
}
.country-btn:hover {
    background: #fff;
    color: #FFA726;
    box-shadow: 0 4px 16px rgba(255,167,38,0.18);
    transform: translateY(-2px) scale(1.04);
}

/* Mobile countries slider */
@media (max-width: 900px) {
    .hero-slider, .hero-slide {
        min-height: 400px;
    }
    .flags.countries-slider {
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .country-card {
        min-width: 90vw;
        max-width: 90vw;
        width: 90vw;
        height: 250px;
        margin: 0 8px;
        scroll-snap-align: center;
    }
    .country-card img {
        height: 100%;
    }
    .hero-content-left h1 {
        font-size: 1.5rem;
    }
    .hero-desc {
        font-size: 0.98rem;
    }
    .hero-content-left .badge,
    .hero-content-left .company {
        font-size: 0.85rem;
    }
    .hero-btn {
        font-size: 0.95rem;
        padding: 9px 18px;
    }
    .hero-content-left .badge {
        display: none;
    }
    .services.container {
        margin-top: 20px;
    }
    .top-bar .container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
        padding: 0 12px;
    }
    .logo {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        min-width: 0;
    }
    .logo img {
        height: 44px !important;
        max-width: 140px !important;
        background: none !important;
        box-shadow: none !important;
    }
    .mobile-menu {
        display: block !important;
        font-size: 2rem;
        color: #222 !important;
        z-index: 3000;
        position: relative;
        background: none !important;
        box-shadow: none !important;
        margin-left: 0 !important;
        align-self: center;
        flex: none;
        min-width: 44px;
        min-height: 44px;
        line-height: 44px;
        text-align: center;
    }
    .contact-info,
    .apply-btn,
    .nav-menu,
    .nav-icons .fa-search {
        display: none !important;
    }
    .top-bar .container &gt; *:not(.logo):not(.mobile-menu) {
        display: none !important;
    }
    .top-bar .logo {
        display: none !important;
    }
    .mobile-nav-inner {
        height: 64px;
        padding-top: 8px;
        padding-bottom: 20px;
        align-items: center;
    }
    .logo img {
        height: 44px !important;
        max-width: 140px !important;
    }
    .top-bar,
    .mobile-nav,
    .mobile-nav-inner {
        border: none !important;
        box-shadow: none !important;
    }
    .top-bar {
        border-bottom: none !important;
        box-shadow: none !important;
    }
}
@media (max-width: 600px) {
    .country-card {
        min-width: 98vw;
        max-width: 98vw;
        width: 98vw;
        height: 200px;
    }
}

/* Hero content left alignment to match services */
.hero-content-left.container {
    padding-left: 0;
    margin-left: 0;
    max-width: 1200px;
}
@media (min-width: 1200px) {
    .hero-content-left.container {
        padding-left: 5%;
    }
}

/* Courses Section */
.courses {
    background: #222;
    color: #fff;
    padding: 60px 0 30px 0;
    position: relative;
}
.courses-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.courses-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0 0;
}
.get-in-touch-btn {
    background: #fff;
    color: #FFA726;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    border: 2px solid #FFA726;
}
.get-in-touch-btn:hover {
    background: #FFA726;
    color: #fff;
}
.partner-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.partner-logos img {
    width: 120px;
    height: 40px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 6px 10px;
    flex: 0 0 auto;
    transition: transform 0.2s, box-shadow 0.2s;
}
.partner-logos img:hover {
    transform: scale(1.12) rotate(2deg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* Footer */
footer {
    background: #181818;
    color: #fff;
    padding: 24px 0 10px 0;
    position: relative;
    text-align: center;
}
.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-social a {
    color: #fff;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #FFA726;
}
.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #FFA726;
    color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: none;
    z-index: 100;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about, .why-flex {
        flex-direction: column;
        gap: 24px;
    }
    .about-img, .why-right, .about-content, .why-left {
        max-width: 100%;
        padding: 0;
    }
    .about-img img, .why-right img {
        width: 100%;
        max-width: 100%;
    }
    .services {
        flex-direction: column;
        gap: 18px;
        margin-top: -30px;
    }
}
@media (max-width: 768px) {
    .container {
        width: 98%;
    }
    .top-bar .container, .footer-flex {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #181818;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 10;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .flags {
        flex-direction: column;
        gap: 24px;
    }
    .flags img {
        width: 100%;
        max-width: 350px;
        height: 200px;
    }
    .about-img img {
        max-width: 100%;
        min-width: 0;
    }
}
@media (max-width: 480px) {
    .hero-content h1, .about-content h2, .why-left h2, .courses-left h2, .study-abroad h2 {
        font-size: 1.2rem;
    }
    .about-img img, .why-right img {
        width: 100%;
        min-width: 0;
    }
    .service-card {
        padding: 18px 8px 14px 8px;
    }
}

/* Header logo image vertical alignment */
.logo img {
    display: block;
    height: 48px;
    width: auto;
    margin: 0;
}

/* Hide hero slider navigation */
.hero-slider-nav {
    display: none !important;
}

/* Section fade-in animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: none; }
}
section, .about, .why-flex, .study-abroad, .courses {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
}

/* Animate only when in viewport (JS will add .animate-in) */
.animate-in {
    opacity: 1 !important;
    animation: fadeInUp 1s ease forwards !important;
}

/* Hero slider fade/slide animation */
.hero-slide {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s, transform 0.8s;
    display: flex;
}
.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}
.hero-slide:not(.active) {
    z-index: 1;
    pointer-events: none;
}

/* Responsive adjustments for large flag images */
@media (max-width: 1200px) {
    .flags img {
        width: 250px;
        height: 250px;
    }
    .about-img img {
        max-width: 500px;
        min-width: 200px;
    }
}
@media (max-width: 768px) {
    .flags {
        flex-direction: column;
        gap: 24px;
    }
    .flags img {
        width: 100%;
        max-width: 350px;
        height: 200px;
    }
    .about-img img {
        max-width: 100%;
        min-width: 0;
    }
}

/* Button hover */
.hero-btn, .get-in-touch-btn, .read-more-btn, .apply-btn {
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-btn:hover, .get-in-touch-btn:hover, .read-more-btn:hover, .apply-btn:hover {
    box-shadow: 0 4px 16px rgba(255,167,38,0.18);
    transform: translateY(-2px) scale(1.04);
}

/* Padding for all content on mobile (except hero/footer) */
@media (max-width: 900px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .services, .about, .why-work, .study-abroad, .courses {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Hide scrollbars for carousels */
.flags, .partner-logos {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
.flags::-webkit-scrollbar, .partner-logos::-webkit-scrollbar {
    display: none;
}

/* Prevent .flags and .partner-logos from exceeding viewport */
.flags, .partner-logos {
    max-width: 100vw;
    overflow-x: auto;
}

/* Countries section: title/subtitle above images */
.study-abroad {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center;
}
.study-abroad .section-badge,
.study-abroad h2 {
    margin-left: 0;
    margin-right: 0;
}

/* Remove tilt/rotate on country hover */
.country-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.country-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 2;
}

/* Remove vertical scroll on .flags and .partner-logos */
.flags, .partner-logos {
    overflow-y: hidden;
}

/* Prevent horizontal scroll on all sections */
section, .about, .why-flex, .study-abroad, .courses {
    max-width: 100vw;
    overflow-x: hidden;
}

/* About section mobile fix: stack vertically, no overflow */
@media (max-width: 900px) {
    .about {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0;
        overflow: visible !important;
    }
    .about-img, .about-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }
    .about-img img {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
    }
}

section.hero-slider .hero-slide {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Sidebar styles */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2000;
    transition: opacity 0.3s;
}
.sidebar-menu {
    position: fixed;
    top: 0; right: -100vw;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: none !important;
    border: none !important;
    z-index: 2001;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    transition: right 0.3s;
}
.sidebar-menu.open {
    right: 0;
}
.sidebar-overlay.open {
    display: block;
    opacity: 1;
}
.sidebar-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 1.7rem;
    color: #222;
    cursor: pointer;
    z-index: 2002;
}
.sidebar-logo {
    margin-bottom: 18px;
    width: 100%;
    text-align: left;
}
.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    width: 100%;
}
.sidebar-nav li {
    margin-bottom: 18px;
}
.sidebar-nav a {
    color: #222;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.sidebar-nav a:hover {
    color: #FFA726;
}
.sidebar-contact {
    margin-bottom: 18px;
    color: #444;
    font-size: 1rem;
}
.sidebar-contact i {
    color: #FFA726;
    margin-right: 8px;
}
.sidebar-apply {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 500px) {
    .sidebar-menu {
        width: 100vw;
        max-width: 100vw;
        padding: 32px 10px 24px 10px;
        right: -100vw;
    }
    .logo img {
        height: 34px !important;
        max-width: 110px !important;
    }
}

.mobile-hamburger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: #000;
    background: none !important;
    box-shadow: none !important;
    margin-left: auto;
    align-self: center;
    z-index: 3000;
}
@media (max-width: 900px) {
    .mobile-hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem !important;
        color: #000 !important;
        background: none !important;
        box-shadow: none !important;
        z-index: 3000 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        height: 48px !important;
        width: 48px !important;
        cursor: pointer;
    }
    .top-bar .container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100%;
        padding: 0 12px;
    }
    .logo {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
    }
    .logo img {
        height: 44px !important;
        max-width: 140px !important;
    }
}
@media (min-width: 901px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav {
    display: none;
    width: 100%;
    background: #fff;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    height: 56px;
    box-sizing: border-box;
    border: none !important;
    box-shadow: none !important;
}
.mobile-nav-inner {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.mobile-hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem !important;
    color: #000 !important;
    background: none !important;
    box-shadow: none !important;
    z-index: 3000 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    height: 48px !important;
    width: 48px !important;
    cursor: pointer;
}
.top-bar .container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100%;
    padding: 0 12px;
}
.logo {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}
.logo img {
    height: 44px !important;
    max-width: 140px !important;
}

@media (max-width: 900px) {
    .navbar,
    .contact-info,
    .apply-btn {
        display: none !important;
    }
    .mobile-nav {
        display: flex !important;
        width: 100%;
        background: #fff;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
        height: 56px;
        box-sizing: border-box;
        border-bottom: none !important;
    }
    .mobile-nav-inner {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    .mobile-hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem !important;
        color: #000 !important;
        background: none !important;
        box-shadow: none !important;
        z-index: 3000 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        height: 48px !important;
        width: 48px !important;
        cursor: pointer;
    }
    .top-bar .container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100%;
        padding: 0 12px;
    }
    .logo {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
    }
    .logo img {
        height: 44px !important;
        max-width: 140px !important;
    }
}
@media (min-width: 901px) {
    .mobile-nav {
        display: none !important;
    }
}

/* Services Page Styles */
.services-hero {
    background: #23272a;
    color: #fff;
    padding: 0;
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
}
.services-hero-bg {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    position: relative;
}
.services-hero-content {
    padding: 48px 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.services-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}
.breadcrumb {
    color: #fff;
    font-size: 1rem;
    opacity: 0.8;
}
.breadcrumb a {
    color: #fff;
    text-decoration: underline;
    opacity: 0.9;
}
.breadcrumb span {
    color: #FFA726;
    opacity: 1;
}

.services-main {
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
}
.services-main-header {
    margin: 40px 0 32px 0;
}
.services-main-header .section-badge {
    margin-bottom: 10px;
}
.services-main-header h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
}
.service-card-lg {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: left;
}
.service-card-lg:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-6px) scale(1.02);
}
.service-card-lg img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.service-card-content {
    padding: 24px 20px 20px 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.service-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.service-card-content p {
    color: #444;
    font-size: 1rem;
    margin: 0;
}
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .services-hero-content {
        padding: 32px 0 18px 0;
    }
    .services-main-header {
        margin: 24px 0 18px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .service-card-lg img {
        height: 160px;
    }
    .service-card-content {
        padding: 16px 12px 14px 12px;
    }
}

.about-story.container {
    margin-top: 40px;
    margin-bottom: 32px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}
.about-story-img img {
    width: 100%;
    max-width: 480px;
    min-width: 320px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: block;
    margin: 0 auto;
}
.about-story-content {
    max-width: 500px;
    margin: 0 auto;
}

.about-hero {
    background: #23272a;
    color: #fff;
    padding: 0;
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
}
.about-hero-bg {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    position: relative;
}
.about-hero-content {
    padding: 48px 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.about-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}
.about-hero .breadcrumb {
    color: #fff;
    font-size: 1rem;
    opacity: 0.8;
}
.about-hero .breadcrumb a {
    color: #fff;
    text-decoration: underline;
    opacity: 0.9;
}
.about-hero .breadcrumb span {
    color: #FFA726;
    opacity: 1;
}

@media (max-width: 900px) {
    .about-story-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
        align-items: stretch;
    }
}

.contact-main {
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
}
.contact-header {
    margin: 40px 0 32px 0;
}
.contact-header .section-badge {
    margin-bottom: 10px;
}
.contact-header h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}
.contact-subheading {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0 8px 0;
    color: #FFA726;
}
.contact-desc {
    color: #444;
    font-size: 1rem;
    margin: 0 auto 18px auto;
    max-width: 600px;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
    justify-content: center;
}
.contact-info-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 20px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.contact-info-block:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-6px) scale(1.02);
}
.contact-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFA726;
    margin-bottom: 10px;
}
.contact-info-detail {
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    word-break: break-word;
}
.contact-info-detail a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-info-detail a:hover {
    color: #FFA726;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .contact-info-block {
        min-width: 0;
    }
}
@media (min-width: 901px) {
    .contact-info-block {
        margin-bottom: 50px;
    }
}

.terms-main {
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
}
.terms-header {
    margin: 40px 0 32px 0;
}
.terms-header .section-badge {
    margin-bottom: 10px;
}
.terms-header h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}
.terms-desc {
    color: #444;
    font-size: 1rem;
    margin: 0 auto 18px auto;
    max-width: 600px;
}
.terms-list {
    list-style: disc inside;
    text-align: left;
    max-width: 800px;
    margin: 32px auto 0 auto;
    padding: 0 20px;
}
.terms-list li {
    color: #222;
    font-size: 1.08rem;
    margin-bottom: 18px;
    line-height: 1.7;
}
@media (max-width: 700px) {
    .terms-list {
        padding: 0 4px;
    }
    .terms-header {
        margin: 24px 0 18px 0;
    }
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #FFA726;
    text-decoration: none;
} </pre></body></html>