:root {
    /* Oxford Burgundy Palette */
    --clr-primary: #5E0B0B;
    --clr-primary-hover: #7D0F0F;
    --clr-primary-dark: #3D0707;

    /* Gold Palette */
    --clr-accent-gold: #d4af37;
    --clr-accent-gold-light: #f1e5ac;

    /* Grey Palette */
    --clr-grey-light: #f5f5f5;
    --clr-grey-med: #777777;
    --clr-grey-dark: #333333;

    /* Black & White */
    --clr-black: #000000;
    --clr-black-elegant: #121212;
    --clr-white: #ffffff;

    /* Background Colors */
    --clr-bg-page: var(--clr-grey-light);
    --clr-bg-card: var(--clr-white);

    /* Text Colors */
    --clr-text-main: var(--clr-black-elegant);
    --clr-text-soft: var(--clr-grey-med);
    --clr-border: rgba(0, 0, 0, 0.1);

    /* Gradients */
    --grad-main: linear-gradient(135deg, #5E0B0B 0%, #7D0F0F 100%);
    --grad-gold: linear-gradient(135deg, #d4af37 0%, #f1e5ac 100%);
    --grad-black: linear-gradient(135deg, #121212 0%, #333333 100%);
    --grad-highlight-text: linear-gradient(90deg, #5E0B0B 0%, #d4af37 50%, #5E0B0B 100%);

    /* UI Tokens */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Outfit', sans-serif;
    --radius-pill: 50px;
    --radius-lg: 20px;
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-elegant: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-burgundy: 0 4px 16px rgba(123, 29, 34, 0.15);

    /* Glassmorphism Tokens - Synced with original components */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    --glass-blur: blur(25px);

    /* UI Tokens */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes shapeFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes shapeFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-80px, 100px) scale(1.2);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Bubble Animations for Hero */
@keyframes bubbleFloat1 {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px);
        opacity: 0.2;
    }
}

@keyframes bubbleFloat2 {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.1;
    }

    50% {
        transform: translateY(25px);
        opacity: 0.3;
    }
}

@keyframes bubbleFloat3 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(46, 204, 113, 0.08);
    filter: blur(40px);
    animation: shapeFloat1 20s infinite linear;
}

.shape-2 {
    position: absolute;
    top: 60%;
    right: 8%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.08);
    filter: blur(50px);
    animation: shapeFloat2 25s infinite linear;
}

/* Hero Bubbles */
.hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
}

.bubble.b1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: rgba(94, 11, 11, 0.05);
    animation: bubbleFloat1 4s ease-in-out infinite;
}

.bubble.b2 {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.05);
    animation: bubbleFloat2 6s ease-in-out infinite 1s;
}

.bubble.b3 {
    bottom: 15%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(94, 11, 11, 0.05);
    animation: bubbleFloat3 5s ease-in-out infinite 2s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--clr-bg-page);
    color: var(--clr-text-soft);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a,
button,
input,
textarea,
select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--clr-text-main);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 4rem;
    text-align: center;
}

.gradient-text {
    background: var(--grad-highlight-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--clr-primary);
    -webkit-text-fill-color: transparent;
    display: inline-block;
    line-height: 1.4;
}

.emphasize {
    background: var(--grad-highlight-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--clr-primary);
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-weight: 700;
    line-height: 1.4;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-main);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(94, 11, 11, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: var(--grad-gold);
    color: var(--clr-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: var(--clr-primary);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(94, 11, 11, 0.3);
}

.btn-white {
    background: white;
    color: var(--clr-primary);
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-5px) scale(1.05);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline-white:hover {
    background: white;
    color: var(--clr-primary);
    transform: translateY(-5px) scale(1.05);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 1000;
    transition: var(--transition);
    border-radius: 50px;
    padding: 0.6rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 2rem;
    top: 10px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-weight: 700;
    color: var(--clr-primary);
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-primary) 0%, var(--clr-accent-gold) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-portal {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: var(--grad-main);
    color: white !important;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-burgundy);
    margin-left: 1rem;
}

