/* Base & Variables */
:root {
    --ges-primary: #1E3A8A;
    --ges-secondary: #3B82F6;
    --ges-accent: #F59E0B;
    --ges-text-dark: #0F172A;
    --ges-text-light: #475569;
    --ges-bg: #F8FAFC;
    --ges-surface: #FFFFFF;

    --ges-radius-xl: 20px;
    --ges-radius-lg: 16px;
    --ges-radius-md: 12px;

    --ges-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --ges-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --ges-shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ges-text-dark);
    background-color: var(--ges-bg);
}

/* -------- Cinematic Welcome Section -------- */
.ges-welcome-cinematic {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.ges-container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.ges-welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Visuals Composition */
.ges-welcome-visuals {
    position: relative;
    height: 700px;
}

.ges-main-frame {
    position: absolute;
    top: 60px;
    left: 0;
    width: 85%;
    height: 550px;
    z-index: 2;
    background: #f8f9fa;
}

.ges-frame-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.ges-frame-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    border-top: 6px solid var(--ges-secondary);
    border-left: 6px solid var(--ges-secondary);
    z-index: 1;
}

.ges-sub-frame {
    position: absolute;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 3;
}

.ges-sub-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.frame-top {
    top: 0;
    right: 0;
    width: 320px;
    height: 220px;
    transform: translateY(-20px);
}

.frame-bottom {
    bottom: 20px;
    right: -40px;
    width: 380px;
    height: 280px;
}

.ges-floating-badge-new {
    position: absolute;
    bottom: 80px;
    left: -50px;
    z-index: 10;
    background: #000;
    color: #fff;
    padding: 35px;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.badge-year {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ges-secondary);
    line-height: 0.9;
    display: block;
}

.badge-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 5px;
    display: block;
}

/* Content Area */
/* -------- Professional Editorial Narrative -------- */
.ges-editorial-narrative {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: left;
}

.ges-narrative-header {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.ges-narrative-header .ges-title-xl {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.8rem);
    font-weight: 800;
    line-height: 2;
    padding-bottom: 10px;
    margin-bottom: -10px; /* Offset the padding extra spacing */
    white-space: nowrap;
    background: linear-gradient(90deg, var(--ges-primary) 0%, var(--ges-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.ges-branding-seal-animated {
    width: 220px;
    height: 110px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 15px 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: branding-ambient-tilt 8s ease-in-out infinite;
}

/* Elegant Shimmer Sweep */
.ges-branding-seal-animated::before {
    content: '';
    position: absolute;
    top: 0; 
    left: -100%; 
    width: 50%; 
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: branding-shimmer 6s infinite;
}

.ges-branding-seal-animated img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

@keyframes branding-ambient-tilt {
    0%, 100% { transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(0); }
    50% { transform: perspective(1000px) rotateX(-2deg) rotateY(2deg) translateY(-8px); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.6); }
}

@keyframes branding-shimmer {
    0%, 10% { left: -100%; opacity: 0; }
    20% { opacity: 1; }
    40%, 100% { left: 200%; opacity: 0; }
}

.ges-narrative-prose {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ges-narrative-prose p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0,0,0,0.7);
    margin: 0;
}

.lead-prose {
    font-size: 1.25rem !important;
    color: #000 !important;
    font-weight: 500;
}

.prose-divider {
    width: 60px;
    height: 4px;
    background: var(--ges-secondary);
    border-radius: 2px;
    margin: 5px 0;
}

.prose-highlight-box {
    background: rgba(0, 88, 169, 0.03);
    border-left: 4px solid var(--ges-primary);
    padding: 25px 30px;
    border-radius: 0 8px 8px 0;
    margin-top: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.box-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--ges-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.box-icon svg {
    width: 24px;
    height: 24px;
}

.prose-highlight-box p {
    color: #000;
    font-weight: 500;
    font-size: 1.15rem;
}

.ges-welcome-actions {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .ges-narrative-header {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .ges-branding-seal-animated {
        width: 100px;
        height: 100px;
    }
    .ges-narrative-header .ges-title-xl {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .ges-narrative-header .ges-title-xl { font-size: 2.5rem; }
    .prose-highlight-box { flex-direction: column; gap: 15px; padding: 20px; }
}

.ges-btn-cinematic {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--ges-primary);
    color: #fff;
    padding: 22px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s ease;
}

.ges-btn-cinematic:hover {
    background: var(--ges-secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.ges-btn-cinematic svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.ges-btn-cinematic:hover svg {
    transform: translateX(8px);
}

/* -------- High-Impact Visual Storyteller Hero Slider -------- */
.story-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background: #000;
    overflow: hidden;
    user-select: none;
}

.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease, visibility 1s;
    z-index: 1;
}

.story-slide.active {
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

/* Artistic Reveal Animation */
.story-slide-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
    transition: all 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.story-slide.active .story-slide-reveal {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}

.story-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.2);
    transition: transform 12s cubic-bezier(0.1, 0.1, 0.1, 1);
}

.story-slide.active .story-slide-image {
    transform: scale(1);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 2;
}

.story-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    z-index: 10;
}

.story-inner {
    max-width: 900px;
}

/* Staggered Text Reveals */
.reveal-text {
    overflow: hidden;
    display: block;
}

.reveal-text span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-slide.active .reveal-text span {
    transform: translateY(0);
}

.story-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ges-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 25px;
}

