/*
 * ============================================
 * MODULONTECH - Eitech Clone
 * Design System & Main Stylesheet
 * ============================================
 */

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
    /* Colors */
    --color-primary: #050734;
    --color-accent: #4361ee;
    --color-secondary: #3f37c9;
    --color-light-bg: #F1F0FE;
    --color-white: #FFFFFF;
    --color-heading-dark: #050734;
    --color-body-text: #555869;
    --color-body-text-light: #8b8d9a;
    --color-green-accent: #00FF00;
    --color-border: rgba(67, 97, 238, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3f37c9 0%, #4361ee 100%);
    --gradient-hero: linear-gradient(180deg, #050734 0%, #0a0f5c 100%);
    --gradient-accent: linear-gradient(135deg, #4361ee 0%, #4895ef 100%);
    --gradient-dark: linear-gradient(180deg, #050734 0%, #0c1052 100%);

    /* Typography */
    --font-primary: 'Figtree', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Font Sizes */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-lg: 1.125rem;
    /* 18px */
    --text-xl: 1.25rem;
    /* 20px */
    --text-2xl: 1.5rem;
    /* 24px */
    --text-3xl: 1.875rem;
    /* 30px */
    --text-4xl: 2.25rem;
    /* 36px */
    --text-5xl: 3rem;
    /* 48px */
    --text-6xl: 3.75rem;
    /* 60px */
    --text-7xl: 4.5rem;
    /* 72px */

    /* Spacing */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 1.5rem;
    /* 24px */
    --spacing-lg: 2rem;
    /* 32px */
    --spacing-xl: 3rem;
    /* 48px */
    --spacing-2xl: 5rem;
    /* 80px */
    --spacing-3xl: 7.5rem;
    /* 120px */

    /* Border Radius */
    --radius-sm: 0.5rem;
    /* 8px */
    --radius-md: 0.9375rem;
    /* 15px */
    --radius-lg: 1.5625rem;
    /* 25px */
    --radius-xl: 2rem;
    /* 32px */
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(67, 97, 238, 0.08);
    --shadow-md: 0 10px 40px rgba(67, 97, 238, 0.15);
    --shadow-lg: 0 20px 60px rgba(67, 97, 238, 0.25);
    --shadow-card: 0 10px 40px rgba(5, 7, 52, 0.1);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max: 1320px;
    --container-padding: 1.5rem;

    /* Header */
    --header-height: 90px;
}

/* ============================================
   THEME SYSTEM - Comprehensive Overrides
   ============================================ */


/* ----------------------------------------
   BLUE-ORANGE THEME (Professional with Orange Accent)
   ---------------------------------------- */
body.theme-blue-orange {
    --color-primary: #050734;
    --color-secondary: #0a0f5c;
    --color-accent: #CA6500;
    --color-heading-dark: #050734;
    --color-body-text: #555869;
    --color-light-bg: #fff8f3;
    --color-border: rgba(202, 101, 0, 0.2);
    --gradient-hero: linear-gradient(135deg, #050734 0%, #0a0f5c 50%, #050734 100%);
    --gradient-accent: linear-gradient(135deg, #CA6500 0%, #FFBD45 100%);
    --gradient-dark: linear-gradient(180deg, #050734 0%, #0c1052 100%);
}

body.theme-blue-orange .header-btn {
    background: var(--gradient-accent);
    color: #fff;
}

body.theme-blue-orange .btn-v2-primary,
body.theme-blue-orange .btn-primary {
    background: var(--gradient-accent);
    color: #fff;
}

body.theme-blue-orange .hero-v2-label,
body.theme-blue-orange .hero-badge {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

body.theme-blue-orange .highlight-gradient {
    background: linear-gradient(135deg, #CA6500 0%, #FFBD45 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.theme-blue-orange .circle-progress {
    background: conic-gradient(var(--color-accent) calc(var(--value) * 1%), #e5e7eb 0);
}

body.theme-blue-orange .about-experience-card .exp-icon {
    background: var(--gradient-accent);
}

body.theme-blue-orange .about-star i {
    color: var(--color-accent);
}

body.theme-blue-orange .about-cta {
    background: var(--gradient-accent);
    color: #fff;
}

body.theme-blue-orange .about-quote {
    border-left-color: var(--color-accent);
}

body.theme-blue-orange .service-card:hover {
    border-color: var(--color-accent);
}

body.theme-blue-orange .service-icon {
    color: var(--color-accent);
}

body.theme-blue-orange .benefit-icon {
    background: rgba(202, 101, 0, 0.1);
    color: var(--color-accent);
}

body.theme-blue-orange .step-number {
    background: var(--gradient-accent);
    color: #fff;
}

body.theme-blue-orange .footer-link:hover {
    color: var(--color-accent);
}

body.theme-blue-orange .scroll-to-top {
    background: var(--color-accent);
    color: #fff;
}

body.theme-blue-orange .scroll-to-top i,
body.theme-blue-orange .scroll-to-top svg {
    color: #fff;
}

body.theme-blue-orange .cta-btn {
    background: var(--gradient-accent);
    color: #fff;
}

body.theme-blue-orange .position-btn {
    background: var(--gradient-accent);
    color: #fff;
}

body.theme-blue-orange .orb-1 {
    background: radial-gradient(circle, rgba(202, 101, 0, 0.3) 0%, transparent 70%);
}

body.theme-blue-orange .orb-2 {
    background: radial-gradient(circle, rgba(255, 189, 69, 0.2) 0%, transparent 70%);
}




/* ----------------------------------------
   NAVY THEME (Deep Navy & Cyan)
   ---------------------------------------- */
body.theme-navy {
    --color-primary: #0F172A;
    --color-secondary: #1E293B;
    --color-accent: #38BDF8;
    --color-heading-dark: #0F172A;
    --color-body-text: #475569;
    --color-light-bg: #F0F9FF;
    --color-border: rgba(56, 189, 248, 0.2);
    --gradient-hero: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    --gradient-accent: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
    --gradient-dark: linear-gradient(180deg, #020617 0%, #0F172A 100%);
}

body.theme-navy .header-btn,
body.theme-navy .btn-v2-primary,
body.theme-navy .btn-primary,
body.theme-navy .about-cta,
body.theme-navy .step-number,
body.theme-navy .cta-btn,
body.theme-navy .position-btn {
    background: var(--gradient-accent);
    color: #fff;
}

body.theme-navy .hero-v2-label,
body.theme-navy .hero-badge,
body.theme-navy .service-card:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

body.theme-navy .highlight-gradient {
    background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.theme-navy .circle-progress {
    background: conic-gradient(var(--color-accent) calc(var(--value) * 1%), #e5e7eb 0);
}

body.theme-navy .about-experience-card .exp-icon {
    background: var(--gradient-accent);
}

body.theme-navy .about-star i,
body.theme-navy .service-icon,
body.theme-navy .benefit-icon,
body.theme-navy .footer-link:hover {
    color: var(--color-accent);
}

body.theme-navy .about-quote {
    border-left-color: var(--color-accent);
}

body.theme-navy .benefit-icon {
    background: rgba(56, 189, 248, 0.1);
}

body.theme-navy .scroll-to-top {
    background: var(--color-accent);
    color: #fff;
}

body.theme-navy .scroll-to-top i,
body.theme-navy .scroll-to-top svg {
    color: #fff;
}

body.theme-navy .orb-1 {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
}

body.theme-navy .orb-2 {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
}


/* ----------------------------------------
   BLACK THEME (Black & Red)
   ---------------------------------------- */
body.theme-black {
    --color-primary: #000000;
    --color-secondary: #111111;
    --color-accent: #DC2626;
    --color-heading-dark: #000000;
    --color-body-text: #333333;
    --color-light-bg: #f9f9f9;
    --color-border: rgba(220, 38, 38, 0.2);
    --gradient-hero: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

body.theme-black .header-btn,
body.theme-black .btn-v2-primary,
body.theme-black .btn-primary,
body.theme-black .about-cta,
body.theme-black .step-number,
body.theme-black .cta-btn,
body.theme-black .position-btn {
    background: var(--gradient-accent);
    color: #fff;
}

body.theme-black .hero-v2-label,
body.theme-black .hero-badge,
body.theme-black .service-card:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

body.theme-black .highlight-gradient {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.theme-black .circle-progress {
    background: conic-gradient(var(--color-accent) calc(var(--value) * 1%), #e5e7eb 0);
}

body.theme-black .about-experience-card .exp-icon {
    background: var(--gradient-accent);
}

body.theme-black .about-star i,
body.theme-black .service-icon,
body.theme-black .benefit-icon,
body.theme-black .footer-link:hover {
    color: var(--color-accent);
}

body.theme-black .about-quote {
    border-left-color: var(--color-accent);
}

body.theme-black .benefit-icon {
    background: rgba(220, 38, 38, 0.1);
}

body.theme-black .scroll-to-top {
    background: var(--color-accent);
    color: #fff;
}

body.theme-black .scroll-to-top i,
body.theme-black .scroll-to-top svg {
    color: #fff;
}

body.theme-black .orb-1 {
    background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
}

body.theme-black .orb-2 {
    background: radial-gradient(circle, rgba(185, 28, 28, 0.2) 0%, transparent 70%);
}


/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--color-body-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--color-heading-dark);
}

h1 {
    font-size: var(--text-6xl);
}

h2 {
    font-size: var(--text-5xl);
}

h3 {
    font-size: var(--text-4xl);
}

h4 {
    font-size: var(--text-3xl);
}

h5 {
    font-size: var(--text-2xl);
}

h6 {
    font-size: var(--text-xl);
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Dark background text colors */
.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
.dark-bg h5,
.dark-bg h6 {
    color: var(--color-white);
}

.dark-bg p,
.dark-bg span {
    color: var(--color-body-text-light);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-dark {
    background: var(--gradient-dark);
}

.section-light {
    background: var(--color-light-bg);
}

/* Spacing Utilities */
.mt-10 {
    margin-top: 40px;
}

.mt-20 {
    margin-top: 80px;
}

.mt-30 {
    margin-top: 120px;
}

.mb-10 {
    margin-bottom: 40px;
}

.mb-20 {
    margin-bottom: 80px;
}

.mb-30 {
    margin-bottom: 120px;
}

.py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Bootstrap-like Row/Col System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row>[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

@media (max-width: 992px) {

    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* Play Button */
.btn-play {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.btn-play:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.btn-play svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   HEADER - Eitech Style
   ============================================ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    position: fixed;
}

/* Header Bar - Pill Shaped Glass Container */
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 30px;
    transition: all 0.4s ease;
}

/* Scrolled State - Same size, only background color changes */
.header.scrolled .header-bar {
    background: #050734;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: #050734;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Header for Light Theme Pages */
body.light-hero .header .header-bar {
    background: #050734;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: #050734;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

/* Navigation */
.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link.active {
    color: var(--color-accent);
}

.nav-caret {
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.nav-caret svg {
    width: 10px;
    height: 10px;
}

.nav-link:hover .nav-caret {
    opacity: 1;
    transform: rotate(180deg);
}

/* Language Switcher */
.header-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
}

.lang-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
}

.lang-link:hover {
    color: var(--color-white);
}

.lang-link.active {
    color: var(--color-accent);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Header Action - Button */
.header-action {
    flex-shrink: 0;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 24px;
    background: var(--color-white);
    color: #2e0797;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.header-btn svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-normal);
}

.header-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
}

.header-btn:hover svg {
    transform: translateX(3px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   DROPDOWN MENU STYLES
   ============================================ */
/* Desktop Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: rgba(5, 7, 52, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(67, 97, 238, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    list-style: none;
    margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-link i {
    width: 20px;
    color: var(--color-accent);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(67, 97, 238, 0.15);
    color: var(--color-white);
}

.dropdown-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.dropdown-link.active {
    background: rgba(67, 97, 238, 0.2);
    color: var(--color-accent);
}

.dropdown-link.active i {
    opacity: 1;
}

/* Keep dropdown open when hovering */
.nav-dropdown:hover .nav-caret {
    transform: rotate(180deg);
}

/* Mobile Dropdown */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mobile-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    border-left: 2px solid rgba(67, 97, 238, 0.3);
    transition: all 0.3s ease;
}

.mobile-dropdown-link:hover {
    border-left-color: var(--color-accent);
    color: var(--color-white);
}

.mobile-dropdown-link.active {
    border-left-color: var(--color-accent);
    color: var(--color-accent);
}

.mobile-dropdown-link i {
    color: var(--color-accent);
    opacity: 0.7;
}

/* Responsive Header */
@media (max-width: 1200px) {
    .nav-link {
        padding: 10px 12px;
        font-size: 16px;
    }

    .header-btn {
        font-size: 16px;
        padding: 0 20px;
        height: 50px;
    }
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .header-action {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-bar {
        padding: 12px 20px;
    }
}

/* ============================================
   HERO SECTION - Modulontech Custom Design
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0428 0%, #1a0f3c 50%, #0d0520 100%);
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(67, 97, 238, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(67, 97, 238, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Another left element */
/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(67, 97, 238, 0.15);
    border: 1px solid rgba(67, 97, 238, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Hero Title */
.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #6F69F7 0%, #a78bfa 50%, #6F69F7 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Hero Description */
.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5a54e0;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.4);
}

.btn-primary i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary i {
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.floating-card .card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6F69F7 0%, #a78bfa 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.floating-card .card-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.floating-card .card-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.floating-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-card .card-title {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.floating-card .card-value {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation: float 4s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -15%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.floating-card.card-3 {
    bottom: 5%;
    right: 5%;
    animation: float 4.5s ease-in-out infinite 1s;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration.dec-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-decoration.dec-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.15) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.hero-decoration.dec-3 {
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    top: 30%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .floating-card.card-1 {
        right: 0;
    }

    .floating-card.card-2 {
        left: 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .floating-card {
        display: none;
    }
}

/* ========== HERO IMAGES AREA ========== */
.hero-images-area {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 500px;
}

/* Main Hero Image */
.hero-images-area .img1 {
    position: relative;
    z-index: 3;
}

.hero-images-area .img1 img {
    max-width: 420px;
    height: auto;
}

/* Background Shape Behind Hero */
.hero-images-area .image-bg1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    z-index: 1;
}

.hero-images-area .image-bg1 img {
    max-width: 450px;
    opacity: 0.8;
}

/* ========== FLOATING CARDS ========== */
/* Stats Card - Top Right */
.hero-images-area .floating-stats-card {
    position: absolute;
    top: 5%;
    right: -10%;
    z-index: 4;
    animation: float 4s ease-in-out infinite;
}

.hero-images-area .floating-stats-card img {
    max-width: 160px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Chart Card - Bottom Left */
.hero-images-area .floating-chart-card {
    position: absolute;
    bottom: 5%;
    left: -15%;
    z-index: 4;
    animation: float 5s ease-in-out infinite 1s;
}

.hero-images-area .floating-chart-card img {
    max-width: 220px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Small Decorative Stars/Elements Around Image */
.hero-images-area .elements3 {
    position: absolute;
    top: 35%;
    right: -5%;
    width: 20px;
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

.hero-images-area .elements2 {
    position: absolute;
    bottom: 25%;
    left: 5%;
    width: 18px;
    z-index: 5;
    animation: float 4s ease-in-out infinite 0.5s;
}

/* Animation Keyframes */
.animation-key-1 {
    animation: keyframe1 3s ease-in-out infinite;
}

.animation-key-2 {
    animation: keyframe2 4s ease-in-out infinite;
}

@keyframes keyframe1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes keyframe2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero1-section-area {
        padding: 140px 0 80px;
    }

    .hero1-header.heading1 h1 {
        font-size: 38px;
    }

    .hero-images-area {
        margin-top: 50px;
    }

    .row {
        flex-direction: column;
    }

    .col-lg-1 {
        display: none;
    }

    .col-lg-5,
    .col-lg-6 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero1-header.heading1 h1 {
        font-size: 32px;
    }

    .btn-area1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero1-section-area .elements4,
    .hero1-section-area .elements5,
    .hero1-section-area .elements6 {
        display: none;
    }
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.hero-title {
    font-size: 54px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title span {
    background: linear-gradient(135deg, #6F69F7 0%, #9b97fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Primary Button - White Style */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 28px;
    background: var(--color-white);
    color: #2e0797;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.hero-btn-primary svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-normal);
}

.hero-btn-primary:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.4);
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

/* Hero Video Button */
.hero-btn-video {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    transition: var(--transition-normal);
}

.hero-btn-video .play-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.hero-btn-video .play-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
    margin-left: 3px;
}

.hero-btn-video:hover .play-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

/* Hero Statistics */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-number span {
    color: var(--color-accent);
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-img-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    z-index: 1;
}

.hero-img-main {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
}

/* Hero Floating Elements (Stats/Charts) */
.hero-floating-element {
    position: absolute;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-element.element-stats {
    top: 20%;
    right: -30px;
    max-width: 180px;
    animation-delay: 0s;
}

.hero-floating-element.element-chart {
    bottom: 10%;
    left: -50px;
    max-width: 200px;
    animation-delay: 1.5s;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.floating-card-content h6 {
    color: var(--color-white);
    font-size: var(--text-sm);
    margin-bottom: 0.25rem;
}

.floating-card-content p {
    color: var(--color-body-text-light);
    font-size: var(--text-xs);
    margin: 0;
}

.floating-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands {
    background: var(--color-white);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid rgba(5, 7, 52, 0.05);
}

.brands-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.brand-logo {
    opacity: 0.5;
    transition: var(--transition-normal);
    filter: grayscale(100%);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brand-logo img {
    height: 40px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--color-light-bg);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-images {
    position: relative;
    padding: var(--spacing-lg);
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-light-bg);
}

.about-content {
    padding-left: var(--spacing-lg);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

.section-title {
    font-size: var(--text-5xl);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-description {
    margin-bottom: var(--spacing-lg);
}

/* Progress Bars */
.progress-bars {
    margin-bottom: var(--spacing-lg);
}

.progress-item {
    margin-bottom: var(--spacing-md);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.progress-title {
    font-weight: var(--font-weight-semibold);
    color: var(--color-heading-dark);
}

.progress-value {
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
}

.progress-bar {
    height: 8px;
    background: rgba(67, 97, 238, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    transition: width 1s ease-out;
}

/* Checklist */
.checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-heading-dark);
}

.checklist-icon {
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.checklist-icon svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--color-white);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--color-light-bg);
    border-radius: 50% 0 0 0;
    opacity: 0.5;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(5, 7, 52, 0.1);
}

.service-card:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: var(--color-primary);
    opacity: 1;
}

.service-card:hover .service-title,
.service-card:hover .service-description {
    color: var(--color-white);
}

.service-card:hover .service-icon {
    background: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
    color: var(--color-primary);
    stroke: var(--color-primary);
}

.service-card:hover .service-link {
    color: var(--color-white);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--color-light-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    stroke: var(--color-primary);
    transition: all 0.4s ease;
}

.service-title {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    margin-bottom: var(--spacing-md);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-weight: var(--font-weight-semibold);
}

.service-link svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    background: var(--gradient-dark);
}

.how-it-works-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.how-it-works-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.process-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.process-step.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    flex-shrink: 0;
}

.process-content h5 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--color-body-text-light);
    font-size: var(--text-sm);
    margin: 0;
}

.how-it-works-image {
    text-align: center;
}

.how-it-works-image img {
    max-width: 100%;
    border-radius: var(--radius-xl);
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.statistics {
    background: var(--color-primary);
    padding: var(--spacing-2xl) 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-white);
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.stat-number span {
    color: var(--color-accent);
}

.stat-label {
    color: var(--color-body-text-light);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--color-light-bg);
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.testimonial-text {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-body-text);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 80px;
    color: var(--color-accent);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h6 {
    color: var(--color-heading-dark);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--color-accent);
    font-size: var(--text-sm);
    margin: 0;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    background: var(--color-white);
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.team-card {
    text-align: center;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.team-card:hover .team-social {
    bottom: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition-normal);
}

.team-social a:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.team-info {
    padding: var(--spacing-lg);
}

.team-name {
    color: var(--color-heading-dark);
    margin-bottom: 0.25rem;
}

.team-position {
    color: var(--color-accent);
    font-size: var(--text-sm);
    margin: 0;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
    background: var(--color-light-bg);
}

.blog-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 100%;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: var(--text-sm);
    color: var(--color-body-text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-title {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.blog-title a:hover {
    color: var(--color-accent);
}

.blog-excerpt {
    flex-grow: 1;
    margin-bottom: var(--spacing-md);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-weight: var(--font-weight-semibold);
}

.blog-link svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-normal);
}

.blog-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/cta-pattern.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-primary);
    padding-top: var(--spacing-3xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    padding-right: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 40px;
}

.footer-logo-text {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.footer-logo-text span {
    color: var(--color-accent);
}

.footer-about p {
    color: var(--color-body-text-light);
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.footer-column h5 {
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    font-size: var(--text-xl);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-body-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-body-text-light);
}

.footer-contact li svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-body-text-light);
    margin: 0;
}

.footer-bottom a {
    color: var(--color-accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --text-6xl: 3rem;
        --text-5xl: 2.5rem;
    }

    .hero-inner {
        gap: var(--spacing-lg);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works-inner {
        grid-template-columns: 1fr;
    }

    .how-it-works-image {
        order: -1;
    }

    .process-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step.reverse {
        flex-direction: row;
        text-align: left;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        grid-template-columns: 1fr 2fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --spacing-3xl: 5rem;
        --spacing-2xl: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --text-6xl: 2rem;
        --text-5xl: 1.75rem;
        --container-padding: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-accent {
    color: var(--color-accent);
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-primary);
    z-index: 999;
    padding: 100px var(--spacing-lg) var(--spacing-lg);
    transition: right var(--transition-normal);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-nav-link {
    color: var(--color-white);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-accent);
    padding-left: 10px;
}

.mobile-nav .btn {
    margin-top: var(--spacing-md);
}

body.menu-open {
    overflow: hidden;
}

/* Menu Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Header CTA */
.header-cta {
    padding: 0.75rem 1.5rem;
    font-size: var(--text-sm);
}

@media (max-width: 992px) {
    .header-cta {
        display: none;
    }
}

/* Play Button Wrapper */
.btn-play-wrapper {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: transparent;
    border: none;
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
    padding: 0;
}

.btn-play-wrapper .btn-play {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.btn-play-wrapper:hover .btn-play {
    transform: scale(1.1);
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 7, 52, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 1;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-modal-close:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-heading-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: #ff4444;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   PLACEHOLDER IMAGES
   ============================================ */
.placeholder-image {
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
}

/* Hero placeholder */
.hero-image .placeholder-image {
    height: 500px;
    border-radius: var(--radius-xl);
}

/* About placeholder */
.about-image-main .placeholder-image,
.about-image-secondary .placeholder-image {
    height: 400px;
}

/* Team placeholder */
.team-image .placeholder-image {
    height: 300px;
}

/* Blog placeholder */
.blog-image .placeholder-image {
    height: 200px;
}

/* Testimonial placeholder */
.testimonial-avatar .placeholder-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    font-size: var(--text-xl);
}

/* ============================================
   ABOUT SECTION - Eitech Style
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--color-white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Images Grid */
.about-images-grid {
    position: relative;
    min-height: 500px;
}

.about-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-1 {
    width: 280px;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 240px;
    height: 280px;
    top: -20px;
    right: 60px;
    z-index: 1;
}

.about-img-3 {
    width: 260px;
    height: 200px;
    bottom: 0;
    right: 20px;
    z-index: 3;
}

/* Decorative Elements */
.about-deco {
    position: absolute;
    pointer-events: none;
}

.about-deco.deco-circle {
    width: 100px;
    height: 100px;
    border: 4px solid var(--color-accent);
    border-radius: 50%;
    top: 20px;
    left: -30px;
    opacity: 0.3;
}

.about-deco.deco-dots {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--color-accent) 2px, transparent 2px);
    background-size: 10px 10px;
    bottom: 100px;
    left: -20px;
    opacity: 0.5;
}

.about-star {
    position: absolute;
    color: #FFB800;
    font-size: 12px;
    z-index: 10;
}

.about-star.star-1 {
    top: 50px;
    right: 30px;
    animation: float 3s ease-in-out infinite;
}

.about-star.star-2 {
    bottom: 150px;
    left: 60px;
    color: #FF6B6B;
    animation: float 4s ease-in-out infinite 0.5s;
}

.about-star.star-3 {
    bottom: 50px;
    right: 280px;
    color: var(--color-accent);
    animation: float 3.5s ease-in-out infinite 1s;
}

/* Experience Card */
/* Experience Card */
.about-experience-card {
    position: absolute;
    top: 55%;
    left: 80px;
    /* Sol resmin üzerinde ortalı */
    transform: translateY(-50%);
    background: var(--color-white);
    border-radius: 8px;
    /* Daha az yuvarlak köşeler */
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 20;
    max-width: 320px;
}

.about-experience-card .exp-icon {
    width: 36px;
    height: 36px;
    background: #5034FC;
    /* Eitech moru */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.about-experience-card .exp-text {
    color: rgb(5, 7, 52);
    display: block;
    font-family: Figtree, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding-left: 16px;
    text-align: start;
}

/* About Content */
.about-content {
    padding-left: 20px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-light-bg);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-badge i {
    font-size: 14px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-heading-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-description {
    font-size: 16px;
    color: var(--color-body-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Circular Stats */
.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-circle {
    display: flex;
    align-items: center;
    gap: 16px;
}

.circle-progress {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#5034FC 0deg, #5034FC calc(var(--value) * 1%), #E0E0FF calc(var(--value) * 1%));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Varsayılan değer için fallback */
}

.circle-progress::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}

.circle-value {
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: var(--color-heading-dark);
    font-size: 18px;
    /* Fontu büyütüldü */
}



.stat-info strong {
    display: block;
    font-size: 15px;
    color: var(--color-heading-dark);
    margin-bottom: 2px;
}

.stat-info span {
    font-size: 13px;
    color: var(--color-body-text);
}

/* Quote Box */
.about-quote {
    background: var(--color-light-bg);
    border-left: 4px solid var(--color-accent);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 30px;
}

/* CTA Button */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: #5034FC;
    /* Eitech canlı mor rengi */
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(80, 52, 252, 0.3);
}

.about-cta:hover {
    background: #3f26d9;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(80, 52, 252, 0.4);
}

.about-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.about-cta:hover i {
    transform: translate(3px, -3px);
    /* Sağ yukarı hareket */
}

/* Quote Box */
/* Quote Box */
.about-quote-box {
    background: #F5F5FF;
    padding: 35px 30px 35px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    position: relative;
}

.about-quote-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 6px;
    background: var(--color-accent);
    border-radius: 0 4px 4px 0;
}

.about-quote p {
    font-size: 18px;
    color: #4A4A68;
    font-style: normal;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

/* Responsive About */
@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images-grid {
        min-height: 400px;
    }

    .about-img-1 {
        width: 200px;
        height: 240px;
    }

    .about-img-2 {
        width: 180px;
        height: 220px;
        right: 20px;
    }

    .about-img-3 {
        width: 200px;
        height: 160px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }

    .about-images-grid {
        display: none;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-title {
        font-size: 28px;
    }
}

/* ============================================
   STATISTICS SECTION - Eitech Style
   ============================================ */
.statistics-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: var(--color-white);
}

.statistics-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stats-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 52, 0.95);
}

.statistics-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:last-child {
    border-right: none;
}

.stat-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-box {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--color-white);
}

.stat-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

/* Responsive Statistics */
@media (max-width: 991px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-card {
        border-right: none;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        justify-content: flex-start;
    }
}

/* ============================================
   TESTIMONIALS SECTION - Eitech Style
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--color-light-bg);
}

.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-body-text);
    font-size: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 7, 52, 0.08);
    border-color: rgba(67, 97, 238, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-stars {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-stars li {
    color: #FFB800;
    font-size: 14px;
}

.quote-icon {
    font-size: 30px;
    color: rgba(67, 97, 238, 0.1);
}

.review-text {
    font-size: 16px;
    color: var(--color-body-text);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-accent);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading-dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 14px;
    color: var(--color-body-text);
}

/* Responsive Testimonials */
@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA SECTION - Eitech Style
   ============================================ */
.cta-section {
    padding: 0 0 100px;
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    background: linear-gradient(135deg, #0a0428 0%, #1a0f3c 100%);
    padding: 60px 80px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(5, 7, 52, 0.2);
}

/* Decorative Shapes */
.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

.cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(67, 97, 238, 0.2);
    top: -100px;
    left: -100px;
}

.cta-shape.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(67, 97, 238, 0.15);
    bottom: -50px;
    right: -50px;
}

.cta-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 10px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: 50%;
    left: 40%;
    transform: translateY(-50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--color-white);
    color: var(--color-heading-dark);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
}

.cta-contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-contact-info .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 20px;
}

.cta-contact-info .info {
    display: flex;
    flex-direction: column;
}

.cta-contact-info .info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-contact-info .info a {
    font-size: 18px;
    color: var(--color-white);
    font-weight: 700;
}

/* Responsive CTA */
@media (max-width: 991px) {
    .cta-wrapper {
        padding: 40px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-action {
        margin-top: 40px;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .cta-action {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* About Overlay Card Responsive */
@media (max-width: 991px) {
    .about-experience-card {
        left: 20px;
        top: 60%;
    }
}

@media (max-width: 768px) {
    .about-experience-card {
        position: relative;
        left: 0;
        top: auto;
        transform: none;
        margin-top: 20px;
        max-width: 100%;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }
}

/* ============================================
   MODERN HERO SECTION (2025 Redesign)
   ============================================ */
.hero-section {
    position: relative;
    padding: 240px 0 160px;
    background: url('../images/all-images/hero/hero-bg-full.png') no-repeat center center;
    background-size: cover;
    background-color: #050734;
    overflow: hidden;
    min-height: 100vh;
    display: block;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-section .row {
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap;
    }

    .hero-section .col-lg-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
}

/* Dark Gradient Overlay for Readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #050734 0%, rgba(5, 7, 52, 0.9) 50%, rgba(5, 7, 52, 0.0) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 5;
}

.hero-bg-shapes {
    z-index: 1;
}

/* Background Shapes & Glows */
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: pulseGlow 8s infinite alternate;
}

.hero-bg-shapes .shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #5034FC 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00D2FF 0%, transparent 70%);
    bottom: -100px;
    left: -150px;
    animation-delay: 2s;
}

.hero-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #FF2E93 0%, transparent 70%);
    /* Hot Pink Accent */
    top: 40%;
    right: 40%;
    opacity: 0.2;
    animation-delay: 4s;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Typography */
.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #00D2FF;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-title-modern {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title-modern .text-gradient {
    background: linear-gradient(135deg, #fff 30%, #5034FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc-modern {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 40px;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

.btn-glow {
    padding: 16px 36px;
    background: #5034FC;
    color: white;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(80, 52, 252, 0.4);
}

.btn-glow:hover {
    background: #4025d9;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(80, 52, 252, 0.6);
    color: white;
}

.btn-outline-modern {
    padding: 16px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item h4 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1;
}

.trust-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 5px 0 0;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Visual Side */
/* Visual Side */
.hero-visual-modern {
    position: relative;
    /* height: 600px; - Removed fixed height */
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
    /* Slight visual lift */
}

/* ... main-visual-circle remains same but omitted here for succinctness if not changing ... wait, I need to match target content exactly or include it */

.main-visual-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(80, 52, 252, 0.2), rgba(0, 210, 255, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    animation: rotateSlow 20s linear infinite;
}

.hero-img-floating {
    position: relative;
    z-index: 2;
    max-width: 90%;
    /* Prevent overflow on sides */
    max-height: 550px;
    /* Limit height */
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Floating Glass Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float 5s ease-in-out infinite both;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-top {
    top: 100px;
    left: -20px;
    animation-delay: 0s;
}

.card-bottom {
    bottom: 120px;
    right: 0;
    animation-delay: 2.5s;
}

.float-card .icon-box {
    width: 45px;
    height: 45px;
    background: #5034FC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.float-card .icon-box.blue {
    background: #00D2FF;
}

.float-card .card-info span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.float-card .card-info strong {
    display: block;
    font-size: 16px;
    color: white;
    font-weight: 700;
}

/* Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title-modern {
        font-size: 42px;
    }

    .hero-visual-modern {
        height: 400px;
        margin-top: 50px;
    }

    .main-visual-circle {
        width: 300px;
        height: 300px;
    }

    .float-card {
        transform: scale(0.8);
    }

    .hero-section {
        padding: 140px 0 80px;
        display: block;
        /* Mobilde flex'i devre dışı bırak */
        height: auto;
        min-height: auto;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scroll-to-top i {
    font-size: 18px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.scroll-to-top:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(67, 97, 238, 0.3);
}

.scroll-to-top:hover i {
    color: var(--color-white);
    transform: translateY(-2px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top i {
        font-size: 16px;
    }
}

/* ============================================
   PAGE HEADER (Internal Pages)
   ============================================ */
.page-header {
    background: var(--gradient-hero);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(67, 97, 238, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-label {
    display: inline-block;
    background: rgba(67, 97, 238, 0.15);
    color: var(--color-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-story-content .section-label {
    display: inline-block;
    background: rgba(67, 97, 238, 0.1);
    color: var(--color-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.about-story-content .section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-story-content p {
    color: var(--color-body-text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.about-stat-item {
    text-align: center;
}

.about-stat-item .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
}

.about-stat-item .stat-label {
    font-size: 14px;
    color: var(--color-body-text);
}

.about-story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.about-image-shape {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--color-accent);
    border-radius: 20px;
    opacity: 0.3;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.about-image-placeholder i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
}

/* Mission Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(67, 97, 238, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 32px;
    color: var(--color-white);
}

.mv-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--color-light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    background: var(--gradient-accent);
}

.why-icon i {
    font-size: 28px;
    color: var(--color-accent);
    transition: var(--transition-normal);
}

.why-card:hover .why-icon i {
    color: var(--color-white);
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--color-body-text);
    line-height: 1.6;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */
.service-row {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border);
}

.service-row:last-child {
    border-bottom: none;
}

.service-content {
    padding-right: 40px;
}

.service-row.reverse .service-content {
    padding-right: 0;
    padding-left: 40px;
}

.service-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 10px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--color-body-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--color-body-text);
}

.service-features i {
    color: var(--color-accent);
    font-size: 14px;
}

.service-image-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.service-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image-wrapper:hover .service-image {
    transform: scale(1.05);
}

/* Technologies Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    background: rgba(67, 97, 238, 0.1);
}

.tech-item i {
    font-size: 40px;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.tech-item span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   CAREER PAGE STYLES
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--color-light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: var(--color-accent);
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--color-body-text);
    line-height: 1.6;
}

/* Open Positions */
.positions-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.position-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.position-card:hover {
    transform: translateX(10px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.position-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.position-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--color-light-bg);
    color: var(--color-body-text);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.position-tags .tag i {
    font-size: 10px;
    color: var(--color-accent);
}

.position-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-normal);
}

.position-btn:hover {
    background: var(--color-secondary);
    transform: translateX(5px);
}

/* Internship Section */
.internship-info .section-label {
    display: inline-block;
    background: rgba(67, 97, 238, 0.15);
    color: var(--color-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.internship-info .section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.internship-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.internship-features {
    list-style: none;
}

.internship-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.internship-features i {
    color: var(--color-accent);
    font-size: 16px;
}

/* ============================================
   FORM STYLES (Used in Career & Contact)
   ============================================ */
.form-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-heading-dark);
}

.form-subtitle {
    color: var(--color-body-text);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition-normal);
    background: #f8f8fc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input[type="file"] {
    padding: 12px;
    cursor: pointer;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-body-text);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-accent);
    text-decoration: underline;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    margin-top: 20px;
    border: none;
}

.submit-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-btn i {
    font-size: 14px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-info-wrapper {
    padding-right: 30px;
}

.contact-info-card {
    background: var(--color-light-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-icon i {
    font-size: 20px;
    color: var(--color-white);
}

.contact-info-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--color-body-text);
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: var(--color-body-text);
    transition: var(--transition-normal);
}

.contact-info-card a:hover {
    color: var(--color-accent);
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--color-light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--color-accent);
}

.social-links a i {
    font-size: 18px;
    color: var(--color-body-text);
    transition: var(--transition-normal);
}

.social-links a:hover i {
    color: var(--color-white);
}

/* Map Section */
.map-section {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 450px;
    background: var(--color-light-bg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 16px;
    margin: 0;
}

.faq-question i {
    color: var(--color-accent);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--color-body-text);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE - INTERNAL PAGES
   ============================================ */
@media (max-width: 992px) {
    .page-title {
        font-size: 36px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image-wrapper {
        width: 300px;
        height: 300px;
        margin-top: 40px;
    }

    .service-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .service-row.reverse .service-content {
        padding-left: 0;
    }

    .service-row.reverse .row {
        flex-direction: column-reverse;
    }

    .position-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-info-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }

    .page-title {
        font-size: 28px;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-card {
        padding: 25px;
    }
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */
.products-section {
    background: var(--color-light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(67, 97, 238, 0.2);
    border-color: rgba(67, 97, 238, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
}

.product-tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-heading-dark);
    margin-bottom: 15px;
}

.product-desc {
    font-size: 15px;
    color: var(--color-body-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-body-text);
}

.product-features li i {
    color: var(--color-accent);
    font-size: 12px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-accent);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-link:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
}

.product-link svg {
    transition: transform 0.3s ease;
}

.product-link:hover svg {
    transform: translateX(5px);
}

/* Products Features Section */
.products-features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-box:hover {
    background: rgba(67, 97, 238, 0.1);
    border-color: rgba(67, 97, 238, 0.3);
    transform: translateY(-5px);
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-white);
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.4);
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Products Page Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 25px;
    }
}

/* ============================================
   HERO SECTION V2 - Light Theme
   ============================================ */
.hero-section-v2 {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #e8f4f8 100%);
    padding: 160px 0 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-v2-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-v2-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-section-v2 .container {
    position: relative;
    z-index: 1;
}

.hero-v2-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-v2-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-heading-dark);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-v2-title .text-dark {
    color: var(--color-heading-dark);
}

.hero-v2-title .text-accent {
    color: var(--color-accent);
}

.hero-v2-title .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tagline */
.hero-v2-tagline {
    font-size: 16px;
    color: var(--color-body-text);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.hero-v2-tagline::before,
.hero-v2-tagline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: rgba(5, 7, 52, 0.2);
}

.hero-v2-tagline::before {
    right: calc(100% + 15px);
}

.hero-v2-tagline::after {
    left: calc(100% + 15px);
}

/* Emoji Badges */
.emoji-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    vertical-align: middle;
    margin: 0 5px;
}

.hero-v2-desc {
    font-size: 18px;
    color: var(--color-body-text);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-v2-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-v2-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(5, 7, 52, 0.2);
}

.btn-v2-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.3);
}

.btn-v2-primary svg {
    transition: transform 0.3s ease;
}

.btn-v2-primary:hover svg {
    transform: translateX(5px);
}

.btn-v2-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: var(--color-heading-dark);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid rgba(5, 7, 52, 0.2);
    transition: all 0.3s ease;
}

.btn-v2-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(67, 97, 238, 0.05);
}

.btn-v2-outline svg {
    transition: transform 0.3s ease;
}

.btn-v2-outline:hover svg {
    transform: translateY(3px);
}

/* Stats Row */
.hero-v2-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 60px;
    box-shadow: 0 10px 50px rgba(5, 7, 52, 0.08);
    border: 1px solid rgba(5, 7, 52, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 30px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-heading-dark);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: var(--color-body-text);
    font-weight: 500;
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(5, 7, 52, 0.1);
}

/* Hero V2 Responsive */
@media (max-width: 992px) {
    .hero-v2-title {
        font-size: 42px;
    }

    .hero-v2-stats {
        padding: 30px 40px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-item {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-section-v2 {
        padding: 120px 0 60px;
    }

    .hero-v2-title {
        font-size: 32px;
    }

    .hero-v2-desc {
        font-size: 16px;
    }

    .hero-v2-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-v2-primary,
    .btn-v2-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-v2-stats {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 15px);
        padding: 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 28px;
    }
}