/* CSS Variables */
:root {
    --primary-color: var(--primary);
    --secondary-color: var(--secondary) ;
    --dark: var(--dark-black-color);
    --darker: #050714;
    --light: var(--light-white-color);
    --white: #ffffff;
    --gray: var(--text-dark-gray-color);

    --dark-color: #1e293b;

    --gradient-primary: linear-gradient(135deg, var(--primary-color),  var(--secondary-color));
        --gradient-primary-cover: linear-gradient(135deg, #0095ff,  #a1c5fff3);

    --gradient-dark: linear-gradient(135deg, #0a0e27, #1e293b);

    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --bg-light : var(--sectionBackground)
}

/* Root Variables */
:root {
    /* --primary-color: #2563eb; */
    /* --secondary-color: #06b6d4; */
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

/* ==================== SCROLL PROGRESS BAR ==================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
}

/* ==================== NAVBAR ==================== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtext {
    font-size: 0.9rem;
    color: var(--text-color);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Products dropdown */
.custom-dropdown {
    position: relative;
    cursor: pointer;
}

/* Arrow icon */
.arrow-icon {
    display: inline-block;
    margin-left: 6px;
    margin-bottom: 3px;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.custom-dropdown:hover .arrow-icon {
    transform: rotate(-135deg);
}

/* Dropdown container */
.dropdown-menu-custom {
    position: absolute;
    top: 120%;
    left: 0;
    list-style-type: none;
    min-width: 200px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    padding: 10px 0;
    z-index: 999;
}

/* Show dropdown on hover */
.custom-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown-item-custom {
    display: block;
    padding: 10px 20px;
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

/* Hover effect for dropdown items */
.dropdown-item-custom:hover {
    background: rgba(0, 0, 0, 0.04);
    padding-left: 26px;
    color: var(--primary-color);
}

/* Badge styling */
.badge-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.badge-link:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* ==================== IMMERSIVE HERO SECTION ==================== */
.immersive-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(15, 76, 192, 0.15), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.1), transparent 50%);
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* Hero Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Hero Headline */
.hero-headline {
    /* font-size: 3.5rem; */
    /* font-weight: 800; */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Rotating Words */
.hero-tagline {
    /* font-size: clamp(2rem, 5vw, 3.5rem); */
    /* font-weight: 700; */
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.tagline-text {
    color: var(--white);
    /* font-size: 3.5rem; */
    /* font-weight: 800; */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    /* color: var(--light-color); */
}

.rotating-words {
    position: relative;
    height: 1.2em;
    width: 8.5ch;
    display: inline-block;
    text-align: center;
    /* color: var(--white); */
    /* font-size: 3.5rem; */
    /* font-weight: 800; */
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.word {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    background: var(--gradient-primary-cover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotateWord 9s infinite;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
}

.word:nth-child(1) {
    animation-delay: 0s;
}

.word:nth-child(2) {
    animation-delay: 3s;
}

.word:nth-child(3) {
    animation-delay: 6s;
}

@keyframes rotateWord {

    0%,
    33.33% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    36.66%,
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* Hero Lead */
.hero-lead {
    /* font-size: clamp(1.1rem, 2vw, 1.4rem); */
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Hero Metrics */
.hero-metrics {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
}

.metric-value {
    /* font-size: clamp(2.5rem, 5vw, 4rem); */
    /* font-weight: 900; */
    background: var(--gradient-primary-cover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-value span {
    font-size: 0.6em;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    /* font-size: 14px; */
    /* font-weight: 600; */
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Prompt */
.scroll-prompt {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.scroll-prompt span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ==================== SPLIT INTRO SECTION ==================== */
.split-intro {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.intro-content {
    padding: 60px 50px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.content-wrapper {
    width: 100%;
}

/* Header Group */
.header-group {
    margin-bottom: 40px;
}

.section-label {
    /* display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    padding: 6px 18px;
    background: rgba(15, 76, 192, 0.08);
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(15, 76, 192, 0.15); */
    /* font-size: 1rem; */
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--capsule);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    /* font-weight: 600; */
    margin-bottom: 1rem;
    /* border: 1px solid rgba(37, 99, 235, 0.2); */
}

.section-label.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-heading {
    /* font-size: clamp(2rem, 4.5vw, 2.5rem); */
    /* font-weight: 900; */
    line-height: 1.15;
    margin-bottom: 0;
    color: var(--dark);
}

.highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Intro Cards Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.intro-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.intro-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(15, 76, 192, 0.12);
    border-color: rgba(15, 76, 192, 0.1);
}

.card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
}

.card-content h4 {
    /* font-size: 1.1rem; */
    /* font-weight: 700; */
    color: var(--dark);
    margin-bottom: 8px;
}

.card-content p {
    /* font-size: 1rem; */
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Tech Section */
.tech-section {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tech-title {
    /* font-size: 0.9rem; */
    /* font-weight: 700; */
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
    color: var(--dark);
    margin-bottom: 18px;
    /* opacity: 0.8; */
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1.5px solid var(--primary-color);
    border-radius: 10px;
    /* font-size: 13px; */
    /* font-weight: 600; */
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.tech-badge i {
    font-size: 16px;
}

.tech-badge span:hover{
    color: var(--light);
}

.tech-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 76, 192, 0.25);
}
/* ✅ Add this — force text to white on hover */
.tech-badge:hover .sub-heading {
    color: var(--white);
}
/* Visual Side */
.intro-visual {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 0;
}

.visual-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.image-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg,
            rgba(86, 126, 201, 0.75) 0%,
            rgba(132, 206, 221, 0.6) 100%); */
    mix-blend-mode: multiply;
}

/* Floating Stats */
.stats-float {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    width: 90%;
    justify-content: center;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 991px) {
    .intro-content {
        padding: 60px 30px;
        min-height: auto;
    }

    .intro-visual {
        min-height: 500px;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .stats-float {
        position: static;
        transform: none;
        margin-top: 20px;
        width: 100%;
        padding: 0 20px;
    }

    .stat-card {
        padding: 18px 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .intro-content {
        padding: 40px 20px;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .intro-grid {
        gap: 15px;
    }

    .intro-card {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }

    .tech-section {
        padding: 20px;
    }

    .tech-badge {
        padding: 7px 14px;
        font-size: 12px;
    }

    .tech-badge i {
        font-size: 14px;
    }

    .stats-float {
        flex-direction: column;
        gap: 12px;
    }

    .intro-visual {
        min-height: 400px;
    }

    .intro-visual {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-heading {
        font-size: 1.6rem;
    }

    .header-group {
        margin-bottom: 30px;
    }

    .intro-grid {
        margin-bottom: 25px;
    }

    .tech-stack {
        gap: 8px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .intro-visual {
        display: none;
    }
}

/* ==================== JOURNEY TIMELINE ==================== */
.journey-timeline {
    padding: 80px 0;
    background: var(--bg-light);
}

.timeline-scroll-wrapper {
    overflow-x: auto;
    padding: 40px 0;
    margin-top: 60px;
    /* Safari */
    -webkit-user-select: none;
    /* Firefox */
    -moz-user-select: none;
    /* Internet Explorer/Edge */
    -ms-user-select: none;
    user-select: none;
}

.timeline-track {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    min-width: max-content;
}

.timeline-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    width: 350px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    position: absolute;
    top: -20px;
    left: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    /* font-weight: 800; */
    /* font-size: 14px; */
    letter-spacing: 1px;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 30px 0 24px;
}

.timeline-card h4 {
    /* font-size: 1.5rem; */
    /* font-weight: 800; */
    color: var(--dark);
    margin-bottom: 16px;
}

.timeline-card p {
    color: var(--gray);
    line-height: 1.7;
    /* font-size: 1rem; */
}

/* Navigation Wrapper */
.timeline-navigation {
    position: relative;
}

/* Scroll Wrapper */
.timeline-scroll-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* Arrows */
.timeline-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(239, 239, 239, 0);
    /* color: var(--white); */
    color: #0a0e27;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.left-arrow {
    left: -75px;
    /* slightly outside scroll area */
}

.right-arrow {
    right: -75px;
}

.timeline-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.timeline-arrow.hidden {
    display: none;
}

/* ==================== VISION STATEMENT ==================== */
.vision-statement {
    position: relative;
    padding: 40px 0;
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
}

.vision-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.vision-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}

.vision-icon-large {
    font-size: 100px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.vision-title {
    /* font-size: clamp(2rem, 5vw, 3.5rem); */
    /* font-weight: 900; */
    line-height: 1.2;
    margin: 30px 0;
    color: var(--white);
}

.vision-quote {
    max-width: 900px;
    margin: 40px auto;
    
}

.vision-quote p {
    /* font-size: 1.25rem; */
    line-height: 1.8;
    opacity: 0.9;
    font-style: italic;
    color: white;
}

/* Vision Pillars */
.vision-pillars {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pillar {
    text-align: center;
}

.pillar-icon {
    width: 100px;
    height: 100px;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    /* color: var(--primary-color); */
    margin: 0 auto 20px;
    transition: var(--transition);
}

.pillar:hover .pillar-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
}

.pillar h4 {
    /* font-size: 1.2rem; */
    /* font-weight: 700; */
    color: var(--white);
}

/* ==================== OBJECTIVES GRID ==================== */
.objectives-grid {
    padding: 70px 0;
    background: var(--white);
}

.objectives-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.objective-card-modern {
    position: relative;
    background: var(--white);
    border-radius: 30px;
    padding: 50px 40px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.objective-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.objective-card-modern:hover::before {
    opacity: 0.05;
}

.objective-card-modern:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 76, 192, 0.2);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    /* font-size: 80px; */
    /* font-weight: 900; */
    opacity: 0.05;
    line-height: 1;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: var(--transition);
}

.objective-card-modern:hover .card-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(-10deg);
}

.card-content h3 {
    /* font-size: 1.5rem; */
    /* font-weight: 800; */
    color: var(--dark);
    margin-bottom: 16px;
}

.card-content p {
    color: var(--gray);
    line-height: 1.7;
}

.card-shine {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.objective-card-modern:hover .card-shine {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        top: -50%;
        right: -50%;
    }

    100% {
        top: 150%;
        right: 150%;
    }
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(15, 76, 192, 0.3);
    z-index: 1000;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 76, 192, 0.4);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    /* font-size: 1.25rem; */
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    /* background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); */
    background: linear-gradient(90deg, #6c757d, #fff);
}

.footer-links {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 5px;
}

.footer-links i {
    /* color: var(--primary-color); */
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .intro-content {
        padding: 80px 40px;
    }

    .intro-visual {
        min-height: 500px;
    }

    .float-item {
        padding: 15px 20px;
        font-size: 14px;
    }

    .vision-pillars {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 3rem;
    }

    .rotating-words {
        min-width: 200px;
    }

    .hero-metrics {
        gap: 20px;
    }

    .metric-divider {
        display: none;
    }

    .intro-content,
    .intro-visual {
        min-height: auto;
        padding: 60px 30px;
    }

    .timeline-card {
        width: 300px;
    }

    .objectives-container {
        grid-template-columns: 1fr;
    }

    .scroll-top-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .timeline-scroll-wrapper {
        overflow-x: hidden;
        overflow-y: visible;
    }

    .timeline-track {
        flex-direction: column;
        min-width: 100%;
        gap: 60px;
        padding: 0;
    }

    .timeline-card {
        width: 100%;
        max-width: 100%;
    }

    .logo-container {
        margin-left: -100px;
    }
}

@media (max-width: 576px) {
    .float-item {
        display: none;
    }

    .code-animation {
        width: 300px;
    }

    .vision-pillars {
        flex-direction: column;
        gap: 30px;
    }
}

/* ==================== SMOOTH SCROLLBAR ==================== */
.timeline-scroll-wrapper::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}

.timeline-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
}

.timeline-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.timeline-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ==================== ANIMATION UTILITIES ==================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].animated {
    opacity: 1;
}