/* font-family: 'Montserrat', sans-serif; heading */
/* font-family: 'Open Sans', sans-serif; body */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #004aad;
    /* Strong Blue */
    --secondary-color: #cb6ce6;
    /* Purple/Pink */
    --accent-color: #b4b4b4;
    /* Grey */
    --text-color: #334155;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    --dark-bg: #0f172a;
    --transition-speed: 0.3s;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 74, 173, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 74, 173, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 74, 173, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 74, 173, 0.25);
    --shadow-glow: 0 0 40px rgba(203, 108, 230, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 50%, var(--secondary-color) 100%);
    --gradient-hero: linear-gradient(135deg, #000428 0%, #004e92 50%, #1a0033 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BUTTONS - Enhanced with Glow Effects
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 20px rgba(0, 74, 173, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(203, 108, 230, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--secondary-color);
    position: relative;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

/* ============================================
   SECTION STYLES - Enhanced
   ============================================ */
.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
    border-radius: 2px;
    animation: pulse-width 2s ease-in-out infinite;
}

@keyframes pulse-width {

    0%,
    100% {
        width: 80px;
        opacity: 1;
    }

    50% {
        width: 120px;
        opacity: 0.8;
    }
}

.section-header p {
    font-size: 1.15rem;
    color: #64748B;
    margin-top: 10px;
}

/* ============================================
   HEADER & NAVIGATION - Glassmorphism
   ============================================ */
header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s var(--transition-smooth);
}

header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo span.highlight {
    color: var(--secondary-color);
}

.logo img {
    height: 55px;
    vertical-align: middle;
    transition: transform 0.4s var(--transition-smooth);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links li a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.4s var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
    border-radius: 3px;
}

/* ============================================
   HERO SECTION - Impressive Visual
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 90px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content h1 span.gradient-text {
    background: linear-gradient(90deg, var(--secondary-color), #fff, var(--secondary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 45px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.tagline {
    font-style: italic;
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    margin-top: 30px;
    font-size: 1.2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
    text-shadow: 0 0 20px rgba(203, 108, 230, 0.5);
}

/* Floating elements in hero */
.hero-float {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(203, 108, 230, 0.3), rgba(0, 74, 173, 0.3));
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.hero-float-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-float-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 10%;
    animation-delay: -2s;
}

.hero-float-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 30px;
        opacity: 0.3;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(203, 108, 230, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p strong {
    color: var(--primary-color);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    border-top: 6px solid var(--secondary-color);
    border-left: 6px solid var(--secondary-color);
    border-radius: 20px 0 0 0;
    z-index: -1;
    transition: all 0.4s var(--transition-smooth);
}

.about-image:hover::before {
    top: -30px;
    left: -30px;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    border-bottom: 6px solid var(--primary-color);
    border-right: 6px solid var(--primary-color);
    border-radius: 0 0 20px 0;
    z-index: -1;
    transition: all 0.4s var(--transition-smooth);
}

.about-image:hover::after {
    bottom: -30px;
    right: -30px;
}

/* ============================================
   EXPERTISE SECTION - Cards with Hover
   ============================================ */
.expertise {
    background-color: var(--light-bg);
    position: relative;
}

.expertise::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 74, 173, 0.02), transparent);
    pointer-events: none;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 74, 173, 0.05);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition-smooth);
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(203, 108, 230, 0.05), rgba(0, 74, 173, 0.05));
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    pointer-events: none;
}

.expertise-card:hover::after {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.4s var(--transition-smooth);
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

.expertise-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.expertise-card:hover h3 {
    color: var(--secondary-color);
}

.expertise-card>p {
    color: #64748B;
    margin-bottom: 15px;
}

.expertise-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.expertise-card ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
    position: relative;
    padding-left: 25px;
}

.expertise-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.expertise-card:hover ul li::before {
    transform: translateX(5px);
}

/* ============================================
   METHODOLOGY SECTION - Timeline
   ============================================ */
.methodology {
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.methodology .section-header h2 {
    color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--white);
    background-clip: unset;
}

.methodology .section-header h2::after {
    background: var(--secondary-color);
}

.methodology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 4px;
}

