/* --------------------------------------------------------------------------
   PREMIUM DARK THEME - LANDING PAGE SPECIFIC STYLES
   -------------------------------------------------------------------------- */

body {
    background: #0d0b1e !important;
    /* Force rich indigo background for landing */
    color: #e8e8f0;
    overflow-x: hidden;
}

/* GSAP Pre-hide */
.gsap-hide {
    visibility: hidden;
}

/* Beautiful Abstract Glowing Orbs in Background */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    animation: floatOrb 20s infinite alternate ease-in-out;
    will-change: transform, background;
    max-height: 100vh; /* Prevent orbs from becoming taller than screen */
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(245, 158, 11, 0.05);
    top: -100px;
    left: -200px;
    animation: floatOrb1 7s infinite alternate ease-in-out;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: rgba(6, 182, 212, 0.04);
    bottom: 0; /* Anchored to bottom edge instead of -300px */
    right: -200px;
    animation: floatOrb2 9s infinite alternate ease-in-out;
    animation-delay: -2s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.03);
    top: 40%;
    left: 30%;
    animation: floatOrb3 6s infinite alternate ease-in-out;
    animation-delay: -4s;
}

@keyframes floatOrb1 {
    0% {
        transform: translate(0, 0) scale(1) translateZ(0);
        background: rgba(245, 158, 11, 0.05);
    }

    33% {
        background: rgba(239, 68, 68, 0.04);
    }

    66% {
        background: rgba(99, 102, 241, 0.04);
    }

    100% {
        transform: translate(50px, -40px) scale(1.1) translateZ(0);
        background: rgba(245, 158, 11, 0.05);
    }
}

@keyframes floatOrb2 {
    0% {
        transform: translate(0, 0) scale(1) translateZ(0);
        background: rgba(6, 182, 212, 0.04);
    }

    33% {
        background: rgba(16, 185, 129, 0.04);
    }

    66% {
        background: rgba(139, 92, 246, 0.03);
    }

    100% {
        transform: translate(-40px, 50px) scale(1.15) translateZ(0);
        background: rgba(6, 182, 212, 0.04);
    }
}

@keyframes floatOrb3 {
    0% {
        transform: translate(0, 0) scale(1) translateZ(0);
        background: rgba(139, 92, 246, 0.03);
    }

    50% {
        transform: translate(30px, -20px) scale(0.9) translateZ(0);
        background: rgba(236, 72, 153, 0.04);
    }

    100% {
        transform: translate(-20px, 30px) scale(1.05) translateZ(0);
        background: rgba(139, 92, 246, 0.03);
    }
}

/* Base Glass Card */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    will-change: transform, border-color, box-shadow;
}

.glass-panel:hover {
    transform: translateY(-8px) translateZ(0);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(99, 102, 241, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid transparent;
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    z-index: -1;
    border-radius: 50px;
}

.hero-badge i {
    color: #a855f7;
    font-size: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title .highlight-text {
    font-style: italic;
    font-weight: 500;
    color: #fff;
}

/* Typing Cursor */
.type-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: #fff;
    vertical-align: middle;
    margin-left: 2px;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* --------------------------------------------------------------------------
   TRUST BADGE (Avatars + Stars)
   -------------------------------------------------------------------------- */
.trust-badge-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #0d0b1e;
    margin-left: -12px;
    background: #fff;
    object-fit: contain;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.trust-stars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.trust-stars .stars {
    color: #f59e0b;
    /* Golden Yellow */
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.trust-stars .trust-text {
    color: #a3a3a3;
    font-size: 0.75rem;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   USUALDEV EXACT BUTTON STYLE
   -------------------------------------------------------------------------- */
.btn-usualdev {
    display: inline-flex;
    align-items: center;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    color: #fff;
    font-weight: 500;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-usualdev-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #4f46e5;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-left: 16px;
}

.btn-usualdev-icon-right,
.btn-usualdev-icon-upright {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-usualdev-icon-right {
    opacity: 1;
    transform: translate(0, 0);
}

.btn-usualdev-icon-upright {
    opacity: 0;
    transform: translate(-10px, 10px);
}

.btn-usualdev:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.btn-usualdev:hover .btn-usualdev-icon-right {
    opacity: 0;
    transform: translate(10px, -10px);
}

.btn-usualdev:hover .btn-usualdev-icon-upright {
    opacity: 1;
    transform: translate(0, 0);
}

/* Premium Buttons */
.btn-premium {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-premium-primary {
    background: #4f46e5;
    color: #fff;
    border: none;
}

.btn-premium-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
    color: #fff;
}

.btn-premium-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.stat-box {
    background: rgba(13, 11, 30, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    height: 100%;
    will-change: transform;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-box.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-box.highlight .stat-num {
    background: linear-gradient(135deg, #818cf8, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Title */
.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sec-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.p-step {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.p-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.p-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Abstract Graphic */
.abstract-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.abstract-image-container::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0 340deg, rgba(99, 102, 241, 0.3) 360deg);
    animation: rotate 10s linear infinite;
    will-change: transform;
}

.abstract-image-container::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #0d0b1e;
    border-radius: 28px;
    z-index: 1;
}

.abstract-content {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Features List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.feature-list li i {
    color: #6ee7b7;
    font-size: 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* Internship Cards */
.int-card {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.int-badge {
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.int-badge.badge-u {
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.int-badge.badge-g {
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.int-badge.badge-ug {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)) !important;
}

/* Hover effects */
.process-box {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform, box-shadow;
}

.process-box:hover {
    transform: translateY(-10px) scale(1.02) translateZ(0);
}