:root {
    /* Color Palette */
    --primary: #002E7D;
    --accent: #e4c829;
    --dark: #0a0f1a;
    --light: #f4f7fa;
    --white: #ffffff;
    --text: #334155;

    /* Effects */
    --glass: rgba(255, 255, 255, 0.03);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography Scale --- */
h1 { font-size: clamp(2.5rem, 8vw, 6rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
p { font-size: clamp(1rem, 1.2vw, 1.25rem); }

/* --- Modern Navbar --- */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 1rem 1.5rem;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    padding: 0.6rem 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 100%; /* Use full available width */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-break { display: none; }

.logo {
    height: 50px;
    width: auto;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text .company-en { font-weight: 800; color: var(--white); font-size: 1.1rem; letter-spacing: 0.5px; }

.brand-text .company-local {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.9;
}

.navbar.scrolled .brand-text .company-en,
.navbar.scrolled .brand-text .company-local {
    color: var(--primary);
}

.navbar.scrolled .brand-text .company-local {
    opacity: 0.8;
}

/* --- Navigation Links --- */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li { position: relative; list-style: none; }

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 320px; /* increased for full listing */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}

.nav-links li.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--text) !important;
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary) !important;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links li.open > a .bi-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-links a i {
    color: var(--primary) !important;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--accent) !important;
}
.navbar.scrolled .login-link {
    color: var(--primary) !important;
    border-color: var(--primary);
}

.navbar.scrolled .login-link:hover {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
}

.navbar.scrolled .menu-toggle {
    color: var(--primary);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 46, 125, 0.9), rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 90%;
    max-width: 1400px;
    padding: 0;
}

.highlight { color: var(--accent); position: relative; }

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: var(--accent);
}


/* --- Hero Actions --- */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- Modern Card Design --- */
.modern-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #e6eaf0;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modern-card:hover {
    box-shadow: 0 20px 40px rgba(0, 46, 125, 0.12);
    border-color: var(--accent);
}

.modern-card:hover .card-icon {
    color: var(--accent);
}

.square-card {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.square-card p {
    font-size: 1.2rem;
    line-height: 1.4;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

/* --- Grid System --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.grid-4 > .page-card { align-self: stretch; }

/* --- Page Cards (Explore Our Pages) --- */
.page-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #e6eaf0;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.page-card:hover {
    box-shadow: 0 20px 40px rgba(0, 46, 125, 0.12);
    border-color: var(--accent);
}

.page-card-icon {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

/* Quality section 5-star rating */
#quality-policy .page-card-icon {
    font-size: 1.8rem;
    display: flex;
    gap: 0.2rem;
    justify-content: center;
}

.page-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.page-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: var(--text);
    opacity: 0.9;
}

.page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
    transition: var(--transition);
}

.page-card:hover .page-card-icon {
    color: var(--accent);
}

/* --- Heroes --- */
.hero-mini {
    height: 70vh;
    min-height: 550px;
    background: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding: 100px 5% 50px;
}

.hero-mini .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,46,125,0.95) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-mini .hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1000px;
}

.hero-content p {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    max-width: 800px;
    margin: 1.5rem auto 0;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
}

/* --- Split Section for Large Screens --- */
.split-section { padding: 10rem 5%; }
.split-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.floating { animation: float 6s ease-in-out infinite; width: 100%; }