.story-slide.active .story-tag span { transition-delay: 0.4s; }

.story-title {
    font-family: 'Outfit', sans-serif;
    font-size: 6.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 35px;
    letter-spacing: -0.04em;
}

.story-highlight {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
    position: relative;
}

.story-slide.active .story-title span { transition-delay: 0.6s; }

.story-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 50px;
    max-width: 600px;
}

.story-slide.active .story-desc span { transition-delay: 0.8s; }

.story-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.story-slide.active .story-actions span { transition-delay: 1s; }

/* Artistic Buttons */
.story-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.story-btn.primary {
    background: #fff;
    color: #000;
    padding: 24px 50px;
    border-radius: 4px;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
}

.story-btn.primary:hover {
    background: var(--ges-secondary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.story-btn.link {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-btn.link:hover {
    color: var(--ges-secondary);
}

/* HUD Navigation */
.story-hud {
    position: absolute;
    bottom: 50px;
    right: 80px;
    z-index: 100;
}

.hud-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 25px 40px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hud-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

.hud-progress-bar {
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hud-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--ges-secondary);
}

.hud-controls {
    display: flex;
    gap: 20px;
}

.hud-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hud-btn:hover {
    color: var(--ges-secondary);
    transform: scale(1.1);
}

/* Decorative Elements */
.story-decor {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    opacity: 0.15;
    border: 1px solid #fff;
}

.decor-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    transform: scale(1.2);
}

.decor-2 {
    width: 300px;
    height: 600px;
    bottom: -150px;
    left: 10%;
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1400px) {
    .story-title { font-size: 5rem; }
    .story-content { padding: 0 60px; }
}

@media (max-width: 1024px) {
    .story-title { font-size: 4rem; }
    .story-desc { font-size: 1.2rem; max-width: 450px; }
    .story-hud { right: 40px; bottom: 40px; }
}

@media (max-width: 768px) {
    .story-content { padding: 0 30px; }
    .story-title { font-size: 3rem; margin-bottom: 25px; }
    .story-desc { font-size: 1.1rem; }
    .story-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
    .story-btn.primary { width: 100%; text-align: center; }
    .hud-inner { padding: 15px 25px; gap: 30px; }
    .hud-progress-bar { display: none; }
}


@media (max-width: 1200px) {
    .ges-welcome-grid { grid-template-columns: 1fr; gap: 100px; }
    .ges-welcome-visuals { height: 650px; max-width: 800px; margin: 0 auto; }
    .ges-welcome-content-new { text-align: center; }
    .ges-lead-text { margin-left: auto; margin-right: auto; }
    .ges-feature-cards { max-width: 900px; margin: 0 auto 60px; }
    .ges-welcome-actions { display: flex; justify-content: center; }
}

@media (max-width: 768px) {
    .ges-welcome-cinematic { padding: 80px 0; }
    .ges-container-wide { padding: 0 30px; }
    .ges-title-xl { font-size: 2.8rem; }
    .ges-welcome-visuals { height: 450px; }
    .ges-main-frame { width: 100%; height: 350px; }
    .frame-top, .frame-bottom { display: none; }
    .ges-floating-badge-new { left: 10px; bottom: -20px; padding: 20px; }
    .badge-year { font-size: 2.5rem; }
    .ges-feature-cards { grid-template-columns: 1fr; gap: 20px; }
}

/* -------- Split Layout Features Section -------- */
.ges-split-features {
    padding: 100px 0;
    background-color: #0b1120;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
    overflow: hidden;
    position: relative;
    background-image: 
        /* Building */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.07'%3E%3Cpath d='M3 21h18M3 7v14M21 7v14M6 21V7M18 21V7M9 21v-4a1 1 0 011-1h4a1 1 0 011 1v4M4 7h16M9 3h6v4H9z'/%3E%3C/svg%3E"),
        /* STEAM/Lightbulb */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.07'%3E%3Cpath d='M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z'/%3E%3C/svg%3E"),
        /* Safety/Shield */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.07'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"),
        /* Leaf/Organic */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.07'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 3.5 1 8a8.8 8.8 0 0 1-7 10z'/%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C5 12 5 15 11 20z'/%3E%3C/svg%3E"),
        /* Book */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.07'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E"),
        /* Flask */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.07'%3E%3Cpath d='M9 3h6v4l4 11a2 2 0 0 1-1.7 3H6.7A2 2 0 0 1 5 18l4-11V3z'/%3E%3C/svg%3E"),
        /* Medal/Trophy */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23eab308' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.07'%3E%3Ccircle cx='12' cy='8' r='7'/%3E%3Cpath d='M8.21 13.89L7 23l5-3 5 3-1.21-9.11'/%3E%3C/svg%3E"),
        /* Compass/Global */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.07'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M16.24 7.76l-2.12 6.36-6.36 2.12 2.12-6.36 6.36-2.12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 
        5% 15%, 90% 10%, 15% 85%, 85% 90%, 40% 5%, 60% 95%, 25% 45%, 75% 55%;
    background-size: 
        120px 120px, 100px 100px, 110px 110px, 95px 95px, 85px 85px, 130px 130px, 90px 90px, 105px 105px;
    animation: floatingFeaturesIcons 40s linear infinite;
}

@keyframes floatingFeaturesIcons {
    0% {
        background-position: 
            5% 15%, 90% 10%, 15% 85%, 85% 90%, 40% 5%, 60% 95%, 25% 45%, 75% 55%;
    }
    50% {
        background-position: 
            7% 18%, 88% 12%, 13% 83%, 87% 92%, 42% 3%, 58% 97%, 27% 43%, 73% 57%;
    }
    100% {
        background-position: 
            5% 15%, 90% 10%, 15% 85%, 85% 90%, 40% 5%, 60% 95%, 25% 45%, 75% 55%;
    }
}

.ges-split-features {
    padding: 100px 0;
    background-color: #0b1120;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.ges-split-features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ges-split-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Left Sidebar Sticky */
.ges-split-left {
    flex: 0 0 450px;
    position: relative;
}

.ges-split-sticky {
    position: sticky;
    top: 120px;
    padding-bottom: 40px;
}

.ges-split-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.split-dot {
    width: 8px;
    height: 8px;
    background: #3B82F6;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(59,130,246,0.7);
    animation: splitPulse 2s infinite;
}

@keyframes splitPulse {
    0% { box-shadow: 0 0 0 0 rgba(59,130,246,0.7); }
    70% { box-shadow: 0 0 0 6px rgba(59,130,246,0); }
    100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}

.ges-split-title {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.split-highlight {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ges-split-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 40px;
}

.ges-split-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-top: 30px;
    position: relative;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
}

.ges-split-action::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, transparent);
}

