/* ============================
   CSS Reset & Variables
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ============================
       BRAND COLORS
    ============================ */
    --primary: #1e73be;
    --primary-dark: #155a94;
    --primary-light: #3a8dd6;
    --secondary: #f7941d;
    --secondary-dark: #e07b0d;
    --secondary-light: #ffa73d;
    --accent: #f7941d;
    
    /* ============================
       NEUTRAL COLORS
    ============================ */
    --white: #FFFFFF;
    --black: #000000;
    --dark: #1a1a1a;
    --dark-blue: #2c3e50;
    --light-gray: #f9f9f9;
    --medium-gray: #e3e9f0;
    --border-gray: #e0e0e0;
    
    /* ============================
       TEXT COLORS
    ============================ */
    --text-primary: #FFFFFF;
    --text-secondary: #666666;
    --text-dark: #333333;
    --text-muted: #999999;
    
    /* ============================
       BACKGROUND COLORS - Theme System
    ============================ */
    --bg-white: #FFFFFF;
    --bg-light: #f9f9f9;
    --bg-gradient-light: linear-gradient(135deg, #f5f7fa 0%, #e3e9f0 100%);
    --bg-dark: #1a1a1a;
    --bg-gradient-dark: linear-gradient(135deg, rgba(30, 115, 190, 0.95) 0%, rgba(44, 62, 80, 0.95) 100%);
    
    /* ============================
       SPACING SYSTEM
    ============================ */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 2rem;      /* 32px */
    --spacing-lg: 4rem;      /* 64px */
    --spacing-xl: 6rem;      /* 96px */
    --spacing-xxl: 8rem;     /* 128px */
    
    /* Section Padding */
    --section-padding: var(--spacing-xl) 0;
    --section-padding-sm: var(--spacing-lg) 0;
    
    /* ============================
       TYPOGRAPHY
    ============================ */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Font Sizes */
    --font-xs: 0.75rem;      /* 12px */
    --font-sm: 0.875rem;     /* 14px */
    --font-base: 1rem;       /* 16px */
    --font-lg: 1.125rem;     /* 18px */
    --font-xl: 1.25rem;      /* 20px */
    --font-2xl: 1.5rem;      /* 24px */
    --font-3xl: 2rem;        /* 32px */
    --font-4xl: 2.5rem;      /* 40px */
    --font-5xl: 3rem;        /* 48px */
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
    
    /* ============================
       TRANSITIONS
    ============================ */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* ============================
       SHADOWS
    ============================ */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* ============================
       BORDER RADIUS
    ============================ */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
    
    /* ============================
       Z-INDEX LAYERS
    ============================ */
    --z-behind: -1;
    --z-base: 0;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #FFFFFF;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================
   Navigation
============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.875rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 1rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all var(--transition-normal);
    filter: brightness(1);
    display: block;
}

.logo-img:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================
   Buttons