/* --- Animation Classes --- */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.sub {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.sub.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Button Styles --- */
.btn-main, .btn-outline {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-main {
    background: var(--accent);
    color: var(--primary);
}

.btn-main:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-cta {
    background: var(--accent);
    color: var(--primary) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-cta:hover {
    background: var(--primary);
    color: var(--white) !important;
}

.login-link {
    color: var(--white) !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid var(--accent);
    transition: var(--transition);
}

.login-link:hover {
    background: var(--accent);
    color: var(--primary) !important;
}

/* --- Footer Styles --- */
.modern-footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-info {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 0.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Section Styles --- */
.section {
    padding: 8rem 5%;
}

.full-width-section {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

/* --- Dynamic Slideshow --- */
#vibe-gallery {
    background: linear-gradient(135deg, rgba(0, 46, 125, 0.15) 0%, rgba(228, 200, 41, 0.08) 100%);
    padding-top: 2rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: visible;
}

#vibe-gallery h2 { color: var(--primary); }
#vibe-gallery .subtitle { color: var(--text); opacity: 0.8; }

.slideshow-container {
    width: 100%;
    position: relative;
}

.slideshow-track {
    display: flex;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform;
}

.slideshow-item {
    flex: 0 0 50%; /* Show two at a time, edge to edge */
    height: 500px;
    position: relative;
    overflow: hidden;
}

.slideshow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.slideshow-item:hover img {
    transform: scale(1.1);
}

.slideshow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6rem 3rem 3rem;
    background: linear-gradient(to top, rgba(0, 46, 125, 0.9), transparent);
    color: var(--white);
    opacity: 1;
    transform: translateY(0);
}

.slideshow-caption h4 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slideshow-caption p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
}

/* Slideshow Navigation Buttons */
.slideshow-nav {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}

.slideshow-nav:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-nav i {
    font-size: 1.2rem;
    color: var(--primary);
}

.slideshow-nav-prev {
    left: 20px;
}

.slideshow-nav-next {
    right: 20px;
}

/* Show navigation buttons only on desktop */
@media (min-width: 993px) {
    .slideshow-nav {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 992px) {
    .slideshow-item {
        flex: 0 0 100%; /* Show one at a time on smaller screens */
        height: 400px;
    }
}

@media (max-width: 768px) {
    .slideshow-item {
        height: 300px;
    }
    .slideshow-caption h4 { font-size: 1.5rem; }
    .slideshow-caption p { font-size: 1rem; }
}

.container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.8;
    margin-top: 1rem;
}

.bg-light {
    background: var(--light);
}

.split-img-box {
    position: relative;
}

.split-text-box {
    padding: 2rem 0;
}

.split-text-box h2 {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.link-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    transition: var(--transition);
}

.link-more:hover {
    color: var(--accent);
    gap: 1rem;
}

/* --- Mobile Navigation --- */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }
    .menu-toggle { 
        display: block; 
        color: var(--white);
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1200;
        font-size: 1.8rem;
        position: relative;
        margin-left: auto;
    }
    .menu-toggle i {
        display: block;
        line-height: 1;
    }
    .nav-container {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar.menu-active {
        background: var(--white) !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .navbar.menu-active .brand-text .company-en,
    .navbar.menu-active .brand-text .company-local {
        color: var(--primary) !important;
    }
    .navbar.menu-active .menu-toggle {
        color: var(--primary) !important;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        height: auto;
        max-height: none;
        overflow-y: visible;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        color: var(--primary) !important;
        padding: 0.8rem 1.5rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f4f9;
        font-size: 1rem;
    }
    .nav-links a:hover {
        background: var(--light);
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0;
        background: #f8fafc;
        width: 100%;
    }
    .nav-links li.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        padding-left: 3rem;
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #edf2f7;
    }
    .btn-cta {
        margin: 1rem auto;
        text-align: center;
        border-radius: 8px;
        display: block;
        width: fit-content;
        min-width: 140px;
        padding: 0.75rem 1.2rem;
    }
    .login-link {
        margin: 0.5rem auto 1rem;
        text-align: center;
        border: 2px solid var(--primary) !important;
        color: var(--primary) !important;
        display: inline-block;
        width: fit-content;
        min-width: 100px;
        padding: 0.6rem 1rem;
        border-radius: 25px;
        background: transparent;
        text-decoration: none !important;
        font-weight: 600;
        transition: var(--transition);
    }
    
    .brand-text .company-en { font-size: 0.9rem; white-space: nowrap; }
    .brand-text .company-local { font-size: 0.7rem; white-space: nowrap; }
    .logo { height: 50px; }
    .brand { gap: 0.5rem; max-width: 75%; }

    .section { padding: 4rem 1.5rem; }
    .split-section { padding: 4rem 1.5rem; }
    .customer-marquee {
        gap: 1.5rem;
        flex-direction: column;
    }
    .customer-item {
        width: 120px;
        height: 120px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 6px 0 15px rgba(0, 46, 125, 0.4);
    }
    .customer-name {
        font-size: 1.1rem;
    }
    .customer-subtitle {
        font-size: 0.7rem;
        display: block;
        margin-top: 2px;
    }
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand-text { display: flex; flex-direction: column; }
    .brand-text .company-en { font-size: 0.5rem; white-space: normal; max-width: none; line-height: 1.2; }
    .mobile-break { display: block; }
    .brand-text .company-local { font-size: 0.55rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
    .logo { height: 45px; }
    .brand { 
        gap: 0.3rem; 
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    .navbar { padding: 0.6rem 0.8rem; }
    
    .hero-mini { height: auto; min-height: 450px; padding: 120px 1.5rem 60px; }
    .hero-content h1 { font-size: 2.2rem; margin-bottom: 1rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
    .btn-main, .btn-outline { width: 100%; text-align: center; }
    
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.5rem; }
    .modern-card, .page-card { padding: 2rem 1.5rem; }
    
    .slideshow-item { height: 280px; }
    .slideshow-caption h4 { font-size: 1.4rem; }
    
    .split-img-box img { max-width: 80%; margin: 0 auto; display: block; }
    .split-text-box h2 { font-size: 1.8rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Customers Section --- */
.customers-showcase {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.customer-marquee {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.customer-item {
    position: relative;
    text-align: center;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,1));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 8px 0 20px rgba(0, 46, 125, 0.4);
    transition: var(--transition);
}

.customer-item:hover {
    transform: translateY(-5px);
    box-shadow: 8px 0 25px rgba(0, 46, 125, 0.6);
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,1));
}

.customer-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.customer-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: black;
    opacity: 0.8;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(228, 200, 41, 0.1), rgba(0, 46, 125, 0.1));
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

/* --- Responsive rules for Explore Our Pages --- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .page-card { padding: 1.25rem; }
}
.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.circle-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 25%;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, rgba(0, 46, 125, 0.08), rgba(228, 200, 41, 0.12));
}

.circle-5 {
    width: 40px;
    height: 40px;
    top: 70%;
    left: 30%;
    animation-delay: 4.5s;
    background: linear-gradient(135deg, rgba(228, 200, 41, 0.15), rgba(0, 46, 125, 0.05));
}

.circle-6 {
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 10%;
    animation-delay: 2.5s;
    background: linear-gradient(135deg, rgba(0, 46, 125, 0.12), rgba(228, 200, 41, 0.08));
}

.circle-7 {
    width: 50px;
    height: 50px;
    top: 40%;
    left: 5%;
    animation-delay: 5.5s;
    background: linear-gradient(135deg, rgba(228, 200, 41, 0.1), rgba(0, 46, 125, 0.1));
}

.circle-8 {
    width: 70px;
    height: 70px;
    bottom: 10%;
    right: 30%;
    animation-delay: 7s;
    background: linear-gradient(135deg, rgba(0, 46, 125, 0.09), rgba(228, 200, 41, 0.11));
}

/* --- Media Queries --- */
/* UHD Support */
@media (min-width: 2000px) {
    .nav-container, .container { max-width: 2200px; }
}

/* Tablet */
@media (max-width: 992px) {
    .split-container { grid-template-columns: 1fr; text-align: center; }
}

/* --- Laptop & Small Desktop Refinements --- */
@media (max-width: 1440px) {
    .container { max-width: 1250px; padding: 0 4%; }
    h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
    h2 { font-size: clamp(2rem, 4vw, 3rem); }
    .section { padding: 5rem 5%; }
    .split-section { padding: 5rem 5%; }
    .split-container { gap: 4rem; }
    .slideshow-item { height: 450px; }
    
    /* Pages Card Small Adjustments for 1366p and similar */
    .grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
    .page-card { padding: 2.2rem 1.5rem; }
    .page-card-icon { font-size: 2.3rem; margin-bottom: 0.8rem; }
    .page-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
    .page-card p { font-size: 1rem; line-height: 1.5; margin-bottom: 1rem; }
}

@media (max-width: 1200px) {
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.9rem; }
    .brand-text .company-en { font-size: 1rem; }
    .brand-text .company-local { font-size: 0.75rem; }
    
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } /* Switch to 2 columns earlier for laptop breathing room */
    .grid-2 { gap: 2rem; }
    .split-container { gap: 3rem; }
    
    .hero-content h1 { font-size: clamp(2.5rem, 6vw, 3.8rem); }
    .slideshow-item { height: 380px; }
}

@media (max-width: 1024px) {
    .container { max-width: 100%; }
    .section { padding: 4rem 5%; }
    .split-section { padding: 4rem 5%; }
}

/* --- Keyframes --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