.nav-portal i {
    width: 18px;
    height: 18px;
}

.nav-portal:hover {
    transform: translateY(-2px);
    background: var(--grad-gold);
    color: var(--clr-primary) !important;
    box-shadow: var(--shadow-gold);
}


.menu-icon {
    display: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1002;
}

.hamburger-alt {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.hamburger-alt span {
    display: block;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-alt span:nth-child(1) {
    width: 28px;
}

.hamburger-alt span:nth-child(2) {
    width: 18px;
}

/* Thinner/shorter middle line for Alt3 look */
.hamburger-alt span:nth-child(3) {
    width: 28px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: var(--clr-bg-page);
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-container-v2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: #f1e5ac66;
    color: var(--clr-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.hero-content-v2 h1 {
    font-size: 3.8rem;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
    max-width: 800px;
}

.hero-content-v2 .description {
    font-size: 1.25rem;
    color: var(--clr-text-soft);
    margin-bottom: 3.5rem;
    max-width: 650px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.hero-image-v2 {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.dashboard-mock {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    width: 100%;
    max-width: 450px;
}

.dashboard-mock:hover {
    transform: perspective(1000px) rotateY(-8deg) rotateX(10deg) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.mock-stats {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

/* HYBRID SERVICES GRID (Mirrored Layout) */
.services-v2 {
    padding: 160px 0;
    background: #fdfdfd;
}

.services-hero {
    padding: 180px 0 60px;
    background: #fdfdfd;
    text-align: center;
}

.services-hero h1 {
    font-size: 4rem;
    color: var(--clr-primary);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.services-hero .description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--clr-text-soft);
}

.services-grid-hybrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.service-item-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3.5rem 2.5rem;
    background: var(--clr-white);
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.service-item-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--clr-accent-gold);
}

.service-item-v2.reverse {
    flex-direction: row-reverse;
}

.service-item-v2 h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--clr-primary);
    font-weight: 800;
    line-height: 1.2;
}

.service-item-v2 p {
    font-size: 1.15rem;
    color: var(--clr-text-soft);
    line-height: 1.6;
    font-weight: 500;
}

.service-item-v2 .icon-box {
    width: 90px;
    height: 90px;
    background: var(--clr-primary);
    color: var(--clr-white);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-burgundy);
}

.service-item-v2:hover .icon-box {
    background: var(--grad-gold);
    color: var(--clr-primary);
    transform: rotate(10deg) scale(1.15);
}

/* STATS STRIP */
.stats-strip {
    background: var(--grad-main);
    padding: 100px 0;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.stat-item p {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* RELIABILITY */
.reliability {
    padding: 160px 0;
    background: var(--clr-bg-page);
}

.reliability-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.office-img-placeholder {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.office-img-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.img-overlay-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: white;
    padding: 2rem;
    border-radius: 30px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    max-width: 320px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.overlay-icon {
    font-size: 2rem;
}

.img-overlay-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--clr-text-main);
    font-weight: 800;
}

.img-overlay-card p {
    font-size: 0.9rem;
    color: var(--clr-text-soft);
}

.section-title-left {
    font-size: 3.5rem;
    color: var(--clr-text-main);
    margin-bottom: 2.5rem;
    text-align: left;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.reliability-content .description {
    font-size: 1.25rem;
    color: var(--clr-text-soft);
    margin-bottom: 4rem;
    font-weight: 500;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: #5E0B0B15;
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.feature-item p {
    font-size: 1.05rem;
    color: var(--clr-text-soft);
}

/* TECH STACK VISUALIZATION */
.tech-stack-section {
    padding: 100px 0;
    text-align: center;
    background: #fdfdfd;
    overflow: hidden;
}

.tech-container {
    position: relative;
    max-width: 1000px;
    margin: 80px auto;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Logo */
.tech-center {
    width: 150px;
    height: 150px;
    background: #f3f0e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tech-center img {
    width: 80px;
}

/* Dash Circle */
.tech-circle-path {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px dashed #e5e0d0;
    border-radius: 50%;
    pointer-events: none;
}

/* Tech Nodes */
.tech-node {
    position: absolute;
    background: white;
    padding: 2.5rem;
    border-radius: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    width: 320px;
    text-align: left;
    transition: var(--transition);
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tech-node:hover {
    transform: translateY(-10px);
    border-color: var(--clr-accent-gold);
}

.node-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.node-header i {
    font-size: 1.5rem;
    color: var(--clr-primary);
}

.node-header h3 {
    font-size: 1.5rem;
    color: var(--clr-primary);
    font-weight: 800;
}

/* Position Nodes */
.node-top {
    top: -20px;
}

.node-left {
    left: 0;
}

.node-right {
    right: 0;
}

.node-bottom {
    bottom: -20px;
}

/* Skill Badges */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-badge {
    padding: 0.6rem 1.2rem;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-main);
    transition: var(--transition);
}

.skill-badge:hover {
    background: var(--clr-primary);
    color: white;
    border-color: var(--clr-primary);
}

@media (max-width: 992px) {
    .tech-container {
        height: auto;
        flex-direction: column;
        gap: 3rem;
    }

    .tech-node {
        position: static;
        width: 100%;
        max-width: 450px;
    }

    .tech-circle-path,
    .tech-center {
        display: none;
    }
}

/* TRAINING PAGE */
.training-hero {
    padding: 180px 0 100px;
    background: var(--clr-primary-dark);
    color: white;
    text-align: center;
}

.training-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.training-section {
    padding: 100px 0;
}

.benefits-grid,
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 50px;
}

.benefit-card,
.track-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 4rem 2.5rem;
    border-radius: 35px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover,
.track-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--clr-accent-gold);
}

.track-card {
    border-top: 6px solid var(--clr-accent-gold);
}

.benefit-icon,
.track-icon-wrapper {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.track-btn {
    margin-top: 2rem;
}

/* WHY CHOOSE US */
.why-choose {
    padding: 160px 0;
    background: var(--clr-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.why-card {
    display: flex;
    flex-direction: column;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: perspective(1000px) rotateX(10deg) translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--clr-accent-gold);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

.why-icon {
    font-size: 3.5rem;
    color: var(--clr-primary);
    margin-bottom: 2.5rem;
}

.why-icon i,
.why-icon svg {
    width: 3.5rem;
    height: 3.5rem;
    stroke-width: 1.5px;
}

.why-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--clr-text-main);
}

.why-card p {
    color: var(--clr-text-soft);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* CTA SECTION */
.cta-section {
    padding: 120px 0;
    background: var(--grad-main);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* FOOTER */
.footer {
    background: #1a0505;
    color: white;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--clr-accent-gold);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--clr-accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.footer-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(94, 11, 11, 0.15) 0%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-decoration-1 {
    top: -200px;
    right: -150px;
}

.footer-decoration-2 {
    bottom: -200px;
    left: -150px;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent-gold);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--clr-accent-gold);
    color: #1a0505;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    border-color: transparent;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--clr-accent-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.brand-section p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links li a i,
.footer-links li a svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5px;
    margin-right: 0.5rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-weight: 500;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent-gold);
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links li a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.sections-spacing {
    padding: 120px 0;
}

.about-hero {
    padding: 180px 0 100px;
    background: var(--clr-bg-page);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(94, 11, 11, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-title {
    font-size: 5rem;
    margin-bottom: 2.5rem;
    color: var(--clr-primary);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--clr-text-soft);
    line-height: 1.7;
    font-weight: 500;
    max-width: 600px;
}

.visual-box {
    position: relative;
    padding: 2rem;
}

.visual-box img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.box-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 8px solid var(--clr-accent-gold);
    z-index: -1;
    border-radius: 20px;
}

.top-right {
    top: 0;
    right: 0;
    border-left: 0;
    border-bottom: 0;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-right: 0;
    border-top: 0;
}

/* ABOUT SERVICES */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.about-service-card {
    background: var(--clr-white);
    padding: 4rem 3rem;
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--clr-border);
}

.about-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.tech-badge {
    padding: 0.5rem 1rem;
    background: #5E0B0B08;
    color: var(--clr-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* MISSION VISION */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.mv-card {
    background: var(--grad-main);
    color: white;
    padding: 5rem 4rem;
    border-radius: 50px;
    box-shadow: 0 30px 60px rgba(94, 11, 11, 0.2);
}

.mv-card h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.mv-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

/* CORE VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.value-item {
    text-align: center;
}

.value-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.value-item p {
    color: var(--clr-text-soft);
    line-height: 1.6;
}

/* INTERNSHIP PAGE */
.internship-hero {
    background: linear-gradient(135deg, rgba(94, 11, 11, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 140px 0 100px;
    text-align: center;
}

.internship-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    color: var(--clr-black-elegant);
    font-weight: 800;
    line-height: 1.2;
}

.internship-hero h1 span {
    background: var(--grad-highlight-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.internship-hero p {
    font-size: 1.25rem;
    color: var(--clr-text-soft);
    max-width: 1100px;
    margin: 0 auto;
    line-height: 1.8;
}

/* PROGRAM OVERVIEW */
.program-overview {
    padding: 100px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.overview-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overview-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 0 20px rgba(212, 175, 55, 0.1);
}

.overview-card:hover::after {
    opacity: 1;
}

.overview-icon {
    font-size: 3.5rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-icon i,
.overview-icon svg {
    width: 60px;
    height: 60px;
    stroke-width: 1.5px;
}

/* TRACKS SECTION */
.tracks-section {
    padding: 100px 0;
    background: var(--clr-white);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.track-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 40px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--track-accent, var(--clr-primary));
    opacity: 0.8;
}

.track-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.track-icon-wrapper {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.track-card:hover .track-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.track-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--track-accent, var(--clr-primary));
    filter: blur(25px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.track-card:hover .track-icon-glow {
    opacity: 0.15;
}

.track-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--clr-primary);
    font-weight: 800;
}

.track-tagline {
    font-size: 0.95rem;
    color: var(--clr-text-soft);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.track-meta {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-chip {
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.track-card:hover .meta-chip {
    border-color: var(--track-accent);
}

.track-content {
    margin-bottom: 1.5rem;
}

.track-content h4 {
    font-size: 0.8rem;
    color: var(--track-accent, var(--clr-primary));
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.track-content p {
    color: var(--clr-text-soft);
    line-height: 1.5;
    font-size: 0.9rem;
}

.track-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.track-content ul li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--clr-text-soft);
    font-size: 0.85rem;
    font-weight: 500;
}

.track-btn {
    width: 100%;
    margin-top: auto;
    padding: 1rem;
    background: var(--track-accent);
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.4s ease;
}

.track-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* BENEFITS */
.benefits-section {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-accent-gold);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: block;
}

/* ENROLLMENT */
.enrollment-section {
    padding: 100px 0;
}

.enrollment-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.enrollment-step {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.enrollment-step:hover {
    transform: translateX(10px);
    border-left: 8px solid var(--clr-accent-gold);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--grad-main);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    transform: rotate(-5deg);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--clr-text-main);
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: var(--clr-primary);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 0;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--clr-primary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    background: var(--clr-primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--clr-text-soft);
    line-height: 1.6;
    margin: 0;
}

/* APPLY CTA */
.apply-cta {
    padding: 80px 0;
    background: var(--clr-black-elegant);
    text-align: center;
    color: white;
}

.apply-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
}

.apply-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    background: var(--grad-gold);
    color: var(--clr-primary);
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.apply-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* WORKSHOP PAGE V4 */
.workshop-page-v4 {
    min-height: 100vh;
    padding: 120px 0 100px;
    background: var(--clr-bg-page);
    position: relative;
    overflow: hidden;
}

.workshop-bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.1;
}

.blob-1 {
    top: -100px;
    right: -100px;
    background: var(--clr-primary);
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    background: var(--clr-accent-gold);
}

.workshop-hero-v4 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hero-badge-v4 {
    display: inline-block;
    background: rgba(94, 11, 11, 0.1);
    color: #5E0B0B;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.workshop-hero-v4 h1 {
    font-size: 3.5rem;
    color: var(--clr-text-main);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.workshop-hero-v4 h1 .text-highlight {
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.workshop-hero-v4 p {
    font-size: 1.25rem;
    color: var(--clr-text-soft);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.form-main-wrapper {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.registration-card-v4 {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-info-banner {
    display: flex;
    gap: 1.5rem;
    background: rgba(94, 11, 11, 0.05);
    padding: 1.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--clr-primary);
    margin-bottom: 3rem;
    align-items: flex-start;
}

.info-icon-box {
    font-size: 1.5rem;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    color: var(--clr-text-main);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-text p {
    margin: 0;
    color: var(--clr-text-soft);
    line-height: 1.5;
}

.workshop-form-v4 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-v4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-v4 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group-v4.full-width {
    grid-column: span 2;
}

.form-group-v4 label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--clr-text-main);
    font-size: 0.95rem;
}

.input-icon {
    color: var(--clr-primary);
    width: 18px;
    height: 18px;
}

.form-group-v4 input,
.form-group-v4 select,
.form-group-v4 textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group-v4 input:focus,
.form-group-v4 select:focus,
.form-group-v4 textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(94, 11, 11, 0.1);
}

.form-group-v4 textarea {
    min-height: 120px;
    resize: vertical;
}

.required {
    color: var(--clr-primary);
}

.submit-btn-v4 {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
    background: var(--grad-main);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(94, 11, 11, 0.2);
    transition: all 0.3s ease;
}

.submit-btn-v4:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(94, 11, 11, 0.3);
}

.submit-btn-v4:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success Card */
.success-container {
    display: none;
    /* Controlled by JS */
}

.success-card-v4 {
    text-align: center;
    padding: 5rem 3rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.success-icon-wrapper {
    margin-bottom: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    color: #10b981;
}

.success-card-v4 h2 {
    font-size: 2.5rem;
    color: var(--clr-text-main);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
}

.success-card-v4 p {
    color: var(--clr-text-soft);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-v4-primary {
    background: var(--grad-main);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-v4-outline {
    background: white;
    color: var(--clr-text-main);
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-v4-outline:hover {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .workshop-page-v4 {
        padding: 100px 0 60px;
    }

    .workshop-hero-v4 h1 {
        font-size: 2.5rem;
    }

    .form-row-v4 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group-v4.full-width {
        grid-column: span 1;
    }

    .registration-card-v4 {
        padding: 2.5rem 1.5rem;
    }

    .success-actions {
        flex-direction: column;
    }
}

/* CONTACT PAGE */
.contact-page {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.2;
    background: var(--grad-highlight-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 1.25rem;
    color: var(--clr-text-soft);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.8;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 220px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--clr-accent-gold);
}

.info-icon {
    width: 52px;
    height: 52px;
    background: var(--grad-gold);
    color: var(--clr-black);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--clr-primary);
    color: white;
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--clr-text-main);
    font-weight: 700;
}

.info-card p {
    color: var(--clr-text-soft);
    line-height: 1.4;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.info-card a {
    color: var(--clr-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: var(--clr-accent-gold);
}

.info-quote {
    font-style: italic;
    color: var(--clr-text-soft);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem 4.5rem;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.form-header h2 {
    font-size: 3rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.form-header p {
    color: var(--clr-text-soft);
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: var(--clr-text-main);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(94, 11, 11, 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-decoration {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.decoration-1 {
    top: -100px;
    right: -100px;
}

.decoration-2 {
    bottom: -100px;
    left: -100px;
}

/* Success Message v2 */
.success-message-v2 {
    text-align: center;
    padding: 2rem 0;
}

.success-icon-v2 {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.success-message-v2 h2 {
    font-size: 2.2rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.success-message-v2 p {
    color: var(--clr-text-soft);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.submit-btn {
    background: var(--grad-main);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(94, 11, 11, 0.2);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(94, 11, 11, 0.3);
}

/* SCROLL-BASED ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0, 0) scale(1) !important;
}

/* Directional variants */
.animate-on-scroll.slide-up {
    transform: translateY(50px);
}

.animate-on-scroll.slide-down {
    transform: translateY(-50px);
}

.animate-on-scroll.slide-left {
    transform: translateX(50px);
}

.animate-on-scroll.slide-right {
    transform: translateX(-50px);
}

.animate-on-scroll.scale-up {
    transform: scale(0.9);
}

/* Default fallback */
.animate-on-scroll:not(.slide-up):not(.slide-down):not(.slide-left):not(.slide-right):not(.scale-up) {
    transform: translateY(30px);
}

/* Staggered animation delays */
.animate-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.5s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.6s;
}

/* WHY CHOOSE SECTION */
.why-choose-section {
    background: linear-gradient(to bottom, transparent, rgba(94, 11, 11, 0.02));
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.choose-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(94, 11, 11, 0.08);
    border-color: var(--clr-primary);
}

.choose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.choose-card p {
    color: var(--clr-text-soft);
    line-height: 1.7;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {

    .about-hero-container,
    .hero-container-v2,
    .services-grid-v2,
    .why-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content-v2,
    .about-hero-text {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-v2,
    .about-hero-visual {
        justify-content: center;
        margin-top: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-content-v2 h1,
    .about-title {
        font-size: 2.5rem;
    }

    .cta-container h2 {
        font-size: 2.2rem;
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-radius: 0 0 30px 30px;
        border: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-links.active li {
        width: 100%;
        text-align: center;
        margin: 1rem 0;
    }
}

/* ===================================
   SERVICES PAGE STYLES
   =================================== */

.services-page-v2 {
    background-color: var(--clr-bg-page);
}

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(94, 11, 11, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
    padding: 180px 0 60px;
}

.center-hero {
    text-align: center;
}

.center-hero h1 {
    font-size: 3.8rem;
    background: var(--grad-highlight-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero .description {
    font-size: 1.25rem;
    color: var(--clr-text-soft);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Hero Entrance Animations */
.center-hero {
    animation: heroContainerEnter 0.8s ease-out forwards;
}

@keyframes heroContainerEnter {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.center-hero h1 {
    animation: heroTitleEnter 0.6s ease-out 0.2s backwards;
}

@keyframes heroTitleEnter {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.center-hero .description {
    animation: heroDescEnter 0.6s ease-out 0.5s backwards;
}

@keyframes heroDescEnter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Home Page Specific Sections */
.services-v2 {
    padding: 160px 0;
    background: var(--clr-bg-white);
    text-align: center;
}

.services-header {
    margin-bottom: 6rem;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--clr-primary);
    margin: 1.5rem auto 0;
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.competency-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    transition: var(--transition);
}

.competency-card:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.competency-icon {
    width: 65px;
    height: 65px;
    background: var(--grad-gold);
    color: var(--clr-black-elegant);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 1;
}

.competency-icon i,
.competency-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2px;
}

.competency-card:hover .competency-icon {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-8px) scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(94, 11, 11, 0.4);
}

.competency-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.competency-card p {
    font-size: 0.95rem;
    color: var(--clr-text-soft);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more-link {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--clr-text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.learn-more-link span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.learn-more-link:hover {
    color: var(--clr-primary);
}

.learn-more-link:hover span {
    transform: translateX(3px);
}

/* Why Choose Section */
.why-choose {
    background-color: var(--clr-bg-white);
    padding: 160px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    display: flex;
    flex-direction: column;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-gold);
    border-color: var(--clr-accent-gold);
}

.why-icon {
    font-size: 3.5rem;
    color: var(--clr-primary);
    margin-bottom: 2rem;
}

.why-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--clr-text-main);
}

.why-card p {
    color: var(--clr-text-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #7A5C12 0%, #3D0707 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {

    .services-grid-v2,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (max-width: 600px) {

    .services-grid-v2,
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Sections */
.our-services,
.dev-process,
.tech-master {
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--clr-grey-med);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

/* Section title entrance animations */
.section-title {
    animation: sectionTitleEnter 0.6s ease-out backwards;
}

.section-subtitle {
    animation: sectionSubtitleEnter 0.6s ease-out 0.2s backwards;
}

@keyframes sectionTitleEnter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes sectionSubtitleEnter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Services Grid Hybrid */
.services-grid-hybrid {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.center-divider {
    background: linear-gradient(to bottom, transparent, var(--clr-accent-gold), transparent);
    grid-column: 2;
    grid-row: 1 / -1;
    height: 100%;
    min-height: 600px;
}

.services-column-left,
.services-column-right {
    display: contents;
}

.services-column-left .service-item-v2:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.services-column-left .service-item-v2:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.services-column-left .service-item-v2:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}

.services-column-left .service-item-v2:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
}

.services-column-right .service-item-v2:nth-child(1) {
    grid-column: 3;
    grid-row: 1;
}

.services-column-right .service-item-v2:nth-child(2) {
    grid-column: 3;
    grid-row: 2;
}

.services-column-right .service-item-v2:nth-child(3) {
    grid-column: 3;
    grid-row: 3;
}

.services-column-right .service-item-v2:nth-child(4) {
    grid-column: 3;
    grid-row: 4;
}

/* Base service card styles */
.service-item-v2 {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item-v2:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--clr-accent-gold);
    box-shadow: var(--shadow-gold);
}

.services-column-left .service-item-v2 {
    flex-direction: row;
    text-align: right;
}

/* Directional entrance animations */
.services-column-left .service-item-v2.animate-on-scroll {
    transform: translateX(-50px);
}

.services-column-left .service-item-v2.animate-on-scroll.animated {
    transform: translateX(0);
}

.services-column-right .service-item-v2 {
    flex-direction: row;
    text-align: left;
}

.services-column-right .service-item-v2.animate-on-scroll {
    transform: translateX(50px);
}

.services-column-right .service-item-v2.animate-on-scroll.animated {
    transform: translateX(0);
}

/* Directional hover effects */
.services-column-left .service-item-v2:hover {
    transform: translateY(-8px) scale(1.02) translateX(-5px);
}

.services-column-right .service-item-v2:hover {
    transform: translateY(-8px) scale(1.02) translateX(5px);
}

.service-item-v2 .text-content {
    flex: 1;
}

.service-item-v2 h3 {
    font-size: 1.75rem;
    color: var(--clr-primary);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.service-item-v2 p {
    color: var(--clr-text-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.service-item-v2 .icon-box {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    background: var(--clr-primary);
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.2);
}

/* Process Section */
.dev-process {
    background: var(--clr-grey-light);
}

.process-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-card-v2 {
    padding: 4rem 2.5rem;
    text-align: center;
    border-radius: 32px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-num {
    width: 75px;
    height: 75px;
    background: var(--grad-gold);
    color: var(--clr-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2.5rem;
    transform: rotate(-5deg);
}

.process-card-v2 h3 {
    font-size: 1.75rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.process-card-v2 p {
    color: var(--clr-text-soft);
    line-height: 1.6;
}

.refresh-icon-wrapper {
    display: inline-block;
    animation: rotate360 4s linear infinite;
    margin-left: 0.5rem;
    line-height: 0;
    vertical-align: middle;
}

.refresh-icon {
    width: 2rem;
    height: 2rem;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tech Master - Orbital Layout */
.orbital-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem auto;
    max-width: 900px;
}

.orbital-container {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateOrbital 60s linear infinite;
}

@keyframes rotateOrbital {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbital-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.orbital-item {
    position: absolute;
    width: 280px;
    z-index: 2;
}

.tech-card-mini {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: counterRotate 60s linear infinite;
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.tech-card-mini:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--clr-accent-gold);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.tech-header-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tech-icon {
    font-size: 1.5rem;
}

.tech-header-mini h3 {
    font-size: 1.25rem;
    color: var(--clr-primary);
    margin: 0;
    font-weight: 800;
}

.tech-tags-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags-mini span {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    font-weight: 700;
    color: var(--clr-text-main);
}

.orbital-center {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-logo {
    width: 80%;
    height: auto;
    position: relative;
    z-index: 2;
}

.center-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--clr-accent-gold-light);
    border-radius: 50%;
    animation: pulse 3s infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, #7A5C12 0%, #3D0707 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.services-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    color: white;
}

.services-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.cta-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-white {
    background: white;
    color: var(--clr-primary);
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--clr-primary);
    transform: translateY(-5px) scale(1.05);
}

.center-text {
    text-align: center;
}

/* Responsive Breakpoints - Standardized with React Version */

/* 1. Large Tablets / Small Laptops (992px - 1100px) */
@media (max-width: 1100px) {
    .services-grid-hybrid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .center-divider {
        display: none;
    }

    .services-column-left .service-item-v2,
    .services-column-right .service-item-v2 {
        grid-column: 1 !important;
        grid-row: auto !important;
        flex-direction: row;
        text-align: left;
    }

    .services-column-left .service-item-v2 {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .process-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .orbital-container {
        width: 300px;
        height: 300px;
    }

    .orbital-item {
        width: 200px;
    }
}

/* 2. Tablets (992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 5%;
    }

    .hero-container-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content-v2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content-v2 h1 {
        font-size: 2.8rem;
        max-width: 100%;
    }

    .hero-content-v2 .description {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .dashboard-mock {
        margin: 0 auto;
    }

    .services-grid-v2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-services-grid,
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        flex-direction: column;
        text-align: center;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* 3. Small Tablets (768px) */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: var(--transition);
        text-align: center;
        align-items: center;
        border-radius: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-portal {
        display: none;
        /* Hidden on primary bar, handled in portal-mobile-link */
    }

    .nav-links li.portal-mobile-link {
        display: block;
        width: 100%;
    }

    .nav-links li.portal-mobile-link a {
        background: var(--grad-main);
        color: white !important;
        border-radius: 15px;
        padding: 1rem !important;
        justify-content: center;
        margin-top: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .hero-content-v2 h1 {
        font-size: 2.4rem;
    }

    .about-services-grid,
    .values-grid,
    .contact-info,
    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .brand-section {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .enrollment-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .about-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .center-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero {
        padding: 140px 0 40px;
    }

    .process-grid-v2,
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .service-item-v2 {
        flex-direction: column;
        text-align: center;
    }

    .services-column-left .service-item-v2 {
        flex-direction: column;
        text-align: center;
    }

    .services-cta h2 {
        font-size: 2.5rem;
    }

    .cta-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .orbital-wrapper {
        height: auto;
        min-height: 550px;
        padding: 50px 0;
        overflow: visible;
    }

    .orbital-container {
        width: 100%;
        max-width: 320px;
        height: 320px;
        margin: 0 auto;
    }

    .orbital-item {
        width: 160px;
    }

    .orbital-center {
        width: 80px;
        height: 80px;
    }

    .process-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* 4. Small Mobile (600px) */
@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-v2 h1 {
        font-size: 2rem;
    }
}

/* 5. Mobile Mini (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .footer-section {
        padding: 1.5rem;
    }

    .about-hero-container {
        flex-direction: column;
    }
}