/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

*:focus {
    outline: none !important;
}

*:focus-visible {
    outline: none !important;
}

/* Ensure consistent width behavior */
html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Prevent width variations on refresh */
.container,
.navbar .container,
.section-header,
.services,
.featured-work,
.about,
.testimonials,
.cta-section,
.footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}



:root {
    /* Colors - New Brand Color Scheme */
    --primary-color: #fbc213;
    /* Golden Yellow */
    --primary-dark: #e6a800;
    /* Darker Yellow */
    --secondary-color: #19365f;
    /* Dark Blue */
    --secondary-dark: #142a4a;
    /* Darker Blue */
    --accent-color: #fbc213;
    /* Golden Yellow accent */
    --text-dark: #19365f;
    /* Dark Blue for text */
    --text-light: #5a6b7c;
    /* Medium Blue-Gray */
    --white: #FFFFFF;
    /* Pure white */
    --light-gray: #f8f9fa;
    /* Light background */
    --border-color: #e9ecef;
    /* Light borders */
    --gradient-primary: linear-gradient(135deg, #fbc213 0%, #19365f 100%);
    --gradient-secondary: linear-gradient(135deg, #19365f 0%, #fbc213 100%);
    --gradient-hero: linear-gradient(135deg, #fbc213 0%, #19365f 50%, #fbc213 100%);
    --gradient-dark: linear-gradient(135deg, #19365f 0%, #142a4a 100%);

    /* Typography */
    --font-primary: 'Satoshi-Variable', 'Satoshi-Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Satoshi-Bold', 'Satoshi-Medium', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Satoshi Font Weights */
    --font-light: 'Satoshi-Light', sans-serif;
    --font-regular: 'Satoshi-Regular', sans-serif;
    --font-medium: 'Satoshi-Medium', sans-serif;
    --font-bold: 'Satoshi-Bold', sans-serif;
    --font-black: 'Satoshi-Black', sans-serif;

    /* SEO-Optimized Font Size Scale */
    --font-size-xs: 0.75rem;
    /* 12px - Small labels, captions */
    --font-size-sm: 0.875rem;
    /* 14px - Small text, footnotes */
    --font-size-base: 1rem;
    /* 16px - Base body text (SEO minimum) */
    --font-size-lg: 1.125rem;
    /* 18px - Large body text (SEO recommended) */
    --font-size-xl: 1.25rem;
    /* 20px - Small headings */
    --font-size-2xl: 1.5rem;
    /* 24px - Medium headings */
    --font-size-3xl: 1.875rem;
    /* 30px - Large headings */
    --font-size-4xl: 2.25rem;
    /* 36px - Extra large headings */
    --font-size-5xl: 3rem;
    /* 48px - Hero headings */
    --font-size-6xl: 3.75rem;
    /* 60px - Display headings */
    --font-size-7xl: 4.5rem;
    /* 72px - Large display headings */
    --font-size-8xl: 6rem;
    /* 96px - Extra large display headings */

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

body {
    font-family: var(--font-regular);
    font-size: var(--font-size-lg);
    /* 18px for better SEO and readability */
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Ensure Satoshi is applied to all text elements */
* {
    font-family: inherit;
}

input,
textarea,
select,
button {
    font-family: var(--font-regular);
}

strong,
b {
    font-family: var(--font-medium);
    font-weight: 500;
}

em,
i {
    font-family: var(--font-regular);
    font-style: italic;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* ========================================
   STANDARDIZED TYPOGRAPHY SYSTEM
   ======================================== */

/* Hero Titles - Main Page Headers */
.hero-title,
.case-study-hero-title,
.ref-hero h1,
.work-hero h1 {
    font-size: clamp(4rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Section Titles - Major Headings */
.section-title,
.project-title,
.ref-text-block h3,
.cta-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    /* 24px - 40px */
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
}

/* Subsection Titles - Medium Headings */
.services-title,
.subsection-title {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    /* 20px - 24px */
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 1rem 0;
}

/* Category Tags - Small Headings */
.case-study-category,
.service-tag,
.brand-event-service-tag {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    /* 12.8px - 14.4px */
    font-weight: 600;
    padding: clamp(0.4rem, 2vw, 0.5rem) clamp(1rem, 4vw, 1.5rem);
}

/* Body Text - Main Content */
.body-text,
.project-description,
.ref-text-block p,
.services-list,
.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    /* 16px - 17.6px */
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

/* Small Text - Captions and Meta */
.small-text,
.news-date,
.news-category {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    /* 12.8px - 14.4px */
    font-weight: 500;
    line-height: 1.4;
}

h1 {
    font-size: var(--font-size-5xl);
}

/* 48px - Hero headings */
h2 {
    font-size: var(--font-size-4xl);
}

/* 36px - Section headings */
h3 {
    font-size: var(--font-size-3xl);
}

/* 30px - Subsection headings */
h4 {
    font-size: var(--font-size-2xl);
}

/* 24px - Small headings */
h5 {
    font-size: var(--font-size-xl);
}

/* 20px - Minor headings */
h6 {
    font-size: var(--font-size-lg);
}

/* 18px - Smallest headings */

p {
    font-size: var(--font-size-base);
    /* 16px - Base paragraph text */
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-medium);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(251, 194, 19, 0.5);
    font-weight: 600;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 194, 19, 0.6);
    background: linear-gradient(135deg, #ffd700 0%, var(--primary-dark) 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(25, 54, 95, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 54, 95, 0.5);
}

.btn-lg {
    padding: 16px 32px;
    font-size: var(--font-size-lg);
    /* 18px - Large button text */
}

/* Advanced Button Effects */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hover-effect:hover::before {
    left: 100%;
}

.btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.btn-hover-effect:hover .btn-particles {
    transform: translate(-50%, -50%) scale(20);
    opacity: 0;
}

/* Glass Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-glass i {
    transition: transform 0.3s ease;
}

.btn-glass:hover i {
    transform: translateX(5px);
}

/* Announcement Bar */
.announcement-bar {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: var(--font-size-sm);
    /* 14px - Small text */
}

.announcement-bar .cta-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
}

.announcement-bar .cta-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #000000;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 0;
}

/* Mobile Controls Container */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 1rem;
}

/* Mobile Search Button */
.mobile-search-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-search-btn:hover {
    color: #fbc213;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgb(102 101 99 / 47%);
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    font-family: var(--font-medium);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.menu-text {
    font-weight: 500;
    transition: all 0.3s ease;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 18px;
    height: 18px;
    position: relative;
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    left: 0;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 8px;
}

.hamburger-line:nth-child(3) {
    top: 16px;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: #fbc213;
}

/* Hamburger to X Animation */
.mobile-menu-toggle.active .menu-text {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    top: 8px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    top: 8px;
}



/* New Mobile Menu Overlay - 1240px and below */
@media (max-width: 1240px) {
    .new-mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #1a1a1a;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .new-mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* Hide new mobile menu on desktop */
@media (min-width: 1241px) {
    .new-mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* New Mobile Menu Content - 1240px and below */
@media (max-width: 1240px) {
    .new-mobile-menu-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 2rem;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Menu Header */
    .new-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .new-menu-brand {
        flex-shrink: 0;
    }

    .new-menu-logo {
        height: 40px;
        width: auto;
        object-fit: contain;
        filter: brightness(1);
    }

    .new-menu-controls {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .new-menu-search-btn {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .new-menu-search-btn:hover {
        color: #fbc213;
        background: rgba(255, 255, 255, 0.1);
    }

    .new-menu-close-btn {
        background: none;
        border: none;
        color: #ffffff;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-medium);
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .new-close-text {
        font-weight: 500;
    }

    .new-menu-close-btn:hover {
        color: #fbc213;
    }

    /* Navigation Links */
    .new-mobile-nav {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 1rem;
        margin-right: -1rem;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }

    /* Custom scrollbar for webkit browsers */
    .new-mobile-nav::-webkit-scrollbar {
        width: 4px;
    }

    .new-mobile-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .new-mobile-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }

    .new-mobile-nav::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .new-mobile-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center;
        width: 100%;
    }

    .new-mobile-nav-list li {
        margin-bottom: 2rem;
    }

    .new-nav-link-item {
        color: #ffffff;
        text-decoration: none;
        font-size: 2.5rem;
        font-weight: 600;
        font-family: var(--font-medium);
        letter-spacing: -0.5px;
        transition: all 0.3s ease;
        display: block;
        position: relative;
    }

    .new-nav-link-item:hover {
        color: #fbc213;
        transform: scale(1.05);
    }

    .new-nav-link-item.active {
        color: #ffffff;
    }

    .new-nav-link-item.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 2px;
        background: #ffffff;
    }

    /* Dropdown Arrow */
    .new-dropdown-arrow {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
        color: #fbc213;
        margin-left: 0.5rem;
    }

    .new-nav-item-dropdown.active .new-dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Mobile Dropdown */
    .new-nav-item-dropdown {
        position: relative;
    }

    .new-mobile-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        margin-top: 1rem;
        padding-left: 2rem;
        border-left: 2px solid transparent;
    }

    .new-nav-item-dropdown.active .new-mobile-dropdown {
        max-height: 500px;
        border-left-color: #fbc213;
    }

    .new-dropdown-link-item {
        display: block;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-family: var(--font-medium);
        font-size: 1.5rem;
        font-weight: 500;
        padding: 0.8rem 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .new-dropdown-link-item:hover {
        color: #fbc213;
        transform: translateX(10px);
        padding-left: 1rem;
    }

    .new-dropdown-link-item:last-child {
        border-bottom: none;
    }
}

/* Hide search window on desktop only (above 1240px) */
@media (min-width: 1241px) {
    .new-search-window {
        display: none !important;
    }
}

/* New Search Window - 1240px and below (Mobile and Tablet) */
@media (max-width: 1240px) {
    .new-search-window {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .new-search-window.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .new-search-container {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 2rem;
        box-sizing: border-box;
    }

    .new-search-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 4rem;
    }

    .new-search-input {
        flex: 1;
        max-width: 600px;
        background: none;
        border: none;
        border-bottom: 2px solid #000000;
        color: #000000;
        font-size: 1.5rem;
        font-family: var(--font-regular);
        padding: 1rem 0;
        outline: none;
        text-align: center;
    }

    .new-search-input::placeholder {
        color: rgba(0, 0, 0, 0.5);
    }

    .new-search-close-btn {
        background: rgba(0, 0, 0, 0.1);
        border: none;
        color: #000000;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .new-search-close-btn:hover {
        background: rgba(0, 0, 0, 0.2);
    }

    .new-search-results {
        margin-top: 2rem;
        color: #000000;
        text-align: center;
    }
}

/* Slider Controls - Apply to all screen sizes */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    margin-top: 0;
}

.slider-btn {
    background: rgba(251, 194, 19, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #19365f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    position: absolute;
    box-shadow: 0 4px 15px rgba(251, 194, 19, 0.3);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-btn:hover {
    background: #e6a800;
    border-color: rgba(255, 255, 255, 0.4);
    color: #19365f;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(251, 194, 19, 0.4);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Hide slider dots for case studies and news sliders since we use end-positioned buttons */
.case-studies-slider .slider-dots,
.news-slider .slider-dots {
    display: none !important;
}

/* Mobile Sliders - 480px and below */
@media (max-width: 480px) {

    /* Hide desktop grids on mobile */
    .case-studies-grid {
        display: none !important;
    }

    /* News grid - removed mobile-specific overrides */

    /* Show case studies grid on work page mobile */
    .case-studies-section .case-studies-grid {
        display: grid !important;
    }

    /* Show mobile sliders */
    .case-studies-slider,
    .news-slider {
        display: block !important;
    }

    /* Slider Container */
    .slider-container {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        margin-bottom: 2rem;
    }

    /* Slider Track */
    .slider-track {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 0;
        width: 100%;
    }

    /* Case studies slider specific overrides */
    .case-studies-slider .slider-track {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 1rem;
    }

    .case-studies-slider .case-study-card {
        flex: 0 0 100%;
        min-width: 0;
    }

    /* Slider Items - News slider items */
    .news-slider .news-item-link {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: 500px;
    }

    /* Ensure slider container hides overflow */
    .case-studies-slider .slider-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        display: block;
    }

    /* Show news slider controls at both ends */
    .news-slider .slider-controls {
        display: flex !important;
    }

    /* Slider Dots (for other sliders that might need them) */
    .slider-dots {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .slider-dot.active {
        background: #fbc213;
        transform: scale(1.2);
    }

    .slider-dot:hover {
        background: rgba(255, 255, 255, 0.6);
    }


    /* News Slider Specific */
    .news-slider .news-item {
        margin-bottom: 0;
        padding-bottom: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .news-slider .news-item-link {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .news-slider .news-item .news-meta {
        margin-top: auto;
    }

    .news-slider .news-item h3 {
        flex: 1;
        display: flex;
        align-items: center;
        margin-bottom: 0;
    }

    /* Ensure all news images in slider have same height */
    .news-slider .news-image {
        height: 530px !important;
        overflow: hidden;
    }

    .news-slider .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

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


    /* Case Study Mobile Slider - Match work.css design exactly */
    .case-studies-slider .case-study-card {
        background: #ffffff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 350px;
        text-decoration: none;
        color: inherit;
    }

    .case-studies-slider .case-study-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        text-decoration: none;
        color: inherit;
    }

    .case-studies-slider .case-study-item {
        border-radius: 24px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        position: relative;
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%;
        min-width: 350px;
    }

    .case-studies-slider .case-study-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        text-decoration: none;
        color: inherit;
    }

    .case-studies-slider .case-study-image {
        position: relative;
        height: auto;
        overflow: hidden;
    }

    .case-studies-slider .case-study-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(25, 54, 95, 0.1) 0%, rgba(251, 194, 19, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }

    .case-studies-slider .case-study-item:hover .case-study-image::after {
        opacity: 1;
    }

    .case-studies-slider .case-study-image img {
        width: 100%;
        height: 530px;
        object-fit: cover;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .case-studies-slider .case-study-item:hover .case-study-image img {
        transform: scale(1.05);
    }

    .case-studies-slider .case-study-logo-container {
        margin: 0rem 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        padding: 0 0rem;
        border-radius: 16px;
        margin: 0rem 0rem;
        backdrop-filter: blur(10px);
    }

    .case-studies-slider .case-study-logo-container img {
        max-height: 60px;
        max-width: 100%;
        object-fit: contain;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    }

    .case-studies-slider .case-study-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #333;
        text-align: center;
        margin: 0;
        line-height: 1.3;
    }

    .case-studies-slider .case-study-services {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 0 1.5rem 0rem 1.5rem;
        color: #6c757d;
        font-size: 0.9rem;
    }

    /* Service tags layout - first 3 on top row, rest on bottom row */
    .case-studies-slider .case-study-services .service-tag:nth-child(1),
    .case-studies-slider .case-study-services .service-tag:nth-child(2),
    .case-studies-slider .case-study-services .service-tag:nth-child(3) {
        order: 1;
    }

    .case-studies-slider .case-study-services .service-tag:nth-child(4),
    .case-studies-slider .case-study-services .service-tag:nth-child(5),
    .case-studies-slider .case-study-services .service-tag:nth-child(6) {
        order: 2;
        margin-top: 0;
    }

    .case-studies-slider .service-tag {
        color: #ffffff;
        font-weight: 700;
        padding: 0.5rem 1.2rem;
        background: #000000;
        font-size: 0.8rem;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        position: relative;
        border-radius: 12px;
        white-space: nowrap;
    }

    .case-studies-slider .service-tag:hover {
        color: #fbc213;
        transform: translateY(-2px);
    }


    .new-nav-link-item {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 600;
        font-family: var(--font-medium);
        letter-spacing: -0.5px;
        transition: 0.3s;
        display: block;
        position: relative;
        text-align: center;
    }

    .new-mobile-nav-list li {
        margin-bottom: 1rem;
    }

    .case-study-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }

    .slider-slide {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
    }
}

/* ========================================
   SOFITEL STYLE SLIDER - UNIVERSAL
   ======================================== */

/* Image Slider Styles - Matches so-sofitel.html */
.image-slider {
    padding: 80px 0;
    background: var(--light-gray);
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}

.slider-slide {
    min-width: calc(33.333% - 1rem);
    flex: 0 0 calc(33.333% - 1rem);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.slider-slide:hover {
    transform: translateY(-5px);
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.slider-slide:hover img {
    transform: scale(1.05);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.slider-btn:hover {
    transform: scale(1.1);
}

.slider-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Slider Responsive Design */
@media (max-width: 768px) {
    .slider-slide {
        min-width: calc(50% - 0.75rem);
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 480px) {
    .slider-slide {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
    }

    .slider-slide img {
        height: 100%;
    }

    .slider-slide:hover img {
        transform: none;
    }
}


/* Hide mobile sliders on desktop */
@media (min-width: 481px) {

    .case-studies-slider,
    .news-slider {
        display: none !important;
    }

    /* Ensure desktop grids are visible */
    .case-studies-grid,
    .news-grid,
    .services-grid {
        display: grid !important;
    }
}

/* Mobile Menu Overlay - Keep for backward compatibility */
.mobile-menu-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active {
    display: block !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto !important;
    animation: fadeInOverlay 0.4s ease-out;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

/* Ensure mobile menu overlay is hidden on desktop */
@media (min-width: 1242px) {
    .mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Additional desktop-specific hiding */
@media (min-width: 1024px) {
    .mobile-menu-overlay:not(.active) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Force hide mobile menu overlay on desktop - highest specificity */
@media (min-width: 768px) {
    body:not(.menu-open) .mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Additional safety rule - hide mobile menu overlay on desktop */
@media (min-width: 768px) {
    .mobile-menu-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .mobile-menu-overlay.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

.mobile-menu-overlay.active {
    display: block !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto !important;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.menu-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0;
}

.mobile-menu-close {
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.mobile-menu-close:hover {
    background: linear-gradient(135deg, #3d3d54 0%, #2a2a3e 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mobile-nav {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 0.5rem;
}

.mobile-nav-list li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 1.25rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-list li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-list li a:hover::before {
    left: 100%;
}

.mobile-nav-list li a:hover {
    color: #ffd700;
    transform: translateX(10px);
}

.mobile-nav-list li:last-child a {
    border-bottom: none;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #fafafa;
    border-radius: 2px;
    transition: all 0.6s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-toggle:hover .hamburger-line {
    background: #ffd700;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Logo Brand Container */
.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

/* Logo Image Styling */
.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.logo-image:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dropdown-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    color: var(--primary-color);
    background: rgba(251, 194, 19, 0.1);
    border-left-color: var(--primary-color);
}

/* Navigation CTA Section */
.nav-cta {
    flex-shrink: 0;
}

/* Mobile Navigation - 1240px Breakpoint */
@media (max-width: 1240px) {

    /* Hide desktop nav menu on mobile */
    .nav-menu {
        display: none;
    }

    /* Show mobile controls */
    .mobile-controls {
        display: flex;
    }

    /* Hide desktop CTA button */
    .nav-cta {
        display: none;
    }

    /* Mobile navbar styling */
    .navbar .container {
        padding: 0 1.5rem;
    }

    .logo-image {
        height: 40px;
    }

    /* Hide navbar when menu is open */
    body.menu-open .header {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .logo-image {
        height: 40px;
        max-width: 150px;
    }

    .case-study-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .navbar .container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 35px;
        max-width: 120px;
    }

    /* Mobile navbar specific styles */
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-brand {
        flex-shrink: 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-logo-img {
        height: 30px;
        max-width: 120px;
    }

    .mobile-menu-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .mobile-hamburger-line {
        width: 16px;
        height: 2px;
    }
}

/* Ensure mobile menu overlay works on all devices */
@media (max-width: 1241px) {
    .mobile-menu-overlay {
        display: block !important;
    }
}

@media (min-width: 1242px) {
    .mobile-menu-overlay {
        display: none !important;
    }

    .mobile-search-btn {
        font-size: 1rem;
        padding: 0.4rem;
    }

    /* Mobile menu overlay adjustments */
    .mobile-menu-overlay.active {
        display: block;
    }

    .mobile-menu-content {
        padding: 1rem;
    }

    .mobile-nav-list {
        gap: 0.5rem;
    }

    .mobile-nav-list li a {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: var(--transition);
    position: relative;
    padding: 0;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}



/* Social Media Icons */
.social-icon {
    font-size: 1.2rem;
    padding: 0.5rem !important;
    color: var(--white) !important;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--primary-color) !important;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

/* Contact Button */
.contact-btn {
    background: #F4C430;
    color: #16161a;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(78, 246, 236, 0.2);
    border: none;
    outline: none;
    letter-spacing: 0.02em;
}

.contact-btn:hover {
    background: #F4C430;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(78, 246, 236, 0.3);
}


/* Navigation CTA Section */
.nav-cta {
    flex-shrink: 0;
}

/* Mobile Navigation - 1241px Breakpoint */
@media (max-width: 1241px) {
    .mobile-menu-overlay.active {
        display: block;
    }

    /* Hide desktop nav menu on mobile, keep navbar visible */
    .nav-menu {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop CTA button */
    .nav-cta {
        display: none;
    }

    /* Mobile Navigation Menu */
    .nav-menu.active {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: #1a1a2e;
        z-index: 1000;
        overflow-y: auto;
        padding: 0;
        transition: right 0.3s ease;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) #1a1a2e;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Custom scrollbar for webkit browsers */
    .nav-menu::-webkit-scrollbar {
        width: 8px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: #000000;
        border-radius: 4px;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--white);
        border-radius: 4px;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Navigation header with title and close button */
    .nav-menu::before {
        content: 'Navigation';
        position: absolute;
        top: 2rem;
        left: 2rem;
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 700;
        font-family: var(--font-display);
        z-index: 1002;
    }

    /* Close button */
    .nav-menu::after {
        content: '×';
        position: absolute;
        top: 2rem;
        right: 2rem;
        color: var(--white);
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
        font-weight: 300;
        cursor: pointer;
        z-index: 1002;
        line-height: 1;
    }

    /* Navigation separator line */
    .nav-menu .nav-list::before {
        content: '';
        position: absolute;
        top: 4rem;
        left: 2rem;
        right: 2rem;
        height: 2px;
        background: var(--primary-color);
        z-index: 1001;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 6rem 2rem 2rem;
        margin-top: 0;
        position: relative;
        list-style: none;
    }

    .nav-item {
        width: 100%;
        transition: all 0.3s ease;
        position: relative;
        margin-bottom: 0.5rem;
    }

    .nav-item:hover {
        background-color: transparent;
    }

    .nav-item:last-child {
        margin-bottom: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem;
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
        position: relative;
        font-weight: 500;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--primary-color);
    }

    /* Navigation item active state */
    .nav-item.active {
        background-color: transparent;
    }

    .nav-item.active .nav-link {
        color: var(--primary-color);
    }

    .nav-dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 1.5rem;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-left: 2px solid rgba(255, 255, 255, 0.2);
        margin-left: 0;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 400px;
        padding: 0.8rem 0 0.8rem 1.5rem;
        border-left-color: var(--primary-color);
    }

    .dropdown-link {
        color: rgba(255, 255, 255, 0.8);
        padding: 0.6rem 0;
        font-size: var(--font-size-base);
        /* 16px - Base text */
        transition: all 0.3s ease;
        border-left: 2px solid transparent;
        padding-left: 1rem;
        position: relative;
        text-decoration: none;
    }

    .dropdown-link:hover {
        color: var(--primary-color);
        background: transparent;
        border-left-color: var(--primary-color);
        padding-left: 1.2rem;
    }

    .dropdown-link::before {
        content: '→';
        position: absolute;
        left: 0;
        opacity: 0;
        transition: all 0.3s ease;
        color: var(--primary-color);
    }

    .dropdown-link:hover::before {
        opacity: 1;
        left: 0.2rem;
    }

    /* Dropdown arrow rotation */
    .nav-dropdown .nav-link i {
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        margin-left: auto;
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    .nav-dropdown.active .nav-link i {
        transform: rotate(180deg);
        color: var(--white);
    }

    /* Enhanced dropdown styling */
    .nav-dropdown .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        position: relative;
    }

    /* Active dropdown indicator */
    .nav-dropdown.active .nav-link {
        color: var(--primary-color);
        background: transparent;
        border-left: none;
        padding-left: 0;
    }

    .social-icon {
        padding: 1rem 0 !important;
        font-size: 1.3rem;
        color: var(--white);
        transition: color 0.3s ease;
    }

    .social-icon:hover {
        color: var(--primary-color);
    }

    .nav-cta {
        display: none;
    }
}
















/* 480px and below: Ultra Compact Mobile Design */
@media (max-width: 480px) {
    /* This media query is intentionally empty for future use */
}

/* Back Button */
.back-button-container {
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.1) 0%, rgba(25, 54, 95, 0.05) 50%, rgba(251, 194, 19, 0.1) 100%);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fbc213;
    color: #2c3e50;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    margin: 1rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-button:hover {
    background: #f0b000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.back-button i {
    font-size: var(--font-size-base);
    /* 16px - Base text */
}

.back-button span {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Event Registration Page Styles */
.event-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.1) 0%, rgba(25, 54, 95, 0.05) 50%, rgba(251, 194, 19, 0.1) 100%);
    overflow: hidden;
    margin-top: 0;
    padding: 4rem 0;
    z-index: 1;
}

/* Page Background */
.event-registration-page {
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.1) 0%, rgba(25, 54, 95, 0.05) 50%, rgba(251, 194, 19, 0.1) 100%);
    min-height: 100vh;
}

.event-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.event-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.image-container {
    position: relative;
    width: 400px;
    height: 500px;
    margin: 0 auto;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.event-image:hover {
    transform: scale(1.05);
}

.event-hero-text {
    color: var(--text-dark);
}

.event-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(251, 194, 19, 0.3);
}

.event-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(25, 54, 95, 0.1);
}

.event-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.event-hero-details {
    margin-bottom: 2.5rem;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.event-info-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 24px;
}

.event-hero-cta {
    margin-top: 2rem;
}

/* Event Description Section */
.event-description {
    padding: 1rem 0;
    background: rgba(25, 54, 95, 0.02);
}

.event-description-content {
    max-width: 1000px;
    margin: 0 auto;
}

.event-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.event-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.key-benefits {
    margin-bottom: 4rem;
}

.key-benefits h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: var(--font-size-5xl);
    /* 48px - Hero headings */
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.payment-methods h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.payment-method-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.payment-method-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.payment-method-item:hover::before {
    transform: scaleX(1);
}

.payment-method-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.payment-method-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.payment-method-item p {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Payment Methods Container Styling */
.payment-methods {
    padding: 3rem 0;

    position: relative;
}

.payment-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="payment-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FF6B35" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23payment-dots)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.payment-methods .container {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
    .payment-methods-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .payment-methods-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
    }

    .payment-method-item {
        padding: 1rem 0.8rem;
    }

    .payment-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .payment-method-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .payment-method-item p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .event-hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.25rem;
    }

    .payment-method-item {
        padding: 0.8rem 0.5rem;
    }


    .payment-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .payment-method-item h4 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .payment-method-item p {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .event-form {
        background: #f8f9fa;
        padding: 2rem !important;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .requirements-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-bottom: 2rem;


    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

.advanced-features {
    margin-bottom: 4rem;
}

.advanced-features h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: var(--font-size-5xl);
    /* 48px - Hero headings */
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.event-highlights {
    margin-bottom: 3rem;
}

.event-highlights h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin: 0;
}

.features-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.features-list li {
    background: white;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 3rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Registration Form Section */
.registration-form {
    padding: 6rem 0;
    background: white;
}

.registration-content {
    max-width: 800px;
    margin: 0 auto;
}

.event-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input {
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: var(--font-size-base);
    /* 16px - Base text */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked+.radio-custom {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.requirement-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.requirement-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.requirement-item ul {
    list-style: none;
    padding: 0;
}

.requirement-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(0, 0, 0, 0.8);
}

.requirement-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.requirements-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}






/* Collapsed State */
.event-card-collapsed {
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.95), rgba(230, 168, 0, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: eventCardFloat 6s ease-in-out infinite;
    width: 380px;
    margin-left: 8rem;
    min-width: 380px;
    max-width: 380px;
    transform-origin: center;
    position: relative;
    overflow: hidden;
}

.event-card-collapsed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.event-card-collapsed:hover::before {
    left: 100%;
}

.event-card-collapsed:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.event-card-collapsed:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

/* @keyframes eventCardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
} */

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.event-card-collapsed {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--secondary-color);
    height: auto;
    min-height: 60px;
}

.event-card-collapsed:focus-within {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(25, 54, 95, 0.1);
}

.event-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: eventIconPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.event-card-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

@keyframes eventIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.event-card-preview {
    flex: 1;
}

.event-preview-label {
    display: inline-block;
    background: rgba(25, 54, 95, 0.9);
    color: white;
    padding: 0.25rem 0.7rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.event-preview-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-preview-details {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    text-align: center;
    max-width: 280px;
}

.event-card-toggle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.event-card-toggle.active {
    transform: rotate(180deg) scale(1.1);
}

/* Expanded State */
.event-card-expanded {
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.98), rgba(230, 168, 0, 0.98));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: top center;
    position: relative;
    overflow: hidden;
}

.event-card-expanded::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.8s ease;
}

.event-card-expanded.active::before {
    left: 100%;
}

.event-card-expanded.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.event-expanded-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.event-expanded-icon {
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    color: var(--text-dark);
    animation: eventIconPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.event-expanded-info {
    flex: 1;
}

.event-expanded-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.event-expanded-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.event-expanded-details {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    line-height: 1.4;
}

.event-card-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.event-card-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.event-card-close:hover::before {
    width: 100%;
    height: 100%;
}

.event-card-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1) rotate(90deg);
    color: var(--secondary-color);
}

.event-expanded-content {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 1.5rem;
}

.event-expanded-cta {
    flex-shrink: 0;
}

.event-expanded-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--text-dark);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transform-origin: center;
}

.event-expanded-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.event-expanded-btn:hover::before {
    left: 100%;
}

.event-expanded-btn:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.event-expanded-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--primary-color);
}

.event-expanded-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.event-expanded-countdown {
    text-align: center;
    flex-shrink: 0;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.8rem;
    display: block;
}

.countdown-numbers {
    display: flex;
    gap: 0.8rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 0.8rem;
    border-radius: 15px;
    min-width: 55px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.1), rgba(25, 54, 95, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-item:hover::before {
    opacity: 1;
}

.countdown-item:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.countdown-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.countdown-item .countdown-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    text-transform: uppercase;
}

/* Countdown animation effects */
.countdown-value {
    animation: countdownPulse 2s ease-in-out infinite;
}

@keyframes countdownPulse {

    0%,
    100% {
        transform: scale(1);
        color: var(--text-dark);
    }

    50% {
        transform: scale(1.05);
        color: #000000;
    }
}

.countdown-item {
    animation: countdownFloat 3s ease-in-out infinite;
}

.countdown-item:nth-child(1) {
    animation-delay: 0s;
}

.countdown-item:nth-child(2) {
    animation-delay: 0.5s;
}

.countdown-item:nth-child(3) {
    animation-delay: 1s;
}

.countdown-item:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes countdownFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Sidebar Icons Container */
.sidebar-icons-container {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1001;
}

/* Sidebar Icon Labels */
.sidebar-icon-label {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    margin-right: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1002;
}

.sidebar-icon-label::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.event-sidebar-icon:hover .sidebar-icon-label,
.career-sidebar-icon:hover .sidebar-icon-label {
    opacity: 1;
    visibility: visible;
}

/* Event Sidebar Icon */
.event-sidebar-icon {
    position: relative;
    /* Added for label positioning */
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.95), rgba(230, 168, 0, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: eventIconPulse 3s ease-in-out infinite;
}

.event-sidebar-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(251, 194, 19, 0.4);
}

.event-sidebar-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

@keyframes eventIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(251, 194, 19, 0.3);
    }
}

/* Event Banner Styles */
.event-banner {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.98), rgba(230, 168, 0, 0.98));
    backdrop-filter: blur(20px);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 1002;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(0);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
}

.event-banner.active {
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.event-banner-content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.event-banner-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.event-banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: eventIconPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.event-banner-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.event-banner-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.event-banner-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-banner-text p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    text-align: center;
    max-width: 280px;
}

.event-banner-cta {
    flex-shrink: 0;
}

.event-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-banner-btn:hover {
    background: rgba(25, 54, 95, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 54, 95, 0.3);
}

.event-banner-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.event-banner-btn:hover i {
    transform: translateX(2px);
}

/* Event Information Styles */
.event-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.event-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.event-item i {
    font-size: 1rem;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.event-item span {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 500;
}

/* Close Button for Event Sidebar */
.event-banner-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1003;
}

.event-banner-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1) rotate(90deg);
    color: var(--secondary-color);
}