.split-action-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

.split-action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
}

.ges-split-action:hover .split-action-text {
    color: #3B82F6;
}

.ges-split-action:hover .split-action-icon {
    background: #fff;
    color: #000;
    transform: translateX(10px);
}

.split-action-icon svg {
    width: 20px;
    height: 20px;
}

/* Right Grid Area */
.ges-split-right {
    flex: 1;
}

.ges-split-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.split-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ges-icon-cards-section {
    padding: 0 0 100px 0;
    background-color: #0b1120;
    position: relative;
    z-index: 10;
}

.split-grid-4x1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .split-grid-4x1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .split-grid-4x1 {
        grid-template-columns: 1fr;
    }
    .split-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

.split-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    isolation: isolate;
}

/* Animated Glowing Border */
.split-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 5;
    pointer-events: none;
    transition: background 0.5s ease;
}

/* Shine effect */
.split-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 10;
    pointer-events: none;
}

.split-card.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
}

.split-card.hover-lift:hover::before {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6, #14B8A6, #3B82F6);
    background-size: 300% 300%;
    animation: borderAnimation 3s linear infinite;
}

.split-card.hover-lift:hover::after {
    left: 200%;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes borderAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Card Types */
.split-video {
    min-height: 650px;
    z-index: 5;
}

.split-video-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.split-video:hover {
    z-index: 5;
    box-shadow: none;
    background: #000;
}

.split-image {
    min-height: 300px;
}

.split-color {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

/* Media Backgrounds */
.split-bg-media {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.split-card:hover .split-bg-media {
    transform: scale(1.15) rotate(1.5deg);
}

.split-video:hover .split-bg-media {
    object-fit: cover;
    transform: none;
}

.split-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent;
    z-index: 2;
    transition: background 0.4s ease;
}

.split-card:hover .split-overlay-dark {
    background: transparent;
}

.split-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 2;
}

/* Content Layouts */
.split-content-center {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.split-content-center h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
}



.split-content-bottom {
    position: absolute;
    bottom: 40px; left: 40px; right: 40px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    gap: 25px;
}

.split-icon-glass {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.4s ease;
}

.split-card:hover .split-icon-glass {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255,255,255,0.25);
}