.step {
    padding: 15px 50px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.step::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background: var(--gradient-primary);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 20px rgba(203, 108, 230, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover::after {
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(203, 108, 230, 0.8);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    right: 35px;
    border: medium solid white;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent white;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 28px;
    width: 0;
    z-index: 1;
    left: 35px;
    border: medium solid white;
    border-width: 12px 12px 12px 0;
    border-color: transparent white transparent transparent;
}

.right::after {
    left: -12px;
}

.step-content {
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.98);
    position: relative;
    border-radius: 15px;
    color: var(--text-color);
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s ease;
}

.step:hover .step-content {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.step-content h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.step-number {
    position: absolute;
    top: -18px;
    right: -18px;
    background: var(--gradient-primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(203, 108, 230, 0.4);
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience {
    background-color: var(--light-bg);
    position: relative;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.audience-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 74, 173, 0.08);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.audience-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.4s var(--transition-smooth);
    transform: translateX(-50%);
}

.audience-item:hover::before {
    width: 100%;
}

.audience-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.audience-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.audience-item:hover h4 {
    color: var(--primary-color);
}

.audience-item p {
    color: #64748B;
    font-size: 0.95rem;
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages {
    background-color: var(--white);
    position: relative;
}

.advantages .expertise-card {
    text-align: center;
}

.advantages .expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.15), rgba(203, 108, 230, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.advantages .expertise-icon i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

/* Full width card for last items in grids */
.full-width-card {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 993px) {
    .advantages .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .advantages .full-width-card {
        grid-column: 2 / 3;
    }

    .packs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .packs .full-width-card {
        grid-column: 2 / 3;
    }
}

/* ============================================
   MISSIONS SECTION
   ============================================ */
.missions {
    position: relative;
}

.missions .audience-item h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.missions .audience-item h4 i {
    font-size: 1.2rem;
}

/* ============================================
   PACKS SECTION - Pricing Cards
   ============================================ */
.packs {
    background-color: var(--white);
    position: relative;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pack-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 74, 173, 0.1);
    border-radius: 25px;
    padding: 45px 35px;
    position: relative;
    transition: all 0.5s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.02), rgba(203, 108, 230, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pack-card:hover::before {
    opacity: 1;
}

.pack-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.pack-card.featured {
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: scale(1.02);
}

.pack-card.featured:hover {
    transform: scale(1.04) translateY(-10px);
}

.pack-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 0 0 20px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pack-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 74, 173, 0.1);
}

.pack-header h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-target {
    font-size: 0.95rem;
    color: #64748B;
    font-style: italic;
}

.pack-body {
    flex-grow: 1;
}

.pack-body ul {
    margin-top: 20px;
}

.pack-body ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
    color: var(--text-color);
}

.pack-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.pack-benefits {
    margin-top: 35px;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.05), rgba(203, 108, 230, 0.05));
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 74, 173, 0.08);
}

.pack-benefits p {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.pack-footer {
    margin-top: 35px;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col p i {
    color: var(--secondary-color);
    margin-right: 12px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) rotate(360deg);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(203, 108, 230, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.slide-in-left.visible,
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Counter animation styles */
.counter-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .timeline::after {
        left: 31px;
    }

    .step {
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }

    .step::after {
        left: 19px;
    }

    .right {
        left: 0%;
    }

    .left::before,
    .right::before {
        left: 65px;
        border: medium solid white;
        border-width: 12px 12px 12px 0;
        border-color: transparent white transparent transparent;
    }

    .step-number {
        left: -25px;
        right: auto;
    }
}

@media (max-width: 768px) {
    nav {
        height: 80px;
    }

    .logo img {
        height: 45px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.4s;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .expertise-grid,
    .packs-grid {
        grid-template-columns: 1fr;
    }

    .pack-card.featured {
        transform: scale(1);
    }

    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .expertise-card,
    .pack-card {
        padding: 25px 20px;
    }
}

/* ============================================
   CUSTOM CURSOR (Optional Enhancement)
   ============================================ */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.05s ease;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mt-4 {
    margin-top: 1.5rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    box-shadow: var(--shadow-glow);
}

/* Parallax effect classes */
.parallax-slow {
    will-change: transform;
}

.parallax-fast {
    will-change: transform;
}