/* Career Sidebar Icon */
.career-sidebar-icon {
    position: relative;
    /* Added for label positioning */
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.95), rgba(230, 168, 0, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: careerIconPulse 3s ease-in-out infinite;
}

.career-sidebar-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(251, 194, 19, 0.4);
}

.career-sidebar-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

@keyframes careerIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(251, 194, 19, 0.3);
    }
}

/* Career Banner Styles */
.career-banner {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.98), rgba(230, 168, 0, 0.98));
    backdrop-filter: blur(20px);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 1002;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(0);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
}

.career-banner.active {
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.career-banner-content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.career-banner-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.career-banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: eventIconPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.career-banner-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.career-banner-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.career-banner-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.career-banner-text p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    text-align: center;
    max-width: 280px;
}

.career-banner-cta {
    flex-shrink: 0;
}

.career-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.career-banner-btn:hover {
    background: rgba(25, 54, 95, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 54, 95, 0.3);
}

.career-banner-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.career-banner-btn:hover i {
    transform: translateX(2px);
}

/* Company Information Styles */
.company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.company-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.company-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.company-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.company-item i {
    font-size: 1rem;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.company-item span {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 500;
}

/* Close Button for Sidebar */
.career-banner-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1003;
}

.career-banner-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1) rotate(90deg);
    color: var(--secondary-color);
}