.split-icon-glass svg {
    width: 28px;
    height: 28px;
}

.split-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.split-text p {
    font-size: 1rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

/* Modern Aesthetic Icon Card Design */
.split-icon-card {
    min-height: 170px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #14B8A6, #8B5CF6);
    opacity: 0;
    transition: opacity 0.4s ease, height 0.4s ease;
    z-index: 10;
}

.split-icon-card:hover::before {
    opacity: 1;
    height: 6px;
}

.split-icon-card .split-card-bg {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.split-icon-card:hover .split-card-bg {
    opacity: 1;
    transform: scale(1.6);
}

.split-icon-wrapper {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}

.split-icon-card:hover .split-icon-wrapper {
    transform: translateY(-8px) rotate(6deg);
    box-shadow: 0 20px 35px rgba(139, 92, 246, 0.4);
}

.split-icon-wrapper svg {
    width: 34px;
    height: 34px;
    transition: transform 0.4s ease;
}

.split-icon-card:hover .split-icon-wrapper svg {
    transform: scale(1.1);
}

.split-icon-card .split-text {
    position: relative;
    z-index: 3;
}

.split-icon-card .split-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.4s ease;
}

.split-icon-card:hover .split-text h3 {
    transform: translateX(8px);
    color: #3B82F6;
}

.split-icon-card .split-text p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-icon-card:hover .split-text p {
    transform: translateX(8px);
    color: #fff;
}

/* Colored Cards Content */
.split-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}

.split-arrow {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
}

.split-card:hover .split-arrow {
    background: #fff;
    color: #000;
    transform: translate(5px, -5px);
}

.split-arrow svg {
    width: 24px;
    height: 24px;
}

.split-card-bottom {
    position: relative;
    z-index: 3;
}

.split-card-bottom h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.split-card-bottom p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.5;
}

.split-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
}

