/* =====================================
   AKRA INFOTECH - Modern Stylesheet
   ===================================== */

:root {
    --primary: #0891b2;
    --primary-dark: #0e7490;
    --secondary: #1e3a8a;
    --accent: #06b6d4;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0891b2 0%, #1e3a8a 100%);
    --gradient-light: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --shadow-sm: 0 2px 8px rgba(8, 145, 178, 0.08);
    --shadow: 0 8px 24px rgba(8, 145, 178, 0.12);
    --shadow-lg: 0 20px 48px rgba(8, 145, 178, 0.18);
    --shadow-xl: 0 30px 80px rgba(8, 145, 178, 0.25);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================
   Buttons
   ===================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* =====================================
   Navbar
   ===================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    border-bottom-color: rgba(8, 145, 178, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
}

.logo-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-icon svg,
.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Full logo (image with embedded text) */
.logo.logo-full {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.logo.logo-full img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

.logo.logo-full:hover img {
    transform: scale(1.03);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 2px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    transition: var(--transition);
    font-size: 15px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    padding: 10px 22px;
    background: var(--gradient);
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* =====================================
   Hero Section
   ===================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.circuit-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(8, 145, 178, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 138, 0.08) 0%, transparent 40%);
    opacity: 0.8;
}

.circuit-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8, 145, 178, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #06b6d4, transparent);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b82f6, transparent);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(8, 145, 178, 0.2);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(8, 145, 178, 0.15);
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-core {
    position: absolute;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-inner {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(8, 145, 178, 0.3);
    z-index: 2;
    animation: pulse-core 3s ease-in-out infinite;
}

@keyframes pulse-core {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-xl), 0 0 60px rgba(8, 145, 178, 0.3); }
    50% { transform: scale(1.05); box-shadow: var(--shadow-xl), 0 0 80px rgba(8, 145, 178, 0.5); }
}

.core-ring {
    position: absolute;
    border: 2px dashed rgba(8, 145, 178, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 { width: 220px; height: 220px; }
.ring-2 { width: 320px; height: 320px; animation-duration: 30s; animation-direction: reverse; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-card {
    position: absolute;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: float-card 6s ease-in-out infinite;
    border: 1px solid rgba(8, 145, 178, 0.1);
}

.hero-card i {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-ai { top: 10%; left: 0; animation-delay: 0s; }
.card-web { top: 10%; right: 0; animation-delay: 1.5s; }
.card-cloud { bottom: 15%; left: 5%; animation-delay: 3s; }
.card-erp { bottom: 15%; right: 5%; animation-delay: 4.5s; }

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =====================================
   Section Common
   ===================================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-light);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
}

/* =====================================
   About
   ===================================== */
.about {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(8, 145, 178, 0.08);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.about-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--gradient-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--gray);
}

/* =====================================
   Services
   ===================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(8, 145, 178, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-8px);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card.featured .service-list i {
    color: #fbbf24;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dark-2);
}

.service-list i {
    color: var(--primary);
    font-size: 12px;
}

/* =====================================
   Internship
   ===================================== */
.internship {
    background: linear-gradient(180deg, var(--light) 0%, #e0f2fe 100%);
}

.internship-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.benefit-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(8, 145, 178, 0.1);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.benefit-card.highlight-card {
    background: var(--gradient);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
}

.benefit-card.highlight-card h4,
.benefit-card.highlight-card p {
    color: var(--white);
}

.benefit-card.highlight-card .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fbbf24;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gradient-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
}

.benefit-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.tracks-wrapper {
    margin-bottom: 80px;
}

.tracks-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.track-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.track-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.track-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 20px;
}

.track-card h4 {
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.track-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-card li {
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    padding-left: 18px;
}

.track-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Journey */
.journey-wrapper {
    margin-bottom: 60px;
}

.journey-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.journey-step {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(8, 145, 178, 0.1);
}

.journey-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.journey-step i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
    margin-top: 8px;
}

.journey-step h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.journey-step p {
    font-size: 0.85rem;
    color: var(--gray);
}

.journey-arrow {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-size: 18px;
}