.event-expanded-stats {
    text-align: center;
    flex-shrink: 0;
}

.stats-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    display: block;
}

.stats-numbers {
    display: flex;
    gap: 0.8rem;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    min-width: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stats-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.1), rgba(230, 168, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stats-item:hover::before {
    opacity: 1;
}

.stats-item:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stats-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stats-item .stats-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}







/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    transition: min-height 0.3s ease;
    /* Smooth height transition */
}

/* Hero height adjustment when cards are expanded */
.hero.has-expanded-cards {
    min-height: 120vh;
    /* Increase height when cards are open */
}

/* Hero Buttons Section */
.hero-buttons-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}


.hero-buttons-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.3;
    font-family: var(--font-bold);
}

.hero-buttons-inner {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons-inner .btn {
    min-width: 180px;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.hero-video-container>div {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.hero-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Hide Vimeo controls, play button, and loading spinner */
.hero-video-container iframe::-webkit-media-controls {
    display: none !important;
}

.hero-video-container iframe::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video-container iframe::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video-container iframe::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Hide Vimeo loading spinner and UI elements */
.hero-video-container .vp-spinner,
.hero-video-container [class*="spinner"],
.hero-video-container [class*="loading"],
.hero-video-container .vp-center,
.hero-video-container .vp-controls,
.hero-video-container .vp-title,
.hero-video-container .vp-byline,
.hero-video-container .vp-portrait {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Force hide Vimeo loader - Additional targeting */
.hero-video-container iframe[src*="vimeo"] .vp-spinner,
.hero-video-container iframe .vp-target {
    display: none !important;
}

/* Background mode hides loader automatically */
.hero-video-container iframe {
    background: transparent !important;
}

/* Additional Vimeo loading elements to hide */
.hero-video-container iframe[src*="vimeo"] {
    pointer-events: none;
}

/* Custom Video Loader */
.custom-video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.custom-video-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo-img {
    width: 200px;
    height: auto;
    max-width: 80vw;
    object-fit: contain;
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
        filter: brightness(1.4) drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    }
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .loader-logo-img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .loader-logo-img {
        width: 120px;
    }
}

/* Smooth fade-in when video is ready */
@keyframes videoFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Hide Vimeo default controls and UI elements */
iframe[src*="player.vimeo.com"] {
    pointer-events: auto;
}

/* Ensure our custom controls are above Vimeo */
.video-controls,
.sound-enable-prompt {
    z-index: 9999 !important;
}

/* Sound Enable Prompt - DISABLED */
.sound-enable-prompt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 250;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none !important;
    visibility: hidden !important;
}

.sound-enable-btn {
    background: rgba(251, 194, 19, 1);
    border: 3px solid rgba(255, 255, 255, 1);
    border-radius: 60px;
    color: #19365f;
    font-size: 20px;
    font-weight: 700;
    padding: 24px 48px;
    cursor: pointer;
    display: none !important;
    visibility: hidden !important;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 0 4px rgba(251, 194, 19, 0.3);
    pointer-events: none;
    animation: none;
}

.sound-enable-btn:hover {
    background: rgba(251, 194, 19, 1);
    transform: scale(1.08) !important;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.8), 0 0 0 6px rgba(251, 194, 19, 0.5) !important;
    animation: none;
}

.sound-enable-btn i {
    font-size: 24px;
    animation: soundIconPulse 1.5s ease-in-out infinite;
}

@keyframes soundIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 0 4px rgba(251, 194, 19, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 8px rgba(251, 194, 19, 0.4);
    }
}

/* Responsive: Mobile/Tablet */
@media (max-width: 768px) {
    .sound-enable-btn {
        font-size: 16px;
        padding: 18px 36px;
        gap: 12px;
    }

    .sound-enable-btn i {
        font-size: 20px;
    }
}

.video-volume-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    z-index: 9999;
    position: relative;
}

.video-volume-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: #ffffff;
    transform: scale(1.1);
}

.video-volume-btn.muted {
    background: rgba(220, 38, 38, 0.8);
    border-color: #dc2626;
}

.video-volume-btn.muted:hover {
    background: rgba(220, 38, 38, 1);
}

/* Full width video on mobile devices (480px and below) */
@media (max-width: 480px) {
    .hero-video-container {
        width: 100vw;
        height: 28vh;
        top: 0;
        left: 0;
    }

    .hero-video-container>div {
        width: 100vw;
        height: 100vh;
    }

    .hero-video-container iframe {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    /* Mobile video controls */
    .video-controls {
        bottom: 15px;
        right: 15px;
    }

    .video-volume-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .hero-background {
        width: 100vw;
        height: 28vh;
        overflow: hidden;
    }

    .hero {
        width: 100vw;
        max-width: 100vw;
        overflow: hidden;
    }
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.17);
    z-index: 2;
    pointer-events: none;
}




/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 0rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Enhanced services grid for better card distribution */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1400px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Modern Service Cards */
.service-card-3d,
.modern-card {
    perspective: 1000px;
    height: 450px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    overflow: hidden;
}

.modern-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(2deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    animation: glow-rotate 10s linear infinite;
}

.modern-card:hover .card-glow-effect {
    opacity: 1;
}

@keyframes glow-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.service-card-3d:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-back {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-3d:hover .service-card-glow {
    opacity: 0.3;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.service-icon-animated {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon-animated:hover {
    transform: scale(1.1) rotate(10deg);
}

.service-icon-animated i {
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    color: var(--white);
    z-index: 2;
}

.icon-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.icon-particles::before,
.icon-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particle-float 3s infinite ease-in-out;
}

.icon-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.icon-particles::after {
    top: 70%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) scale(0.8);
        opacity: 0.5;
    }
}

.service-title {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

.service-hover-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.service-hover-indicator i {
    transition: transform 0.3s ease;
}

.service-card-3d:hover .service-hover-indicator i {
    transform: translateX(5px);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-size-base);
    /* 16px - Base text */
}

.service-features li i {
    color: var(--accent-color);
    font-size: var(--font-size-base);
    /* 16px - Base text */
}

.service-stats {
    text-align: center;
    margin-top: auto;
}

.service-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.service-stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.service-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Featured Work Section */
.featured-work {
    padding: var(--section-padding);
}


.work-info {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.work-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.work-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    transition: var(--transition);
}

.work-link:hover {
    transform: translateX(5px);
}