.color-steam { background: linear-gradient(135deg, #4f46e5, #3b82f6); }
.color-health { background: linear-gradient(135deg, #0d9488, #059669); }

/* Responsive */
@media (max-width: 1024px) {
    .ges-split-container {
        flex-direction: column;
        gap: 40px;
    }
    .ges-split-left {
        flex: none;
    }
    .ges-split-sticky {
        position: relative;
        top: 0;
        padding-bottom: 0;
    }
    .split-video {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .ges-split-features {
        padding: 80px 0;
    }
    .ges-split-title {
        font-size: 2.5rem;
    }
    .ges-split-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .split-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .split-content-bottom {
        left: 20px; right: 20px; bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .split-color {
        padding: 30px 20px;
    }
    .split-video {
        min-height: 300px;
    }
    .split-image {
        min-height: 400px;
    }
    .split-content-center h3 {
        font-size: 1.5rem;
    }
}


/* Extracted Block */
/* Custom Mobile Menu & Responsiveness */
.custom-mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.custom-mobile-menu-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #0058A9;
    transition: all 0.3s ease-in-out;
}

.modern-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    transition: left 0.3s ease;
    display: flex;
    pointer-events: none;
    /* Prevent blocking clicks when closed */
    visibility: hidden;
}

.modern-mobile-menu.open {
    left: 0;
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu-overlay {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.modern-mobile-menu.open .mobile-menu-overlay {
    display: block;
}

.mobile-menu-inner {
    width: 80%;
    max-width: 320px;
    background: #fff;
    height: 100%;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header img {
    max-height: 40px;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-dropdown {
    display: none;
    list-style: none;
    padding: 0;
    background: #f9f9f9;
}

.mobile-dropdown.open {
    display: block;
}

.mobile-dropdown a {
    padding: 12px 20px 12px 40px;
    font-size: 15px;
    color: #555;
}

.modern-header-menu .desktop-menu {
    display: block;
}

.desktop-menu.modern-custom-nav nav {
    display: block;
}

.desktop-menu.modern-custom-nav nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.desktop-menu.modern-custom-nav nav ul li {
    display: inline-block;
    position: relative;
}

.desktop-menu.modern-custom-nav nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.desktop-menu.modern-custom-nav nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    display: none;
    flex-direction: column;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 10;
}

.desktop-menu.modern-custom-nav nav ul li:hover ul {
    display: flex;
}

/* Desktop Container layout for Header */
.modern-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.modern-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modern-top-info {
    display: flex;
    gap: 15px;
}

@media (max-width: 1024px) {

    /* Header Responsive */
    .modern-header-menu .desktop-menu {
        display: none;
    }

    .custom-mobile-menu-btn {
        display: block;
    }

    .modern-top-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .modern-top-info span,
    .modern-top-info a {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .modern-header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px;
        gap: 0;
    }

    .modern-header-top .modern-header-container {
        flex-direction: column;
        padding: 10px 15px;
    }

    .modern-header-right {
        flex: 0 0 auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: auto;
    }

    .modern-header-branding {
        display: none;
    }

    .modern-header-logo img {
        max-width: 160px;
        /* Increased logo size */
    }

    .custom-mobile-menu-btn {
        margin-left: 10px;
    }


    /* Welcome Section Responsive */
    .ges-welcome-section .ges-container {
        display: flex;
        flex-direction: column;
        padding: 15px;
    }

    .ges-content-wrapper {
        padding: 10px;
        width: 100%;
    }

    .ges-title {
        font-size: 24px;
        /* Reduced to fit on one line */
        white-space: nowrap;
    }

    .ges-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .ges-hero-gallery {
        width: 100%;
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .ges-gallery-main img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .ges-gallery-secondary {
        display: none;
    }

    /* Hide floating images on mobile */
    .ges-gallery-badge {
        bottom: -10px;
        right: 0;
        padding: 10px;
        font-size: 12px;
    }

    /* Features Section Responsive */
    .ges-features-bento {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns */
        gap: 12px;
    }

    .ges-fc {
        width: 100%;
        min-height: 140px;
        /* Reduced height */
        padding: 15px;
    }

    .fc-video {
        grid-column: span 2;
        grid-row: span 1;
    }
}
@media (max-width: 640px) {
    .ges-features-bento {
        grid-template-columns: 1fr;
    }

    .fc-video {
        grid-row: span 2;
        display: none;
    }

    .ges-fc {
        min-height: 160px;
        width: 83%;
    }
}

@media (max-width: 768px) {
    .modern-header-main .modern-header-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .modern-header-right {
        flex-direction: row;
        /* Ensure logo left, hamburger right */
    }
}

/* Helper class for body scroll lock */
body.mobile-menu-open {
    overflow: hidden;
    height: 100vh;
}


/* Extracted Block */
.sc_layouts_item_icon.sc_layouts_iconed_text_icon.trx_addons_icon-menu {
    display: none !important;
}

.model_hide_btn {
    display: none !important;
}

.v11_popup_logo img {
    width: 280px !important;
}

.v11_popup h5 {
    font-style: italic;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 14px;
    font-size: 18px;
    margin-bottom: 17px;
}

.v11_popup h1 {
    font-size: 19px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0;
    background: #0058A9;
    background: -webkit-linear-gradient(to right, #0058A9 0%, #39b8c3 100%);
    background: -moz-linear-gradient(to right, #0058A9 0%, #39b8c3 100%);
    background: linear-gradient(to right, #0058A9 0%, #39b8c3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 10px;
    padding: 10px 4px 20px 4px;
}

/* -------- Modern Admissions Card -------- */
.ges-admissions-card-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ges-admissions-card-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ges-admissions-card {
    position: relative;
    width: 90%;
    max-width: 420px;
    background: #ffffff;

    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    transform: translateY(40px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.ges-admissions-card-overlay.active .ges-admissions-card {
    transform: translateY(0) scale(1);
}

.ges-card-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
}

.ges-card-close:hover {
    background: #000;
    color: #fff;
    transform: rotate(90deg);
}

.ges-card-logo img {
    height: 45px;
    margin-bottom: 10px;
}

.ges-card-badge {
    display: inline-block;
    background: var(--ges-secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.ges-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #000;
    line-height: 1.1;
    margin-bottom: 15px;
}

.ges-card-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.ges-card-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.ges-card-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.ges-card-btn.primary {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    color: #fff;
}

.ges-card-btn.primary:hover {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.ges-card-btn.outline {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #000;
}

.ges-card-btn.outline:hover {
    border-color: #000;
    background: rgba(0, 0, 0, 0.05);
}

.ges-card-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ges-card-footer p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .ges-admissions-card {
        padding: 30px 20px;
    }
    .ges-card-title {
        font-size: 1.6rem;
    }
    .ges-card-links {
        flex-direction: column;
    }
    .ges-card-btn {
        width: 100%;
    }
}

@media (min-width: 1920px) {
    .modern-header-container, .ges-container, .ges-features-bento{
        max-width: 1800px;
    }
    .ges-elementor-container{
       width: 1800px; 
    }
}

/* -------- Life @ GES Gallery CSS -------- */
.ges-life-gallery-section {
    padding: 100px 0;
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(15, 23, 42, 0.08) 2px, transparent 2px);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
}



.ges-life-gallery-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.1) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.ges-gallery-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ges-gallery-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.ges-gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    border-radius: 4px;
}

.ges-gallery-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ges-modern-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    grid-gap: 20px;
    position: relative;
    z-index: 2;
}

.masonry-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #1a2235;
    isolation: isolate;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.masonry-item:hover img {
    transform: scale(1.08) rotate(1deg);
}

.masonry-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

.masonry-item:hover .overlay-icon {
    transform: translateY(0) scale(1);
    background: #3B82F6;
    border-color: #3B82F6;
}

.overlay-icon svg {
    width: 20px;
    height: 20px;
}

/* Specific item sizing to create the masonry look naturally with grid */
.item-tall {
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .ges-modern-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
    .item-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .ges-modern-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .item-tall {
        grid-row: span 1;
    }
    .item-wide {
        grid-column: span 1;
    }
    .item-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .ges-modern-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
}

/* Modern Lightbox Styles */
.ges-lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 11, 20, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ges-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.ges-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
}

.ges-lightbox.active .ges-lightbox-content {
    transform: scale(1) translateY(0);
}

.ges-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

.ges-lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100000;
}

.ges-lightbox-close:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