.internship-cta {
    text-align: center;
    background: var(--white);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.internship-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.internship-cta p {
    color: var(--gray);
    margin-bottom: 24px;
}

/* =====================================
   Tech Stack
   ===================================== */
.tech-projects {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-project {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(8, 145, 178, 0.1);
    transition: var(--transition);
}

.tech-project:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.project-num {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.tech-project-header h3 {
    font-size: 1.35rem;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.tech-logo:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-4px);
}

.tech-logo i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.tech-logo:hover i {
    color: var(--white);
}

.tech-logo span {
    font-size: 13px;
    font-weight: 600;
}

/* =====================================
   Team / Leadership
   ===================================== */
.team {
    background: linear-gradient(180deg, var(--white) 0%, #f0f9ff 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(8, 145, 178, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--gradient);
    opacity: 0.08;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.team-card:hover::before {
    opacity: 0.15;
}

.team-avatar {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 24px;
}

.avatar-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 44px;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(8, 145, 178, 0.25);
    border: 4px solid var(--white);
    position: relative;
    z-index: 1;
}

.avatar-circle.avatar-legal {
    background: linear-gradient(135deg, #1e3a8a, #6366f1);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(99, 102, 241, 0.25);
}

.team-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    background: #fbbf24;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.team-badge.badge-legal {
    background: #6366f1;
}

.team-info {
    position: relative;
    z-index: 1;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.team-role {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.team-creds {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.team-bio {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--gradient-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 15px;
}

.team-social a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

/* =====================================
   Why Us
   ===================================== */
.why-us {
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(8, 145, 178, 0.08);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.why-card:hover h4,
.why-card:hover p,
.why-card:hover i {
    color: var(--white);
}

.why-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* =====================================
   Contact
   ===================================== */
.contact {
    background: linear-gradient(180deg, var(--white) 0%, #e0f2fe 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.contact-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(8, 145, 178, 0.1);
    cursor: pointer;
    display: block;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-card.whatsapp-card {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border: none;
}

.contact-card.whatsapp-card .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.contact-card.whatsapp-card h4,
.contact-card.whatsapp-card p {
    color: var(--white);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gradient-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
}

.contact-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-cta {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 56px 32px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-actions .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.contact-actions .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.contact-actions .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* =====================================
   Footer
   ===================================== */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 72px 0 24px;
}

.footer .logo-name {
    color: var(--white);
}

.footer .logo-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 6px;
}

/* Footer logo on dark bg — show full logo on white card */
.footer-logo {
    height: 80px !important;
    background: white;
    padding: 8px 16px !important;
    border-radius: 12px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-logo img {
    mix-blend-mode: normal !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-desc {
    margin: 20px 0 24px;
    color: var(--gray-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--gray-light);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-list i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #ef4444;
}

/* =====================================
   Floating WhatsApp
   ===================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    white-space: nowrap;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--dark);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    right: 78px;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* =====================================
   Animations
   ===================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================
   Responsive
   ===================================== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 400px; }
    .about-grid,
    .services-grid,
    .internship-benefits,
    .tracks-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; max-width: 480px; }
    .contact-grid,
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .tech-project { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    section { padding: 72px 0; }
    .hero { padding: 100px 0 40px; }

    .nav-links {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        height: calc(100vh - 72px);
        border-left: 1px solid rgba(8, 145, 178, 0.1);
    }
    .nav-links.active { right: 0; }
    .cta-btn { display: none; }
    .hamburger { display: flex; }

    .logo.logo-full { height: 50px; }
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-visual { height: 350px; }
    .hero-card { padding: 14px 18px; font-size: 13px; }
    .hero-card i { width: 36px; height: 36px; font-size: 16px; }

    .about-grid,
    .services-grid,
    .internship-benefits,
    .tracks-grid,
    .contact-grid,
    .why-grid { grid-template-columns: 1fr; }

    .journey-flow { flex-direction: column; align-items: center; }
    .journey-arrow { transform: rotate(90deg); }
    .journey-step { max-width: 100%; width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .tech-logos { grid-template-columns: repeat(2, 1fr); }
    .contact-actions { flex-direction: column; align-items: stretch; }
    .contact-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .btn { padding: 12px 22px; font-size: 14px; }
    .btn-large { padding: 16px 28px; }
    .floating-whatsapp { width: 54px; height: 54px; font-size: 24px; bottom: 16px; right: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
}