.work-cta {
    text-align: center;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.about-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature p {
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Project Overview Section */
.project-overview {
    padding: 3rem 0;
    background: var(--white);
}

.project-overview-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.project-description {
    margin-top: 2rem;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: var(--font-medium);
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-family: var(--font-regular);
}

/* Services Provided Section */
.services-provided {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-provided-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

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

.service-item-text {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-title-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    font-family: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Section */
.content-section {
    padding: 6rem 0;
    background: #19365f;
    color: var(--white);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Left Side - Services */
.left-side {
    text-align: left;
}

.services-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1rem 0;
    font-family: var(--font-bold);
}

.services-list {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Right Side - Project Description */
.right-side {
    text-align: left;
}

.project-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 2rem 0;
    line-height: 1.3;
    font-family: var(--font-bold);
}

.project-description {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* Loading Placeholder */
.loading-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
    height: 20px;
    width: 100%;
}

.case-study-image .loading-placeholder {
    height: 100%;
    min-height: 200px;
}

.case-study-logo-container .loading-placeholder {
    height: 40px;
    width: 80px;
}

.case-study-services .loading-placeholder {
    height: 30px;
    width: 60px;
    margin-right: 10px;
    display: inline-block;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-title {
        font-size: 1.8rem;
    }

    .services-title {
        font-size: 1.3rem;
    }

    .services-list,
    .project-description {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 2rem 0;
    }

    .content-layout {
        gap: 2rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .services-title {
        font-size: 1.2rem;
    }


    .services-list,
    .project-description {
        font-size: 0.95rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
    background: #19365f;
    color: var(--white);
    position: relative;
    overflow: hidden;
}


.testimonials .section-title {
    color: var(--white);
}

/* Testimonials Slider */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(100px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0) scale(1);
    position: relative;
}

.testimonial-slide.prev {
    display: block;
    opacity: 0;
    transform: translateX(-100px) scale(0.95);
    position: absolute;
}

.testimonial-slide.next {
    display: block;
    opacity: 0;
    transform: translateX(100px) scale(0.95);
    position: absolute;
}

.testimonial-content {
    text-align: center;
    padding: 3rem 2rem;
    animation: slideInContent 0.8s ease-out 0.2s both;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-slide.active .testimonial-role {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.testimonial-slide.active blockquote {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-avatar {
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.testimonial-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.testimonial-role {
    font-size: var(--font-size-base);
    /* 16px - Base text */
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}



.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-arrow {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nav-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-arrow:hover::before {
    left: 0;
}

.nav-arrow:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: scale(1.1);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.dot.active::before {
    width: 100%;
    height: 100%;
}

.dot:hover {
    background: var(--primary-color);
    opacity: 0.8;
    transform: scale(1.1);
}


/* CTA Section */


.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

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

/* CTA Logo Styling */
.cta-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}



/* Event Hero Video Styling */
.event-hero-video {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    width: 62%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.3s ease;
    /* Ensure continuous playback */
    will-change: auto;
    /* Allow user interaction with controls */
    pointer-events: auto;
    /* Force video to always be visible */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}



.event-video:hover {
    transform: scale(1.02);
}

/* Responsive Event Video */
@media (max-width: 768px) {
    .event-hero-video {
        margin-bottom: 2rem;
    }

    .video-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .video-container {
        width: 90%;
        height: 100%;
    }

    /* Mobile Font Sizing */
    .hero-main-title-centered {
        font-size: var(--font-size-2xl) !important;
        /* 24px - Medium headings */
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: var(--font-size-base) !important;
        /* 16px - Base text */
        line-height: 1.4 !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .about-heading {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .about-text p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .service-item h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .service-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .service-list h4 {
        font-size: 0.95rem !important;
    }

    .service-list li {
        font-size: 0.85rem !important;
    }

    .case-study-item h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .case-study-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .cta-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .cta-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .news-item h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .news-date {
        font-size: 0.8rem !important;
    }

    .news-category {
        font-size: 0.8rem !important;
    }

    .testimonial-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .testimonial-author {
        font-size: 0.85rem !important;
    }

    .footer-content h3 {
        font-size: 0.9rem !important;
        /* Standard: 14.4px */
    }

    .footer-content p,
    .footer-content li {
        font-size: 0.75rem !important;
        /* Standard: 12px */
    }

    .btn {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.2rem !important;
    }

    .btn-large {
        font-size: var(--font-size-base) !important;
        /* 16px - Base text */
        padding: 0.8rem 1.5rem !important;
    }
}

/* Payment Methods Grid - Single Row Layout */
.payment-methods-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: 2rem;
}

.payment-method-item {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 0;
}

.payment-method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.payment-method-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-method-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Payment Methods */
@media (max-width: 1024px) {
    .payment-methods-grid {
        gap: 1rem;
    }

    .payment-method-item {
        padding: 1.25rem;
    }

    .payment-icon {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .payment-method-item h4 {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .payment-method-item p {
        font-size: 0.85rem;
    }

    .case-study-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
}

@media (max-width: 768px) {
    .payment-methods-grid {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .payment-method-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .payment-methods-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-method-item {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

/* Footer */
.footer {
    background: #000000;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}



.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .logo {
    background-image: url('../images/Flash_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100px;
    width: 140px;
    transition: transform 0.3s ease;
}

.footer-brand .logo:hover {
    transform: scale(1.05);
}

.footer-brand .logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-brand .logo:hover span {
    color: var(--primary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(251, 194, 19, 0.4);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.contact-info p a {
    text-decoration: none;
    color: inherit;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    background: #000000;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left p {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-left .privacy-link {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom-left .privacy-link:hover {
    color: var(--primary-color);
}

.footer-bottom-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-right .social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-right .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    min-width: 32px;
    min-height: 32px;
    border: 1px solid transparent;
}

.footer-bottom-right .social-icon i {
    line-height: 1;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom-right .social-icon:hover {
    background: var(--primary-color) !important;
    color: #000000 !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(251, 194, 19, 0.5) !important;
    border-color: var(--primary-color) !important;
}

.footer-bottom-right .social-icon:hover i {
    transform: scale(1.1) !important;
}







/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Prevent viewport width issues */
@viewport {
    width: device-width;
    initial-scale: 1.0;
    maximum-scale: 1.0;
    user-scalable: no;
}



/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Technology Showcase Section */
.tech-showcase {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.tech-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FF6B35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-grid)"/></svg>');
    animation: tech-bg-move 20s linear infinite;
}

@keyframes tech-bg-move {
    0% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(-20px) translateY(-20px);
    }

    50% {
        transform: translateX(0) translateY(-40px);
    }

    75% {
        transform: translateX(20px) translateY(-20px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    color: var(--white);
    position: relative;
    animation: tech-icon-pulse 3s infinite ease-in-out;
}

@keyframes tech-icon-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.tech-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: tech-icon-glow 3s infinite ease-in-out;
}

@keyframes tech-icon-glow {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.tech-item h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--white);
}

.tech-progress {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}



/* Tech Visualization */
.tech-visualization {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.tech-circle-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.tech-circle {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: tech-rotate 20s linear infinite;
}

.tech-circle-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-color: var(--primary-color);
    animation-duration: 20s;
}

.tech-circle-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-right-color: var(--accent-color);
    animation-duration: 15s;
    animation-direction: reverse;
}

.tech-circle-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-bottom-color: var(--primary-color);
    animation-duration: 10s;
}

@keyframes tech-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.tech-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    animation: tech-center-pulse 4s infinite ease-in-out;
}

@keyframes tech-center-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.tech-center span {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Page Hero Styles */
/* Page Hero Styles - Removed - Now handled by individual page CSS files */

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb i {
    font-size: 0.7rem;
}

/* Service Detail Cards */
.service-detail-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-features-detailed {
    margin: 2rem 0;
}

.feature-category {
    margin-bottom: 2rem;
}

.feature-category h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-category ul {
    list-style: none;
    padding-left: 1.5rem;
}

.feature-category li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
}

.feature-category li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -1rem;
}

.service-results {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-results h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.result-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.result-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    gap: 1rem;
}

.team-member:hover .member-social {
    opacity: 1;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.9);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Lightning Network Showcase */
.lightning-network {
    min-height: 100vh;
    background: radial-gradient(circle at center, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.network-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.electric-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(244, 196, 48, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 196, 48, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: particle-float 6s infinite linear;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 60%;
    animation-delay: -4s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 40%;
    animation-delay: -1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    bottom: 20%;
    left: 30%;
    animation-delay: -3s;
    animation-duration: 6s;
}

@keyframes particle-float {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

.network-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.network-title {
    position: relative;
    margin-bottom: 2rem;
}

.electric-text {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #FFD700, #FFF700, #FFFF00, #F4C430);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-black);
    text-shadow: 0 0 30px rgba(244, 196, 48, 0.5);
    animation: electric-glow 2s ease-in-out infinite alternate;
}

@keyframes electric-glow {
    from {
        filter: brightness(1) drop-shadow(0 0 20px rgba(244, 196, 48, 0.8));
    }

    to {
        filter: brightness(1.2) drop-shadow(0 0 40px rgba(244, 196, 48, 1));
    }
}

.title-spark {
    position: absolute;
    top: -10px;
    right: -20px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: spark-flash 1.5s infinite;
}

@keyframes spark-flash {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 20px var(--primary-color);
    }
}

.network-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight-electric {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(244, 196, 48, 0.8);
    animation: text-pulse 2s ease-in-out infinite;
}

@keyframes text-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(244, 196, 48, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: rgba(244, 196, 48, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 196, 48, 0.3);
}



.service-card:hover::before {
    opacity: 1;
    animation: sweep 1.5s ease-in-out;
}

@keyframes sweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.card-icon i {
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    color: var(--secondary-color);
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(244, 196, 48, 0.8);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(244, 196, 48, 0.6);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.service-stats span {
    background: rgba(244, 196, 48, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 196, 48, 0.4);
    text-shadow: 0 0 8px rgba(244, 196, 48, 0.8);
    transition: all 0.3s ease;
}

.service-card:hover .service-stats span {
    background: rgba(244, 196, 48, 0.3);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Network Stats */
.network-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stat-bolt {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(244, 196, 48, 0.3);
    border-radius: 15px;
    padding: 20px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-bolt:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(244, 196, 48, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(244, 196, 48, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Network CTA */
.network-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.network-cta h3 {
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    color: var(--white);
    margin-bottom: 2rem;
    font-family: var(--font-bold);
}

.btn-electric {
    position: relative;
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
}

.btn-electric:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(244, 196, 48, 0.5);
}

.btn-lightning {
    position: relative;
    width: 20px;
    height: 20px;
}

.lightning-strike {
    position: absolute;
    width: 3px;
    height: 20px;
    background: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
    animation: strike-flash 1.5s infinite;
}

.lightning-strike::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 10px;
    background: var(--secondary-color);
    top: 8px;
    left: -5px;
    transform: rotate(45deg);
}

.lightning-strike::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 10px;
    background: var(--secondary-color);
    top: 8px;
    right: -5px;
    transform: rotate(-45deg);
}

@keyframes strike-flash {

    0%,
    90%,
    100% {
        opacity: 1;
    }

    5%,
    85% {
        opacity: 0.3;
    }

    10%,
    80% {
        opacity: 1;
    }
}




@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

/* Projects Showcase */
.projects-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(244, 196, 48, 0.05) 100%);
}

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

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spectacular-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(244, 196, 48, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    color: var(--white);
}

.project-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.project-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.project-stats {
    display: flex;
    gap: 1rem;
}

.project-stats .stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    flex: 1;
}

.project-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.project-stats .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.project-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.project-card:hover .project-glow {
    opacity: 0.3;
}

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.award-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.award-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer Enhancements */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo-text span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-text small {
    font-size: 0.6rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background: var(--light-gray);
}

/* Case Studies Slider */

/* Legacy grid fallback */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
}

.case-study-item {
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.case-study-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
}

.case-study-image {
    position: relative;
    height: auto;
    overflow: hidden;
}

.case-study-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 54, 95, 0.1) 0%, rgba(251, 194, 19, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.case-study-item:hover .case-study-image::after {
    opacity: 1;
}

.case-study-image img {
    width: 100%;
    height: 530px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-study-item:hover .case-study-image img {
    transform: scale(1.05);
}


.case-study-services {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1.5rem 2rem 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}










/* Service tags layout - first 3 on top row, rest on bottom row */
.case-study-services .service-tag:nth-child(1),
.case-study-services .service-tag:nth-child(2),
.case-study-services .service-tag:nth-child(3) {
    order: 1;
}

.case-study-services .service-tag:nth-child(4),
.case-study-services .service-tag:nth-child(5),
.case-study-services .service-tag:nth-child(6) {
    order: 2;
    margin-top: 0;
}

.service-tag {
    color: #ffffff;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    background: #000000;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
    white-space: nowrap;
}



.service-tag:hover {
    color: #fbc213;
    transform: translateY(-2px);
}

.case-study-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.case-study-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.case-study-overlay p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-study-results {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-metric {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    color: var(--accent-color);
}

.case-studies-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Ensure CTA button displays correctly in case studies section */
.case-studies-cta .cta-btn {
    display: inline-block;
    position: relative;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    text-align: center;
    color: var(--secondary-color);
}

.case-studies-cta .cta-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.case-studies-cta .cta-btn .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: all 0.4s ease;
}

.case-studies-cta .cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(251, 194, 19, 0.4);
}

.case-studies-cta .cta-btn:hover .btn-background {
    background: linear-gradient(135deg, #ffd700 0%, var(--primary-dark) 100%);
}

.case-studies-cta h3 {
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: var(--font-bold);
}

/* Mobile responsive for Case Studies */
@media (max-width: 1024px) {
    .case-study-slide {
        flex: 0 0 50%;
        padding: 0 1rem;
    }

    .case-studies-track {
        gap: 0;
        width: 100%;
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .case-study-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .case-studies {
        padding: 80px 0;
    }

    .case-study-slide {
        flex: 0 0 100%;
        padding: 0 1rem;
    }

    .case-studies-track {
        gap: 0;
        width: 100%;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .case-studies-nav-btn {
        width: 45px;
        height: 45px;
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .case-studies-navigation {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .case-study-image {
        height: 220px;
    }


    .case-study-services {
        padding: 0 1rem 1.5rem 1rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .service-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        letter-spacing: 0.6px;
    }

    .service-tag:not(:last-child)::after {
        right: -0.4rem;
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }
}

@media (max-width: 480px) {
    .case-studies-grid {
        gap: 1.5rem;
    }

    .case-study-item {
        border-radius: 20px;
    }

    .case-study-image {
        height: 100%;
    }


    .service-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        letter-spacing: 0.5px;
    }

    .service-tag:not(:last-child)::after {
        right: -0.3rem;
        font-size: 0.9rem;
    }
}

/* Case Study Detail Page Styles */
.case-study-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.case-study-hero .container {
    max-width: none;
    padding: 0;
    width: 100%;
}

.case-study-hero-background {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url(../images/case-study/Esko-inner-hero.png); - Moved to case-study-esko.css */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.case-study-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.case-study-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.case-study-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-hero-title {
    font-size: clamp(2rem, 8vw, 2rem);
    font-weight: 700;
    margin: 0;
    font-family: var(--font-bold);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}







/* Mobile Responsive for Case Study Detail */
@media (max-width: 1024px) {
    .case-study-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
}

@media (max-width: 768px) {
    .case-study-hero {
        height: 80vh;
    }

    .case-study-hero-background {
        min-height: 50vh;
        background-size: cover;
        background-position: center center;
    }

    .case-study-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }

    .case-study-category {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .case-study-hero {
        height: 80vh;
    }

    .case-study-hero-background {
        min-height: 40vh;
        background-size: cover;
        background-position: center center;
    }

    .case-study-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
}

/* Testimonials Section */


.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 2rem;
    font-family: var(--font-medium);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author div h4 {
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-size: var(--font-size-base);
    /* 16px - Base text */
}

.testimonial-author div span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Updated Button Styles */
.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid var(--border-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-medium);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
    transform: translateY(-2px);
}



/* ===== ENHANCED ABOUT SECTION ===== */
.about-intro {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.05;
    animation: rotate-slow 25s linear infinite;
}

.about-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(251, 194, 19, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 54, 95, 0.03) 0%, transparent 50%);
}

.about-bg-accent {
    position: absolute;
    width: 3px;
    height: 200px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    left: 5%;
    top: 30%;
    opacity: 0.3;
    animation: pulse-accent 4s ease-in-out infinite;
}

@keyframes pulse-accent {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* ===== SIMPLE ABOUT SECTION ===== */
.about-simple {
    padding: 3rem 0;
    background: var(--text-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Mobile-first approach - override desktop on smaller screens */
@media (max-width: 768px) {
    .about-content-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 100% !important;
        width: 100% !important;
    }

    .about-left {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0rem;
    }
}

.about-right {
    max-width: 100% !important;
    width: 100% !important;
}

.about-heading {
    max-width: 100% !important;
    width: 100% !important;
}

.about-text {
    max-width: 100% !important;
    width: 100% !important;
}

.about-left {
    padding-right: 2rem;
}

.about-heading {
    font-size: var(--font-size-5xl);
    /* 48px - Hero headings */
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--font-black);
    letter-spacing: -0.02em;
    margin: 0;
}

.heading-text {
    color: var(--white);
}

.about-right {
    padding-left: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: var(--font-medium);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(251, 194, 19, 0.3);
    transform: translateY(0);
    animation: badge-float 4s ease-in-out infinite;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 194, 19, 0.4);
    border-color: var(--primary-dark);
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.about-main-content-centered {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

/* Title Section */
.about-title-section {
    max-width: 900px;
}

.section-title-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.1;
    font-family: var(--font-black);
    letter-spacing: -0.02em;
}

.title-line-1 {
    display: block;
    color: var(--text-dark);
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-3 {
    display: block;
    color: var(--secondary-color);
}

/* Description Section */
.about-description-section {
    display: flex;
    gap: 2rem;

}

.description-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    border-radius: 0 2px 2px 0;
}

.description-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 1px;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    font-family: var(--font-regular);
}

/* Services Section */
.about-services-section {
    width: 100%;
    max-width: 800px;
}

.services-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.services-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.services-grid-centered {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

section#services {
    padding: 2rem 0rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
    height: 96%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    margin-bottom: 3rem;
}



/* Service item content styling */
.service-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-item .service-image {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

/* Fallback for images that don't load */
.service-item .service-image img:not([src]),
.service-item .service-image img[src=""],
.service-item .service-image img[src*="unsplash.com"]:not([src*="ixlib"]) {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
}

.service-item .service-image img:not([src])::after,
.service-item .service-image img[src=""]::after,
.service-item .service-image img[src*="unsplash.com"]:not([src*="ixlib"])::after {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--font-size-5xl);
    /* 48px - Hero headings */
    opacity: 0.5;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.service-item:hover::before {
    opacity: 1;
}

.service-name {
    font-size: var(--font-size-base);
    /* 16px - Base text */
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 2;
}

/* Global Presence */
.global-presence-centered {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.presence-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.presence-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.location-tag {
    background: rgba(25, 54, 95, 0.1);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-tag.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    font-weight: 600;
}

.location-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



/* Service List Styles */
.service-list {
    padding: 0.5rem 0rem;
    width: 50%;
    margin: 0 auto;
    background: #F4C430;
    border-radius: 12px;
    border: 1px solid rgba(25, 54, 95, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-list:hover::before {
    left: 100%;
}

.service-list:hover {
    background: linear-gradient(135deg, #F4C430 0%, #e6a800 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.4);
    border-color: rgba(25, 54, 95, 0.2);
}

.service-list a {
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 2;
}

.service-list h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-list:hover h4 {
    color: var(--white);
    transform: scale(1.05);
}

.service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(25, 54, 95, 0.1);
    transition: all 0.3s ease;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}







.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.service-dropdown .btn {
    margin: 0.5rem 1rem;
    display: block;
    text-align: center;
    width: 100%;
    justify-content: center;
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-item-large {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-item-large .service-image {
    margin-bottom: 2rem;
}

.service-item-large .service-image img {
    height: 250px;
}

.service-item-large h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-item-large p {
    font-size: var(--font-size-base);
    /* 16px - Base text */
    line-height: 1.7;
    color: var(--text-light);
}

/* Client Logos Section */
.client-logos {
    padding: 3rem 0;
    background: #000000;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.client-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.client-logos .section-title {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 2;
    grid-auto-rows: min-content;
}

.logo-item {
    text-align: center;
    padding: 1rem;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: auto;
    min-height: 120px;
}

.logo-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(0);
    transform: scale(1.3);
}

/* Special styling for Haribo logo - adjusted scale for masonry layout */
.haribo-logo {
    transform: scale(1.1) !important;
}

.logo-item:hover img {
    filter: brightness(1) invert(0);
}

/* Responsive adjustments for logos */
@media (max-width: 768px) {
    .client-logos {
        padding: 60px 0;
    }

    .client-logos .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }

    .logo-item {
        padding: 0.8rem;
    }

    .logo-item img {
        max-height: 100px;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .client-logos {
        padding: 50px 0;
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .logo-item img {
        max-height: 80px;
        min-height: 50px;
    }
}

/* Testimonials Section Update */


.testimonials .section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0rem;
}

.testimonial-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0rem;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Case Studies Section Update */
.case-studies {
    padding: 3rem 0;
    background: var(--white);
}

.case-studies .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.case-studies .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.case-study-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-study-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.case-study-item img {
    width: 100%;

    object-fit: cover;
    transition: transform 0.3s ease;
}



/* CTA Section */
.cta-section {
    padding: 2rem 0;
    background: #000000;
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-logo img {
    width: 80%;
    height: 100%;
    object-fit: contain;
}



/* Mobile responsive CTA section */
@media (max-width: 768px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-text {
        max-width: 100%;
        order: 1;
    }

    .cta-graphic {
        order: 2;
        margin-top: 1rem;
    }

    .cta-title {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: var(--font-size-base);
        /* 16px - Base text */
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .cta-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.8rem 1.5rem;
    }

    .cta-graphic {
        margin-top: 1.5rem;
    }

    .graphic-element {
        width: 150px;
        height: 150px;
    }
}

.cta-text {
    max-width: 600px;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}

.cta-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-element {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-dark));
    border-radius: 20px;
    position: relative;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }
}





/* News Section */
.news {
    padding: 3rem 0;
    background: transparent;
    color: #19365f;
}

/* Mobile Responsive Service List Hover Effects */
@media (max-width: 768px) {
    .service-list:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(244, 196, 48, 0.3);
    }

    .service-list:hover h4 {
        transform: scale(1.02);
    }

    /* Project Overview Responsive */
    .project-overview {
        padding: 3rem 0;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .description-text {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    /* Services Provided Responsive */
    .services-provided {
        padding: 3rem 0;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-item-text {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-list {
        width: 60%;
    }

    .service-list:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(244, 196, 48, 0.25);
    }

    /* Project Overview Mobile */
    .project-overview {
        padding: 2rem 0;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .description-text {
        font-size: 0.95rem;
    }

    /* Services Provided Mobile */
    .services-provided {
        padding: 2rem 0;
    }

    .service-item-text {
        padding: 1.2rem;
    }

    .service-title-text {
        font-size: 1.1rem;
    }
}

.news .section-title {
    color: #19365f;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.news-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}


.news-item:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 600px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-item h3 {
    color: #19365f;
    /* Dark blue */
    font-size: 1.3rem;
    font-weight: 700;
    /* Bold */
    margin: 1.5rem;
    margin-top: 0;
    line-height: 1.4;
}

.news-meta {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.news-date {
    color: #fbc213;
    /* Yellow */
    font-size: 0.9rem;
    font-weight: 700;
    /* Bold */
    margin-bottom: 0.5rem;
}

.news-category {
    color: #6c757d;
    /* Gray */
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.news-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.news-nav .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: var(--font-size-base);
    /* 16px - Base text */
    background: #fbc213;
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-nav .nav-arrow:hover {
    background: #e0a800;
    transform: scale(1.1);
}



/* ===== NAVIGATION DROPDOWN STYLES ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link i {
    margin-left: 0.3rem;
    font-size: 0.7em;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 99999;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
}

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

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-link:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 1.2rem;
}



/* ===== WORK CATEGORY NAVIGATION ===== */
.work-category-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.category-nav-item {
    display: block;
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    text-align: center;
}

.category-nav-item:hover,
.category-nav-item.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-nav-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-nav-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.category-nav-item.active p {
    opacity: 1;
}






/* ===== NEW HERO BUTTONS SECTION DESIGN ===== */
.hero-buttons-section {
    padding: 3rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
}



/* Centered Layout */
.hero-split-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Centered Content */
.hero-content-centered {
    text-align: center;
    max-width: 800px;
}



.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(251, 194, 19, 0.3);
    transform: translateY(0);
    animation: badge-bounce 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.1rem;
}

@keyframes badge-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-main-title-centered {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: var(--font-black);
    letter-spacing: -0.02em;
    text-align: center;
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-family: var(--font-medium);
}

.location-highlight {
    color: var(--secondary-color);
    font-weight: 600;

}

/* CTA Buttons */
.hero-cta-buttons-centered {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn {
    position: relative;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    text-align: center;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

.cta-btn-primary {
    color: var(--secondary-color);
}

.cta-btn-primary .btn-background {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(251, 194, 19, 0.4);
}

.cta-btn-primary:hover .btn-background {
    background: linear-gradient(135deg, #ffd700 0%, var(--primary-dark) 100%);
}

.cta-btn-secondary {
    color: var(--white);
}

.cta-btn-secondary .btn-background {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.cta-btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(25, 54, 95, 0.4);
}

.cta-btn-secondary:hover .btn-background {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
}

/* Centered Hero Styles */
.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


.hero-cta-buttons-centered {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Right Visual */
.hero-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.visual-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    animation: float-visual 6s ease-in-out infinite;
}

.visual-element:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.visual-card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.visual-card-2 {
    top: 0;
    right: 0;
    animation-delay: 1s;
}

.visual-card-3 {
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

.visual-card-4 {
    bottom: 0;
    right: 0;
    animation-delay: 3s;
}

.card-icon {
    font-size: var(--font-size-5xl);
    /* 48px - Hero headings */
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.visual-element:hover .card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Responsive Card Icons */
@media (max-width: 768px) {
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .card-icon {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
        margin-bottom: 0.6rem;
    }
}

/* Hero Visual Card Icons - Enhanced Emoji Styling */
.hero-visual-container .card-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-visual-container .visual-element:hover .card-icon {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-text {
    font-size: var(--font-size-base);
    /* 16px - Base text */
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

@keyframes float-visual {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-buttons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="button-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fbc213" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23button-grid)"/></svg>');
    opacity: 0.5;
}

.hero-buttons-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(251, 194, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-buttons-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(251, 194, 19, 0.3);
    transform: translateY(0);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-black);
    letter-spacing: -0.02em;
    max-width: 1000px;
}

.hero-main-title .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-family: var(--font-medium);
    max-width: 800px;
}

.hero-subtitle strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.hero-buttons-inner {
    display: flex;
    gap: 30px;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.hero-buttons-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 194, 19, 0.1) 0%, transparent 70%);
    animation: button-glow 8s ease-in-out infinite;
}

@keyframes button-glow {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.1;
    }

    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.3;
    }
}

.hero-buttons-section .btn {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.btn-text {
    transition: transform 0.3s ease;
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-buttons-section .btn:hover .btn-text {
    transform: translateX(-3px);
}

.hero-buttons-section .btn:hover .btn-icon {
    transform: translateX(3px);
}

.hero-buttons-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(251, 194, 19, 0.4);
    border: none;
}

.hero-buttons-section .btn-primary:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 50px rgba(251, 194, 19, 0.6);
    background: linear-gradient(135deg, #ffd700 0%, var(--primary-dark) 100%);
}

.hero-buttons-section .btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(25, 54, 95, 0.3);
}

.hero-buttons-section .btn-secondary:hover {
    transform: translateY(-5px) scale(1.08);
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: var(--secondary-dark);
    box-shadow: 0 20px 50px rgba(25, 54, 95, 0.5);
}

/* Button hover effects */
.hero-buttons-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-buttons-section .btn:hover::before {
    left: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-black);
    text-shadow: 0 2px 10px rgba(251, 194, 19, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
}



/* ===== REFERENCE SITE LAYOUT SYSTEM ===== */
/* Fluid Grid Based Layout matching reference design */

.fluid-section {
    padding: 4rem 0;
    position: relative;
}

.fluid-grid {
    display: grid;
    grid-template-columns: repeat(24, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4vw;
}



/* Hero Section - Reference Style - MOVED TO about.css */

/* Content Sections - Reference Style - MOVED TO about.css */

/* MOVED TO about.css */

/* Responsive Design for Reference Hero */
@media (max-width: 1024px) {
    .ref-hero h1 {
        font-size: clamp(2.5rem, 8vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .ref-hero {
        min-height: 80vh;
    }

    .ref-hero h1 {
        font-size: clamp(2rem, 8vw, 2rem);
    }
}

@media (max-width: 480px) {
    .ref-hero {
        min-height: 70vh;
    }

    .ref-hero h1 {
        font-size: clamp(2rem, 8vw, 2rem);
    }
}

/* Board of Directors Section - MOVED TO about.css */
.board-directors-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


.board-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.board-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #19365f;
    margin-bottom: 20px;
    font-family: var(--font-black);
    letter-spacing: -2px;

}

.board-subtitle {
    font-size: 1.3rem;
    color: #5a6b7c;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    font-family: var(--font-medium);
}

/* Main Board Grid - Responsive 4 columns for main directors */
.board-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 60px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Force 4 columns on large screens */
@media (min-width: 1200px) {
    .board-main-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 3 columns on medium-large screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .board-main-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* 2 columns on tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .board-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* 1 column on mobile */
@media (max-width: 767px) {
    .board-main-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .board-main-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .board-member {
        height: 350px;
        max-width: 100%;
    }
}


/* Board Member Cards - Half Yellow/Half White Background */
.board-member {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #fbc213 50%, #ffffff 50%);
}

.board-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.board-red {
    background: linear-gradient(90deg, #fbc213 50%, #ffffff 50%);
}


.board-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.board-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.board-member:hover .board-image img {
    transform: scale(1.05);
}

/* Text Info Above Image at Bottom with Gradient Overlay */
.board-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(251, 194, 19, 0.8) 70%,
            rgba(251, 194, 19, 1) 100%);
    color: white;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    min-height: 100px;
}

.board-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-family: var(--font-bold);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.board-designation {
    font-size: var(--font-size-base);
    /* 16px - Base text */
    font-weight: 400;
    font-family: var(--font-regular);
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Services List */
.ref-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.ref-service-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.ref-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.ref-service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.ref-service-item p {
    font-size: var(--font-size-base);
    /* 16px - Base text */
    line-height: 1.5;
    color: var(--text-light);
}

/* Process Steps */
.ref-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    counter-reset: step-counter;
}

.ref-process-step {
    text-align: center;
    position: relative;
}

.ref-process-step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.ref-process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.ref-process-step p {
    font-size: var(--font-size-base);
    /* 16px - Base text */
    line-height: 1.5;
    color: var(--text-light);
}

/* Stats/Numbers */
.ref-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.ref-stat-item {
    padding: 2rem;
}

.ref-stat-number {
    font-size: var(--font-size-5xl);
    /* 48px - Hero headings */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.ref-stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials - Reference Style */
.ref-testimonials {
    background: var(--bg-light);
    padding: 6rem 0;
}

.ref-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.ref-testimonial {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ref-testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: var(--font-size-7xl);
    /* 72px - Large display headings */
    color: var(--primary-color);
    opacity: 0.3;
    font-weight: 700;
}

.ref-testimonial-content {
    font-size: 1.1rem;
}

/* ===== COMPANY SLIDER SECTION ===== */
.company-slider-section {
    padding: 80px 0;
    background: #000000;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.company-slider-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.company-slider-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.company-slider-section .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.company-slider-section .slider-container {
    position: relative;
    width: 100%;
    padding: 0 2rem;
    overflow: hidden;
}

.company-slider-section .slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
    padding: 0;
    width: 100%;
}

.company-slider-section .slider-slide {
    min-width: calc(25% - 1.5rem);
    flex: 0 0 calc(25% - 1.5rem);
    transition: all 0.4s ease;
}

.company-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.company-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.95) saturate(1.1);
}

.company-card:hover .company-image img {
    transform: scale(1.05);
}

.company-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #ffffff;
    padding: 2rem 1rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.company-slider-section .slider-controls {
    position: absolute;
    top: 50%;
    left: 1rem;
    right: 1rem;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.company-slider-section .slider-btn {
    background: #8b5cf6;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-slider-section .slider-btn:hover {
    background: #7c3aed;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.company-slider-section .slider-btn:active {
    transform: scale(0.95);
}

.company-slider-section .slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(1);
}

.company-slider-section .slider-btn:disabled:hover {
    background: #8b5cf6;
    transform: scale(1);
}

/* Responsive Design for Company Slider */
@media (max-width: 1200px) {
    .company-slider-section .slider-slide {
        min-width: calc(33.333% - 1.33rem);
        flex: 0 0 calc(33.333% - 1.33rem);
    }

    .company-slider-section .slider-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .company-slider-section {
        padding: 60px 0;
    }

    .company-slider-section .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .company-slider-section .section-title {
        font-size: 2rem;
    }

    .company-slider-section .section-subtitle {
        font-size: 1rem;
    }

    .company-slider-section .slider-container {
        padding: 0 1rem;
    }

    .company-slider-section .slider-slide {
        min-width: calc(50% - 0.75rem);
        flex: 0 0 calc(50% - 0.75rem);
    }

    .company-slider-section .slider-wrapper {
        gap: 1rem;
    }

    .company-image {
        height: 180px;
    }

    .company-slider-section .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .company-slider-section {
        padding: 40px 0;
    }

    .company-slider-section .section-header {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .company-slider-section .section-title {
        font-size: 1.75rem;
    }

    .company-slider-section .section-subtitle {
        font-size: 0.95rem;
    }

    .company-slider-section .slider-slide {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
    }

    .company-slider-section .slider-wrapper {
        gap: 0.5rem;
    }

    .company-image {
        height: 160px;
    }

    .company-name-overlay {
        padding: 1.5rem 0.75rem 0.75rem;
        font-size: 1rem;
    }

    .company-slider-section .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .company-slider-section .slider-controls {
        left: 0.5rem;
        right: 0.5rem;
    }
}


/* ===== RESPONSIVE STYLES FOR NEW HERO DESIGN ===== */
@media (max-width: 1024px) {
    .hero-split-layout {
        gap: 3rem;
    }

    .hero-main-title-new {
        font-size: var(--font-size-5xl);
        /* 48px - Hero headings */
    }

    .hero-visual-container {
        width: 350px;
        height: 350px;
    }

    .design-circle-1 {
        width: 250px;
        height: 250px;
        top: -125px;
        right: -125px;
    }

    .design-circle-2 {
        width: 150px;
        height: 150px;
        bottom: -75px;
        left: -75px;
    }
}

@media (max-width: 768px) {
    .hero-buttons-section {
        padding: 0px 0;
        min-height: auto;
    }

    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content-left {
        padding-right: 0;
        order: 2;
    }

    .hero-content-right {
        order: 1;
    }

    .hero-content-wrapper {
        max-width: 100%;
    }

    .hero-main-title-new {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-cta-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .cta-btn {
        min-width: 140px;
        padding: 1rem 2rem;
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .hero-visual-container {
        width: 300px;
        height: 300px;
    }

    .visual-element {
        padding: 1rem;
    }

    .card-icon {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .card-text {
        font-size: 0.9rem;
    }

    .design-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons-section {
        padding: 0px 0;
    }

    .hero-main-title-new {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .hero-description {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .hero-badge-new {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
    }

    .hero-visual-container {
        width: 250px;
        height: 250px;
    }

    .visual-element {
        padding: 0.8rem;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .card-text {
        font-size: 0.8rem;
    }
}

/* ===== CENTERED HERO RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .hero-content-centered {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .hero-main-title-centered {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-cta-buttons-centered {
        justify-content: center;
        gap: 1rem;
    }

    .cta-btn {
        min-width: 140px;
        padding: 1rem 2rem;
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }
}

@media (max-width: 480px) {
    .hero-main-title-centered {
        font-size: var(--font-size-2xl) !important;
        /* 24px - Medium headings */
        padding: 0 1rem;
    }

    .hero-cta-buttons-centered {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* ===== ULTIMATE MOBILE RESPONSIVE STYLES - COMPLETE & OPTIMIZED ===== */

/* ===== RESPONSIVE STYLES FOR SIMPLE ABOUT SECTION ===== */
@media (max-width: 768px) {
    .about-simple {
        padding: 3rem 0;
    }

    .about-content-split {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        padding: 0 1.5rem !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .about-left {
        order: 1;
        margin-bottom: 1.5rem;
        padding-right: 0;
    }

    .about-right {
        order: 2;
        padding-left: 0;
    }

    .about-heading {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 2rem;
        text-align: center;
    }

    .about-text p {
        font-size: var(--font-size-base);
        /* 16px - Base text */
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    /* Tablet Font Sizing */
    .hero-main-title-centered {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
    }

    .section-title {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
    }

    .service-item h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }

    .service-item p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .case-study-item h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }

    .case-study-item p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .cta-title {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
    }

    .cta-description {
        font-size: var(--font-size-base) !important;
        /* 16px - Base text */
        line-height: 1.6 !important;
    }

    .news-item h3 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }

    .testimonial-text {
        font-size: var(--font-size-base) !important;
        /* 16px - Base text */
        line-height: 1.6 !important;
    }

    .btn {
        font-size: 0.95rem !important;
        padding: 0.8rem 1.4rem !important;
    }

    .btn-large {
        font-size: 1.1rem !important;
        padding: 0.9rem 1.6rem !important;
    }
}

@media (max-width: 480px) {
    .about-simple {
        padding: 40px 0;
    }

    .about-content-split {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;

    }

    .about-left {
        order: 1;
        margin-bottom: 1rem;
        max-width: 100% !important;
        width: 100% !important;
    }

    .about-right {
        order: 2;
        max-width: 100% !important;
        width: 100% !important;
    }

    .about-heading {
        font-size: var(--font-size-2xl) !important;
        /* 24px - Medium headings */
        line-height: 1.2 !important;
        margin-bottom: 1.5rem;
        text-align: center;
        max-width: 100% !important;
        width: 100% !important;
    }

    .about-text p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-align: center;
        margin-bottom: 1rem;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Mobile Font Sizing */
    .hero-main-title-centered {
        font-size: var(--font-size-2xl) !important;
        /* 24px - Medium headings */
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: var(--font-size-base) !important;
        /* 16px - Base text */
        line-height: 1.4 !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .service-item h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .service-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .service-list h4 {
        font-size: 0.95rem !important;
    }

    .service-list li {
        font-size: 0.85rem !important;
    }

    .case-study-item h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .case-study-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .cta-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .cta-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .news-item h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .news-date {
        font-size: 0.8rem !important;
    }

    .news-category {
        font-size: 0.8rem !important;
    }

    .testimonial-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .testimonial-author {
        font-size: 0.85rem !important;
    }

    .footer-content h3 {
        font-size: 0.9rem !important;
        /* Standard: 14.4px */
    }

    .footer-content p,
    .footer-content li {
        font-size: 1rem !important;
        /* Standard: 12px */
    }

    .btn {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.2rem !important;
    }

    .btn-large {
        font-size: var(--font-size-base) !important;
        /* 16px - Base text */
        padding: 0.8rem 1.5rem !important;
    }

    .footer-bottom-left p {
        font-size: 1rem !important;
        /* Standard: 12px */
    }
}




.mobile-dropdown-toggle {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--font-size-base);
    /* 16px - Base text */
    padding: 0.8rem 1rem;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.mobile-dropdown-link:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-cta {
    background: var(--primary-color);
    color: var(--text-dark) !important;
    padding: 1rem 1.5rem !important;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
}

.mobile-cta:hover {
    background: var(--primary-dark);
    border-bottom-color: transparent !important;
}

.mobile-social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-social-link {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.mobile-social-link:hover {
    color: var(--primary-color);
}

/* ===== HERO SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Mobile Navigation */

    .nav-cta {
        display: none;
    }


    .hero {
        min-height: 80vh;
        /* Increased height to prevent content cutting */
    }

    .hero-gradient-overlay {
        background: linear-gradient(135deg,
                rgba(25, 54, 95, 0.8) 0%,
                rgba(20, 42, 74, 0.7) 50%,
                rgba(251, 194, 19, 0.1) 100%);
    }


}

@media (max-width: 500px) {
    .hero {
        min-height: 70vh;
    }

    /* Mobile Event Banner */
    .mobile-event-banner {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 90px !important;
        left: 1rem !important;
        right: 1rem !important;
        z-index: 100 !important;
        background: linear-gradient(135deg, #fbbd13 0%, #e6a800 0%, #ffd700 50%, #fbbd13 100%) !important;
        border: 3px solid rgba(255, 255, 255, 0.4) !important;
        border-radius: 25px !important;
        padding: 2rem !important;
        color: #2c3e50 !important;
        box-shadow: 0 20px 60px rgba(251, 189, 19, 0.4), 0 8px 32px rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(20px) !important;
        animation: mobileBannerSlideIn 0.6s ease-out !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        cursor: pointer !important;
        overflow: hidden !important;
    }

    .mobile-event-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .mobile-event-banner:hover::before {
        transform: translateX(100%);
    }

    .mobile-event-banner:hover {
        transform: translateY(-5px) scale(1.02) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
    }

    @keyframes mobileBannerSlideIn {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes mobileBannerFloat {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    .mobile-banner-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        position: relative;
        z-index: 2;
    }

    .mobile-banner-icon {
        font-size: var(--font-size-5xl);
        /* 48px - Hero headings */
        margin-bottom: 0.5rem;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        animation: rocketFloat 3s ease-in-out infinite;
    }

    @keyframes rocketFloat {

        0%,
        100% {
            transform: translateY(0px) rotate(-5deg);
        }

        50% {
            transform: translateY(-10px) rotate(5deg);
        }
    }

    .mobile-banner-text h3 {
        font-size: 1.6rem;
        font-weight: 800;
        margin: 0 0 0.8rem 0;
        color: #2c3e50;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .mobile-banner-text p {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        color: #34495e;
        line-height: 1.5;
        text-align: center;
        max-width: 280px;
    }

    .mobile-banner-cta {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        color: white;
        padding: 1.3rem 3rem;
        text-decoration: none;
        border-radius: 35px;
        font-weight: 800;
        font-size: 1.2rem;
        letter-spacing: 1px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-top: 2rem;
        border: 3px solid rgba(255, 255, 255, 0.5);
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        min-width: 200px;
        text-align: center;
    }

    .mobile-banner-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .mobile-banner-cta:hover::before {
        left: 100%;
    }

    .mobile-banner-cta:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
        background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
        border-color: rgba(255, 255, 255, 0.7);
    }

    .mobile-banner-cta:active {
        transform: translateY(-2px) scale(1.02);
        transition: all 0.1s ease;
    }

    /* Close Button Styling */
    .mobile-banner-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        color: #e74c3c;
        font-size: 1.4rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        z-index: 10;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .mobile-banner-close:hover {
        background: rgba(255, 255, 255, 1);
        border-color: #e74c3c;
        color: #c0392b;
        transform: scale(1.15) rotate(90deg);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .mobile-banner-close:active {
        transform: scale(0.9) rotate(90deg);
    }


    /* MAXIMUM SPECIFICITY OVERRIDE */
    html body .hero .event-card+.mobile-event-banner {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Show sidebar icons, career banner, and event banner above 480px */
@media (min-width: 481px) {
    .sidebar-icons-container {
        display: flex !important;
    }

    .career-banner {
        display: block !important;
    }

    .event-banner {
        display: block !important;
    }
}

@media (max-width: 480px) {

    /* Hide sidebar icons, career banner, and event banner in hero section */
    .sidebar-icons-container {
        display: none !important;
    }

    .career-banner {
        display: none !important;
    }

    .event-banner {
        display: none !important;
    }

    .hero {
        min-height: 28vh;
        /* Increased height to prevent content cutting */
    }



    /* Video container mobile styles */
    .video-container {
        width: 62%;
        height: 100%;
    }

    /* CTA Mobile Layout */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-section {
        padding: 40px 0;
    }
}

/* ===== HERO BUTTONS SECTION RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-split-layout {
        gap: 3rem;
    }

    .hero-main-title-new {
        font-size: var(--font-size-5xl);
        /* 48px - Hero headings */
    }

    .hero-visual-container {
        width: 350px;
        height: 350px;
    }

    .design-circle-1 {
        width: 250px;
        height: 250px;
        top: -125px;
        right: -125px;
    }

    .design-circle-2 {
        width: 150px;
        height: 150px;
        bottom: -75px;
        left: -75px;
    }
}

@media (max-width: 768px) {
    .hero-buttons-section {
        padding: 0px 0;
        min-height: auto;
    }

    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content-left {
        padding-right: 0;
        order: 2;
    }

    .hero-content-right {
        order: 1;
    }

    .hero-content-wrapper {
        max-width: 100%;
    }

    .hero-main-title-new {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-cta-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .cta-btn {
        min-width: 140px;
        padding: 1rem 2rem;
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .hero-visual-container {
        width: 300px;
        height: 300px;
    }

    .visual-element {
        padding: 1rem;
    }

    .card-icon {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .card-text {
        font-size: 0.9rem;
    }

    .design-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons-section {
        padding: 0px 0;
    }

    .hero-main-title-new {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .hero-description {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .hero-badge-new {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
    }

    .hero-visual-container {
        width: 250px;
        height: 250px;
    }

    .visual-element {
        padding: 0.8rem;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .card-text {
        font-size: 0.8rem;
    }
}

/* ===== SERVICES SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .service-item p {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .service-image img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }

    .service-item {
        padding: 1rem;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }

    .service-image img {
        height: 150px;
    }
}

/* ===== CASE STUDIES SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .case-studies {
        padding: 60px 0;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .case-study-item img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .case-studies {
        padding: 40px 0;
    }

    .case-study-item img {
        height: 100% !important;
    }

    /* News slider styles */
    .news-image {
        height: 100%;
        overflow: hidden;
    }
}

/* ===== CTA SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-title {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .cta-subtitle {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}


@media (max-width: 600px) {
    .news-grid {
        display: none;
    }

}


/* ===== NEWS SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .news {
        padding: 60px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-item h3 {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .news-nav {
        margin-top: 2rem;
    }

    .nav-arrow {
        width: 44px;
        height: 44px;
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }
}

@media (max-width: 480px) {
    .news {
        padding: 40px 0;
    }

    .news-item h3 {
        font-size: 1.1rem;
        font-weight: 700;
    }

    .news-nav {
        margin-top: 1.5rem;
    }
}

/* ===== TESTIMONIALS SECTION RESPONSIVE ===== */
/* Tablet testimonial styling (769px to 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials .section-title {
        color: var(--white) !important;
        font-size: 2rem;
    }

    .testimonial-content h3 {
        color: #ffffff !important;
        font-size: 1.4rem;
    }

    .testimonial-content blockquote {
        color: #ffffff !important;
        font-size: 1.1rem;
        opacity: 1;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .testimonial-content p {
        color: #ffffff !important;
        opacity: 1;
    }

    .testimonial-slide blockquote {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    .testimonials-slider {
        padding: 0 1.5rem;
    }

    .testimonial-nav {
        margin-top: 2.5rem;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials .section-title {
        color: var(--white) !important;
    }

    .testimonial-content {
        padding: 0 1rem;
    }

    .testimonial-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #ffffff !important;
    }

    .testimonial-content blockquote {
        font-size: var(--font-size-base);
        /* 16px - Base text */
        line-height: 1.6;
        color: #ffffff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .testimonial-content p {
        color: #ffffff !important;
    }

    .testimonial-slide blockquote {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    .testimonial-nav {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .nav-arrow {
        width: 44px;
        height: 44px;
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .testimonial-dots {
        gap: 0.8rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonials .section-title {
        color: var(--white) !important;
        font-size: 1.5rem;
    }

    .testimonial-content h3 {
        font-size: 1.2rem;
        color: #ffffff !important;
    }

    .testimonial-content blockquote {
        font-size: 0.9rem;
        color: #ffffff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        line-height: 1.5;
    }

    .testimonial-content p {
        color: #ffffff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }

    .testimonial-slide blockquote {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    .testimonial-nav {
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h4 {
        margin-bottom: 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Center contact section for mobile */
    .footer-section:last-child h4 {
        text-align: center;
    }

    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info p {
        justify-content: center;
    }

    /* Fix social icons circle shape on mobile */
    .footer-bottom-right .social-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        flex-shrink: 0;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
        font-size: 1.1rem !important;
        border: 1px solid transparent !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .footer-bottom-right .social-icon i {
        margin: 0 !important;
        line-height: 1 !important;
        display: block !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Better hover effects on mobile */
    .footer-bottom-right .social-icon:hover {
        background: var(--primary-color) !important;
        color: #000000 !important;
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 6px 20px rgba(251, 194, 19, 0.5) !important;
        border-color: var(--primary-color) !important;
    }

    .footer-bottom-right .social-icon:hover i {
        transform: scale(1.1) !important;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 0px 0 20px;
    }

    .footer-section {
        padding: 0 1rem;
    }

    /* Ensure perfect circles on very small screens */
    .footer-bottom-right .social-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.1) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid transparent !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .footer-bottom-right .social-icon:hover {
        background: var(--primary-color) !important;
        color: #000000 !important;
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 6px 20px rgba(251, 194, 19, 0.5) !important;
        border-color: var(--primary-color) !important;
    }

    .footer-bottom-right .social-icon:hover i {
        transform: scale(1.1) !important;
    }

    .footer-bottom-right .social-links {
        gap: 1.5rem;
        justify-content: center;
    }
}







/* ===== ENHANCED MOBILE RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: var(--font-size-base);
        /* 16px - Base text */
        line-height: 1.5;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: var(--font-size-base);
        /* 16px - Base text */
        min-height: 48px;
    }

    /* Enhanced touch targets */
    .nav-link,
    .dropdown-link,
    .service-dropdown button {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Better spacing for mobile */
    section {
        padding: 60px 0;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        min-height: 44px;
        width: 100%;
        max-width: 280px;
    }

    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px;
    }

    /* Ultra-compact mobile spacing */
    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }
}

/* ===== MOBILE-SPECIFIC ENHANCEMENTS ===== */
@media (max-width: 768px) {

    /* Improved readability */
    body {
        font-size: var(--font-size-base);
        /* 16px - Base text */
        line-height: 1.6;
    }

    /* Better form elements */
    input,
    textarea,
    select {
        font-size: var(--font-size-base);
        /* 16px - Base text */
        /* Prevents zoom on iOS */
        min-height: 44px;
    }

    /* Enhanced card layouts */
    .description-card,
    .service-item,
    .case-study-item {
        margin-bottom: 1rem;
    }

    /* Optimized grid gaps */
    .logos-grid,
    .services-grid,
    .case-studies-grid {
        gap: 1rem;
    }

    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Improved button spacing */
    .hero-cta-buttons,
    .cta-buttons {
        gap: 1rem;
    }

    /* Enhanced navigation */

    /* Better dropdown handling */
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
}

@media (max-width: 480px) {

    /* Ultra-mobile optimizations */
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .services-grid-centered {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Compact spacing */
    .description-card,
    .service-item {
        padding: 1.2rem;
    }

    /* Full-width buttons on mobile */
    .cta-btn,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
    }

    /* Better mobile navigation */

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* ===== MOBILE PERFORMANCE OPTIMIZATIONS ===== */
@media (max-width: 768px) {

    /* Reduce animations on mobile for better performance */
    .visual-element {
        animation-duration: 2s;
    }

    /* Optimize shadows for mobile */
    .description-card,
    .service-item,
    .logo-item {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Reduce backdrop-filter usage on mobile */
    .description-card,
    .service-item,
    .logo-item,
    .global-presence-centered {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.95);
    }
}

/* ===== MOBILE ACCESSIBILITY ENHANCEMENTS ===== */
@media (max-width: 768px) {

    /* Better focus states */
    .btn:focus,
    .nav-link:focus,
    .dropdown-toggle:focus {
        outline: none;
    }

    /* Improved contrast for mobile */
    .section-title,
    .card-title,
    .service-name {
        color: var(--text-dark);
    }

    /* Better text hierarchy */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    p {
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

/* ===== MOBILE LANDSCAPE OPTIMIZATIONS ===== */
@media (max-width: 768px) {

    /* Ensure all interactive elements are touch-friendly */
    .logo-item,
    .service-item,
    .case-study-item,
    .news-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Better mobile scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Optimize mobile performance */
    .visual-element,
    .about-bg-elements {
        will-change: transform;
    }

    /* Better mobile shadows */
    .description-card:hover,
    .service-item:hover,
    .logo-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Mobile-optimized animations */
    @media (prefers-reduced-motion: reduce) {

        .visual-element,
        .about-bg-elements {
            animation: none;
        }
    }
}

@media (max-width: 480px) {

    /* Ultra-mobile specific optimizations */
    .hero-main-title-new {
        word-break: break-word;
        hyphens: auto;
    }

    .about-description {
        text-align: justify;
        text-justify: inter-word;
    }

    /* Better mobile grid layouts */
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .services-grid-centered {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Mobile-optimized spacing */
    .hero-badge-new,
    .about-badge {
        margin-bottom: 1.5rem;
    }

    .section-title-enhanced {
        margin-bottom: 1.5rem;
    }

    .about-description-section {
        gap: 1.5rem;
    }

    .about-services-section {
        margin-top: 2rem;
    }

    .global-presence-centered {
        margin-top: 2rem;
    }
}

/* ===== MOBILE ACCESSIBILITY FINAL TOUCHES ===== */
@media (max-width: 768px) {

    /* Ensure proper focus indicators */
    .btn:focus-visible,
    .nav-link:focus-visible,
    .dropdown-toggle:focus-visible {
        outline: none;
    }

    /* Better mobile contrast */
    .section-title,
    .card-title,
    .service-name,
    .presence-title {
        color: var(--text-dark);
        text-shadow: none;
    }

    /* Mobile-optimized text */
    .about-description,
    .service-item p,
    .testimonial-content blockquote {
        color: var(--text-light);
        line-height: 1.6;
    }

    /* Ensure mobile readability */
    .logo-item img {
        filter: brightness(0) invert(0);
    }

    .logo-item:hover img {
        filter: brightness(1) invert(0);
    }
}

@media (max-width: 768px) {
    .hero-buttons-section {
        padding: 0px 0;
        min-height: 0vh;
    }

    .hero-main-title {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-item {
        padding: 0.8rem 1rem;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    .hero-buttons-inner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .hero-buttons-section .btn {
        min-width: 100%;
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .stat-number {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons-section {
        padding: 25px 0 !important;
    }

    .hero-main-title {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 250px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        flex-direction: row;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;

    }
}



.ref-testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ref-testimonial-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}




/* CTA Section - Enhanced Design - MOVED TO about.css */
.ref-cta-section {
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ref-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


.ref-cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ref-cta-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.ref-cta-section p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ref-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.ref-cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ref-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #fbc213 0%, #e6a800 100%);
    color: #19365f;
    border: 2px solid #fbc213;
    box-shadow: 0 8px 25px rgba(251, 194, 19, 0.4);
}

.ref-cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 194, 19, 0.6);
    background: linear-gradient(135deg, #ffd700 0%, #fbc213 100%);
}

.ref-cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.ref-cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for CTA Section */
@media (max-width: 768px) {
    .ref-cta-section {
        padding: 6rem 0;
    }

    .ref-cta-section h2 {
        font-size: 2.5rem;
    }

    .ref-cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .ref-cta-buttons {
        gap: 1rem;
    }

    .ref-cta-buttons .btn {
        padding: 1rem 2rem;
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }
}

@media (max-width: 480px) {
    .ref-cta-section {
        padding: 5rem 0;
    }

    .ref-cta-section h2 {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .ref-cta-section p {
        font-size: 1.1rem;
    }

    .ref-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ref-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}



/* Creative styles moved to creative.css */

/* New Contact Page Styles */
.contact-main-section {
    min-height: calc(100vh - 80px);
    padding: 3rem 0 2rem 0;
    margin-top: 0px;
    background: #f8f9fa;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 2rem 0;
}

.contact-info-section h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.contact-details a {
    color: #000;
    text-decoration: underline;
}

.social-connect {
    margin-bottom: 3rem;
}

.social-connect h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links-contact a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.social-links-contact a:hover {
    color: #fbbd13;
}

.awards-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.award-badge i {
    font-size: 1.5rem;
    color: #4285f4;
}

.award-icon {
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.award-badge strong {
    font-size: 0.9rem;
    color: #000;
    display: block;
}

.award-badge p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.copyright {
    position: absolute;
    bottom: 2rem;
    left: 0;
}

.copyright p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.contact-form-section {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
}

.new-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: var(--font-size-base);
    /* 16px - Base text */
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #fbbd13;
}

/* Phone Input with Country Dropdown */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    min-height: 56px;
}

.phone-input-wrapper:focus-within {
    border-color: #fbc213;
    background: white;
    box-shadow: 0 0 0 4px rgba(251, 194, 19, 0.15);
    transform: translateY(-2px);
}

.country-selector {
    position: relative;
    cursor: pointer;
}

.country-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 20px;
    background: rgba(251, 194, 19, 0.1);
    border-radius: 10px 0 0 10px;
    border-right: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.country-display:hover {
    background: rgba(251, 194, 19, 0.2);
}

.selected-flag {
    font-size: 1.4rem;
    line-height: 1;
}

.selected-code {
    font-size: 1rem;
    color: #1a1a2e;
    font-weight: 600;
}

.dropdown-arrow {
    font-size: 0.8rem;
    color: #666;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.country-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border: 2px solid #fbc213;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.country-dropdown.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.country-option:hover {
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.1), rgba(255, 107, 53, 0.1));
    transform: translateX(4px);
}

.country-option.selected {
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.2), rgba(255, 107, 53, 0.2));
    font-weight: 600;
}

.country-option .flag {
    font-size: 1.2rem;
    line-height: 1;
    min-width: 24px;
}

.country-option .country-name {
    flex: 1;
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 500;
}

.country-option .code {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    background: rgba(251, 194, 19, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.phone-input-wrapper input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    background: transparent;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
}

.phone-input-wrapper input::placeholder {
    color: #999;
    font-weight: 400;
}

/* Scrollbar Styling */
.country-dropdown::-webkit-scrollbar {
    width: 6px;
}

.country-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.country-dropdown::-webkit-scrollbar-thumb {
    background: #fbc213;
    border-radius: 3px;
}

.country-dropdown::-webkit-scrollbar-thumb:hover {
    background: #e6a800;
}

.submit-btn {
    background: #fbbd13;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: var(--font-size-base);
    /* 16px - Base text */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #e6a600;
    transform: translateY(-2px);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-section h1 {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .contact-main-section {
        padding: 1rem 0;
    }

    .awards-section {
        flex-direction: column;
        gap: 1rem;
    }

    .copyright {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section h1 {
        font-size: 1.5rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .social-links-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Case Studies/Work Grid */



/* Utility Classes */
.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

/* News Item Link Styles */
.news-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.news-item-link:hover {
    transform: translateY(-5px);
}

.news-item-link:hover .news-item {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: none;
    /* Prevent double transform */
}

/* Chili news item image positioning */
.news-item-3 .news-image {
    position: relative;
}





/* Qatar Hero Section */
.qatar-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fbc213 0%, #19365f 50%, #fbc213 100%);
    overflow: hidden;
}

.qatar-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.qatar-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.qatar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.qatar-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

/* Qatar Hero Content - Centered Layout */
.qatar-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    padding-top: 2rem;
}

/* Original hero content styling for left side */
.qatar-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    padding-top: 2rem;
}

.qatar-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.qatar-hero-description {
    margin-bottom: 3rem;
}

.qatar-hero-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    color: var(--white);
}

.qatar-highlight {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.qatar-highlight h2 {
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.qatar-highlight p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--white);
}

.qatar-location h3 {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.qatar-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Responsive Design for Qatar Hero */
@media (max-width: 768px) {
    .qatar-hero-title {
        font-size: 2.5rem;
    }

    .qatar-highlight h2 {
        font-size: 1.5rem;
    }

    .qatar-hero-description p {
        font-size: 1.1rem;
    }

    .qatar-location h3 {
        font-size: 1.1rem;
    }

    .qatar-hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Golden Berry Card Styling */
.golden-berry-card {
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.2) 0%, rgba(25, 54, 95, 0.3) 100%);
    backdrop-filter: blur(25px);
    border-radius: 32px;
    padding: 3rem;
    margin-top: 4rem;
    border: 3px solid rgba(251, 194, 19, 0.4);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

/* Golden Berry Card Image Only (Right Side) */
.golden-berry-card-image {
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.15) 0%, rgba(25, 54, 95, 0.25) 100%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 2rem;
    border: 2px solid rgba(251, 194, 19, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.golden-berry-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 194, 19, 0.5), transparent);
}

.golden-berry-card-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(251, 194, 19, 0.6);
}

.golden-berry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 194, 19, 0.6), transparent);
}

.golden-berry-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(251, 194, 19, 0.7);
}

.card-image-container {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.card-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(251, 194, 19, 0.1), transparent);
    pointer-events: none;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.1);
}

.golden-berry-card:hover .card-image {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.15);
}

.card-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    color: var(--white);
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, #fbc213 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

/* Mobile responsive for Golden Berry Card */
@media (max-width: 768px) {
    .golden-berry-card {
        padding: 2rem;
        margin-top: 3rem;
        max-width: 90%;
        border-radius: 24px;
    }

    .card-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .card-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .card-image-container {
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }
}

/* Golden Berry Launch Section - Left Right Layout */
.golden-berry-launch {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.golden-berry-launch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23fbc213" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.launch-content-left {
    flex: 1;
    max-width: 600px;
}

.launch-content-right {
    flex: 0 0 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.launch-header {
    margin-bottom: 2.5rem;
}

.launch-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.launch-description {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.launch-location {
    margin-bottom: 3rem;
}

.launch-location h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 500;
}

.launch-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Launch Image Card */
.launch-image-card {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(251, 194, 19, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.launch-image-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(251, 194, 19, 0.2);
}

.image-card-container {
    position: relative;
    overflow: hidden;
}

.launch-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.launch-image-card:hover .launch-image {
    transform: scale(1.1);
}

.image-card-overlay {
    display: none;
}

.overlay-content h3 {
    font-size: var(--font-size-2xl);
    /* 24px - Medium headings */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.overlay-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(251, 194, 19, 0.9);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.golden-berry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23fbc213" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.campaign-header {
    text-align: center;
    margin-bottom: 4rem;
}



.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.campaign-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-card {
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(251, 194, 19, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.showcase-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 50px 150px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(251, 194, 19, 0.2);
}

.showcase-image-container {
    position: relative;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover .showcase-image {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.showcase-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.showcase-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(251, 194, 19, 0.9);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile responsive for Golden Berry Launch Section */
@media (max-width: 1024px) {
    .launch-layout {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .launch-content-left {
        max-width: 100%;
    }

    .launch-content-right {
        flex: none;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .golden-berry-launch {
        padding: 80px 0;
    }

    .launch-layout {
        gap: 2rem;
    }

    .launch-title {
        font-size: 2.2rem;
    }

    .launch-description {
        font-size: 1.2rem;
    }

    .launch-location h3 {
        font-size: 1.1rem;
    }

    .launch-cta {
        justify-content: center;
    }

    .launch-content-right {
        max-width: 400px;
    }

    .launch-image-card {
        border-radius: 24px;
    }

    .image-card-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .overlay-content h3 {
        font-size: 1.6rem;
    }

    .overlay-features {
        gap: 0.8rem;
        justify-content: center;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .launch-title {
        font-size: 1.8rem;
    }

    .launch-image-card {
        border-radius: 20px;
    }

    .overlay-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .qatar-hero-layout {
        gap: 2rem;
        padding-top: 1rem;
    }

    .hero-content-right {
        max-width: 400px;
    }

    .golden-berry-card-image {
        padding: 1rem;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .golden-berry-card {
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 20px;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

    .card-content p {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }
}

@media (max-width: 480px) {
    .qatar-hero-title {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .qatar-highlight {
        padding: 1.5rem;
    }

    .qatar-highlight h2 {
        font-size: 1.3rem;
    }
}



.esko-image-section {
    padding: 0rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.esko-image-section .container {
    max-width: none;
    padding: 0;
}

.esko-image-section .image-content {
    width: 100%;
}

.esko-image-section img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive styles for About page */
@media (max-width: 768px) {
    .ref-hero h1 {
        font-size: clamp(2rem, 8vw, 2rem);
    }

    .ref-hero h2 {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .ref-hero h3 {
        font-size: 1.2rem;
    }

    .ref-text-block h1 {
        font-size: 2.5rem;
    }

    .ref-text-block h2 {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .ref-text-block p {
        font-size: 1.1rem;
    }

    /* Board of Directors Responsive - Tablet */
    .board-directors-section {
        padding: 100px 0;
    }

    .board-title {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }

    .board-subtitle {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }

    .board-member {
        height: 450px;
    }


    .board-info {
        padding: 1.5rem;
    }

    .board-info h3 {
        font-size: 1.5rem;
    }

    .board-designation {
        font-size: 0.9rem;
    }

    .ref-cta-section h2 {
        font-size: 2.2rem;
    }

    .ref-cta-section p {
        font-size: 1.1rem;
    }

}

@media (max-width: 480px) {
    .ref-hero h1 {
        font-size: clamp(2rem, 8vw, 2rem);
    }

    .ref-hero h2 {
        font-size: 1.5rem;
    }

    .ref-hero h3 {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    .ref-text-block h1 {
        font-size: var(--font-size-2xl);
        /* 24px - Medium headings */
    }

    .ref-text-block h2 {
        font-size: 1.5rem;
    }

    .ref-text-block p {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

    /* Board of Directors Responsive - Mobile */
    .board-directors-section {
        padding: 80px 0;
    }

    .board-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .board-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .board-member {
        height: 400px;
        margin: 0 auto;
        max-width: 350px;
    }


    .board-info {
        padding: 1.5rem;
    }

    .board-info h3 {
        font-size: 1.3rem;
    }

    .board-designation {
        font-size: 0.85rem;
    }

    .ref-cta-section h2 {
        font-size: 1.8rem;
    }

    .ref-cta-section p {
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }

}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(251, 194, 19, 0.95), rgba(230, 168, 0, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background: linear-gradient(135deg, rgba(251, 194, 19, 1), rgba(230, 168, 0, 1));
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 15px 40px rgba(251, 194, 19, 0.4);
}

.back-to-top i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: var(--font-size-base);
        /* 16px - Base text */
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Chilli styles moved to assets/css/chilli.css */











.selected-flag {
    font-size: 1.2rem;
}

.selected-code {
    font-size: 0.9rem;
    min-width: 45px;
    padding: 3px 6px;
}

.country-selector input {
    font-size: 0.95rem;
}

.country-dropdown {
    max-height: 200px;
}

.search-container {
    padding: 12px;
}

.country-search {
    padding: 10px 12px 10px 35px;
    font-size: 0.85rem;
}

.search-icon {
    left: 24px;
    font-size: 0.8rem;
}

.country-option {
    padding: 10px 12px;
    gap: 0.6rem;
}

.country-option .flag {
    font-size: 1.1rem;
    min-width: 20px;
}

.country-option .country-name {
    font-size: 0.9rem;
}

.country-option .code {
    font-size: 0.8rem;
    padding: 2px 4px;
}


/* CTA Section - Universal Styles */
.cta-section {
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}



.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-outline:hover {
    background: white;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.cta-logo img {
    max-width: 300px;
    height: auto;
    opacity: 0.9;
    filter: brightness(1.1);
}

/* CTA Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 6rem 0;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-logo {
        height: 200px;
    }

    .cta-logo img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2rem 0;
    }

    .cta-content {
        padding: 0 1rem;
        gap: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline {
        width: 100%;
        max-width: 250px;
    }
}


/* ========================================
   FOOTER SIZE REDUCTION
   ======================================== */

/* Footer Logo Size Reduction */
.footer-brand .logo {
    height: 100px !important;
    width: 140px !important;
}

/* Footer Paragraph Spacing Reduction */
.footer-brand p {
    margin-bottom: 1rem !important;
}


/* ========================================
   SLIDER TOUCH SCROLL DISABLED
   ======================================== */

/* Disable touch scrolling on all slider containers */
.slider-container,
.slider-wrapper,
.slider-track,
.index-slider-container,
.index-slider-wrapper,
.case-studies-slider,
.news-slider,
.testimonials-slider,
.company-slider-section .slider-container,
.company-slider-section .slider-wrapper {
    touch-action: none !important;
}

/* Ensure slider tracks don't respond to touch gestures */
.slider-track,
.index-slider-wrapper,
.case-studies-slider .slider-track,
.news-slider .slider-track {
    touch-action: none !important;
    -webkit-overflow-scrolling: auto !important;
}

/* Disable touch scrolling on slider slides */
.slider-slide,
.index-slider-slide,
.case-study-card,
.news-item-link,
.testimonial-slide {
    touch-action: none !important;
}

section#full-width-video {
    padding: 0px;
}