============================ */
.btn-primary,
.btn-outline,
.btn-download {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(30, 115, 190, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 115, 190, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-download {
    background: var(--secondary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
}

.btn-download:hover {
    background: #e07b0d;
    transform: translateY(-2px);
}

/* ============================
   Hero Section with Slideshow
============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide.active .hero-bg-img {
    animation: kenBurnsZoom 12s ease-out forwards;
}

.hero-slide.active .hero-text {
    animation: slideInUp 1s ease-out forwards;
}

.hero-slide.active .hero-subtitle {
    animation: fadeInDown 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-slide.active .hero-title {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-slide.active .hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    opacity: 0;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.15) translateX(-20px);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(60px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.85) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.hero-text {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    z-index: 10;
    pointer-events: none;
}

.slide-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.slide-arrow svg {
    width: 24px;
    height: 24px;
}

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--text-primary);
    width: 40px;
    border-radius: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-primary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================
   Sections
============================ */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* ============================
   Verticals Section
============================ */
.verticals {
    padding: var(--spacing-xl) 0;
    background: #f9f9f9;
}

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

.verticals-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ============================
   What We Are Section
============================ */
.what-we-are {
    padding: var(--spacing-xl) 0;
}

.what-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.what-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-weight: 500;
}

.what-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

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

/* ============================
   Core Values Section
============================ */
.core-values {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
    color: var(--text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-slow);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.value-card:hover .value-icon img {
    transform: scale(1.1);
}

.value-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.value-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ============================
   Vision Section
============================ */
.vision {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f0 100%);
}

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

.vision-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.vision-highlight {
    background: var(--primary);
    color: var(--text-primary);
    padding: 2rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.vision-highlight:hover {
    transform: scale(1.05);
}

.vision-highlight p {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* ============================
   Partners Section
============================ */
.partners {
    padding: var(--spacing-lg) 0;
    background: #ffffff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    align-items: center;
    justify-items: center;
}

.partner-logo {
    padding: 1rem;
    transition: transform var(--transition-normal);
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partner-logo img {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    transition: filter var(--transition-normal);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* ============================
   Blog Section with Slideshow
============================ */
.blogs {
    padding: var(--spacing-xl) 0;
    background: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.blog-slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-slideshow {
    overflow: hidden;
    position: relative;
}

.blog-track {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.blog-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 320px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.blog-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
    display: inline-block;
}

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

/* Blog Slideshow Controls */
.blog-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 0;
    pointer-events: none;
    z-index: 10;
}

.blog-arrow {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.blog-arrow:hover {
    background: var(--primary-dark);
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

.blog-arrow svg {
    width: 24px;
    height: 24px;
}

.blog-prev {
    transform: translateX(-25px);
}

.blog-next {
    transform: translateX(25px);
}

.blog-prev:hover {
    transform: translateX(-25px) scale(1.15);
}

.blog-next:hover {
    transform: translateX(25px) scale(1.15);
}

/* Blog Indicators */
.blog-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.blog-indicator {
    width: 12px;
    height: 12px;
    background: rgba(30, 115, 190, 0.3);
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0;
}

.blog-indicator:hover {
    background: rgba(30, 115, 190, 0.6);
    transform: scale(1.2);
}

.blog-indicator.active {
    background: var(--primary);
    width: 40px;
    border-radius: 10px;
}

/* ============================
   Footer - Ultra Sleek Professional Design
============================ */
.footer {
    background: #0a1628;
    color: var(--text-primary);
    padding: 3rem 0 0;
    position: relative;
    border-top: 1px solid rgba(247, 148, 29, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    width: 120px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(1.4);
}

.footer-main {
    text-align: left;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 0.85rem;
}

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

.footer-contact {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.8rem;
}

.footer-contact strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.8rem;
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================
   Animations
============================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ============================
   Responsive Design
============================ */
@media (max-width: 1024px) {
    .what-we-are-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem var(--spacing-sm);
    }
    
    .nav-logo {
        margin-right: 0.5rem;
    }
    
    .logo-img {
        height: 42px;
        max-width: 160px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--text-primary);
        font-size: 1.1rem;
    }
    
    .nav-link::after {
        background: var(--text-primary);
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Slideshow mobile adjustments */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary {
        width: 100%;
    }
    
    .slide-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slide-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .slideshow-controls {
        padding: 0 1rem;
    }
    
    .slideshow-indicators {
        bottom: 80px;
    }
    
    /* Blog slideshow mobile */
    .blog-card {
        flex: 0 0 100%;
        min-width: 280px;
    }
    
    .blog-arrow {
        width: 40px;
        height: 40px;
    }
    
    .blog-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .blog-prev {
        transform: translateX(-10px);
    }
    
    .blog-next {
        transform: translateX(10px);
    }
    
    .blog-prev:hover {
        transform: translateX(-10px) scale(1.1);
    }
    
    .blog-next:hover {
        transform: translateX(10px) scale(1.1);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .logo-img {
        height: 40px;
    }
}

/* ============================
   THEME SECTION COMPONENTS
   Standardized sections for consistent design
============================ */

/* Section Backgrounds - Apply these classes to <section> tags */
.theme-section-white {
    background: var(--bg-white);
    padding: var(--section-padding);
}

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

.theme-section-gradient-light {
    background: var(--bg-gradient-light);
    padding: var(--section-padding);
}

.theme-section-dark {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: var(--section-padding);
}

.theme-section-primary {
    background: var(--primary);
    color: var(--text-primary);
    padding: var(--section-padding);
}

/* Section Headers - Use within sections */
.theme-section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.theme-section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.theme-section-dark .theme-section-title {
    color: var(--text-primary);
}

.theme-section-subtitle {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.theme-section-description {
    font-size: var(--font-lg);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    max-width: 800px;
    margin: 0 auto;
}

/* Card Components */
.theme-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.theme-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.theme-card-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Grid Layouts */
.theme-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    align-items: center;
}

.theme-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.theme-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.theme-grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

/* Typography Utilities */
.theme-text-center {
    text-align: center;
}

.theme-text-large {
    font-size: var(--font-lg);
    line-height: var(--line-height-relaxed);
}

.theme-highlight {
    background: var(--primary);
    color: var(--text-primary);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.theme-highlight:hover {
    transform: scale(1.05);
}

.theme-quote {
    font-size: var(--font-xl);
    font-style: italic;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: var(--spacing-md);
    margin: var(--spacing-md) 0;
    font-weight: 500;
}

/* Image Components */
.theme-image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.theme-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

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

/* Spacing Utilities */
.theme-spacing-top {
    margin-top: var(--spacing-lg);
}

.theme-spacing-bottom {
    margin-bottom: var(--spacing-lg);
}

.theme-max-width {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .theme-grid-2,
    .theme-grid-3,
    .theme-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .theme-grid-2,
    .theme-grid-3,
    .theme-grid-4,
    .theme-grid-auto {
        grid-template-columns: 1fr;
    }
    
    .theme-section-white,
    .theme-section-light,
    .theme-section-gradient-light,
    .theme-section-dark,
    .theme-section-primary {
        padding: var(--spacing-lg) 0;
    }
}
