/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0a0808;
    color: #e8e0d8;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ============================================================
   GOLD THEME COLORS
   ============================================================ */
:root {
    --gold: #d4a84b;
    --gold-light: #f0d080;
    --gold-dark: #b8922f;
    --gold-gradient: linear-gradient(135deg, #d4a84b, #f0d080, #b8922f);
    --gold-glow: rgba(212, 168, 75, 0.3);
    --dark-bg: #0a0808;
    --card-bg: rgba(212, 168, 75, 0.05);
    --border-gold: rgba(212, 168, 75, 0.2);
}

.gold-text {
    color: var(--gold);
}

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

/* ============================================================
   SECTION TAGS
   ============================================================ */
.section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    animation: tagPulse 3s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 75, 0); }
    50% { box-shadow: 0 0 20px 5px rgba(212, 168, 75, 0.1); }
}

.section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #f5ede4;
}

.section-sub {
    font-size: 1.2rem;
    color: #a89888;
    max-width: 600px;
    margin-bottom: 40px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(10, 8, 8, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-gold);
    transition: all 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.logo-edutech {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold-light);
    background: var(--card-bg);
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    color: #c8bdb0;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

/* ============================================================
   PAGE SYSTEM
   ============================================================ */
.page {
    display: none;
    animation: fadePage 0.4s ease forwards;
    padding-top: 80px;
}

.page.active {
    display: block;
}

@keyframes fadePage {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 40px 24px;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    background: var(--card-bg);
    backdrop-filter: blur(4px);
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #f5ede4;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(212, 168, 75, 0.1); }
    50% { text-shadow: 0 0 60px rgba(212, 168, 75, 0.2); }
}

.hero-sub {
    font-size: 1.3rem;
    color: #a89888;
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-block;
    background: var(--gold-gradient);
    color: #0a0808;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(212, 168, 75, 0.6);
}

.btn-secondary {
    display: inline-block;
    color: var(--gold-light);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--border-gold);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: var(--card-bg);
    color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.hero-stats div span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    animation: statPulse 2s ease-in-out infinite;
}

.hero-stats div:nth-child(1) span { animation-delay: 0s; }
.hero-stats div:nth-child(2) span { animation-delay: 0.3s; }
.hero-stats div:nth-child(3) span { animation-delay: 0.6s; }

@keyframes statPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-stats div p {
    font-size: 0.85rem;
    color: #a89888;
    font-weight: 500;
}

/* ============================================================
   HOME SERVICES
   ============================================================ */
.home-services {
    background: #0f0c0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.05), transparent 70%);
    transition: all 0.6s;
}

.service-card:hover::before {
    top: 0;
    left: 0;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 168, 75, 0.15);
}

.service-icon img {
    width: 72px;
    height: 72px;
    display: block;
    margin: 0 auto 16px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 168, 75, 0.2));
    transition: transform 0.3s ease;
}

.service-icon img:hover {
    transform: scale(1.1) rotate(-2deg);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.service-card p {
    color: #a89888;
    font-size: 0.95rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.home-testimonials {
    background: #0a0808;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s;
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 15px 50px rgba(212, 168, 75, 0.08);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: #c8bdb0;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--gold-light);
}

.author-role {
    font-size: 0.8rem;
    color: #a89888;
}

.review-cta {
    text-align: center;
    margin-top: 40px;
}

.review-cta .btn-primary {
    display: inline-block;
}

/* ============================================================
   MAP
   ============================================================ */
.home-map {
    background: #0f0c0a;
}

.map-container {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s;
}

.map-container:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 60px rgba(212, 168, 75, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 350px;
}

.map-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ============================================================
   VISION
   ============================================================ */
.vision-section {
    background: #0f0c0a;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.vision-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 168, 75, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 168, 75, 0.12);
}

.vision-icon img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 16px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 168, 75, 0.2));
    transition: transform 0.3s ease;
}

.vision-icon img:hover {
    transform: scale(1.1) rotate(-2deg);
}

.vision-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gold-light);
}

.vision-card p {
    color: #a89888;
    font-size: 0.95rem;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission-section {
    background: #0a0808;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
    align-items: center;
}

.mission-text p {
    font-size: 1.15rem;
    color: #c8bdb0;
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-list li {
    font-size: 1rem;
    color: #a89888;
    padding-left: 28px;
    position: relative;
    transition: all 0.3s;
}

.mission-list li:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

.mission-list li::before {
    content: '◆';
    color: var(--gold);
    position: absolute;
    left: 0;
}

.mission-quote blockquote {
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: #e8e0d8;
    border-left: 4px solid var(--gold);
    padding-left: 30px;
    transition: all 0.3s;
}

.mission-quote blockquote:hover {
    border-left-color: var(--gold-light);
    padding-left: 40px;
}

.mission-quote blockquote strong {
    color: var(--gold-light);
}

/* ============================================================
   SMART CITY
   ============================================================ */
.smart-section {
    background: #0f0c0a;
}

.smart-sectors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.smart-sector-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.smart-sector-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: all 0.4s;
    transform: translateX(-50%);
}

.smart-sector-card:hover::after {
    width: 60%;
}

.smart-sector-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(212, 168, 75, 0.1);
}

.smart-sector-icon img {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 12px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 168, 75, 0.2));
    transition: transform 0.3s ease;
}

.smart-sector-icon img:hover {
    transform: scale(1.1) rotate(-2deg);
}

.smart-sector-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.smart-sector-card p {
    font-size: 0.9rem;
    color: #a89888;
    margin-bottom: 12px;
}

.smart-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(212, 168, 75, 0.1);
    padding: 3px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-gold);
}

/* Dashboard Feature */
.dashboard-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 50px;
    align-items: center;
}

.dashboard-content .dashboard-icon img {
    width: 88px;
    height: 88px;
    display: block;
    margin-bottom: 12px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 168, 75, 0.2));
}

.dashboard-content h3 {
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.dashboard-content p {
    color: #a89888;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.dashboard-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.dashboard-features span {
    background: rgba(212, 168, 75, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #c8bdb0;
    border: 1px solid var(--border-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    object-fit: contain;
    vertical-align: middle;
}

.dashboard-preview {
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    background: #0a0808;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 380px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-gold);
    font-size: 0.8rem;
    color: #a89888;
    font-weight: 600;
}

.mockup-header span:last-child {
    color: #2ed573;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

.mockup-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 10px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.mockup-item:hover {
    border-color: var(--border-gold);
}

.mockup-item span {
    display: block;
    font-size: 0.8rem;
    color: #a89888;
}

.mockup-item span:first-child {
    font-size: 1.4rem;
}

.mockup-item span:last-child {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 4px;
}

.mockup-item .status {
    color: #ff6b6b;
}

.mockup-item .status.on {
    color: #2ed573;
}

/* ============================================================
   GALLERY
   ============================================================ */
/* ============================================================
   GALLERY & CAROUSEL
   ============================================================ */
.gallery-section {
    background: #0a0808;
}

/* Original Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: all 0.4s;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 168, 75, 0.2);
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(10, 8, 8, 0.95));
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================================
   CAROUSEL - FULL IMAGE VISIBLE
   ============================================================ */
/* ============================================================
   CAROUSEL - AUTO ADJUST TO IMAGE
   ============================================================ */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    background: #0a0808;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

/* ✅ FIX: Remove fixed aspect ratio - auto adjust to image */
.carousel-slide {
    min-width: 100%;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0808;
}

/* ✅ Show full image without cropping */
.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 80vh; /* Limits height on very tall images */
    object-fit: contain;
    display: block;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(10, 8, 8, 0.85));
    color: #fff;
}

.carousel-overlay h3 {
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.carousel-overlay p {
    color: #c8bdb0;
    font-size: 0.95rem;
}

/* Carousel Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-gold);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(212, 168, 75, 0.3);
}

.carousel-dot:hover {
    background: var(--gold-light);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.carousel-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 8px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.carousel-btn:hover {
    background: var(--gold);
    color: #0a0808;
    transform: scale(1.05);
}

/* ✅ Responsive - Auto adjust */
@media (max-width: 768px) {
    .carousel-slide img {
        max-height: 60vh;
    }
    .carousel-overlay h3 {
        font-size: 1.1rem;
    }
    .carousel-overlay p {
        font-size: 0.8rem;
    }
    .carousel-overlay {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        max-height: 50vh;
    }
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}
/* ============================================================
   INTERNSHIPS
   ============================================================ */
.internships-section {
    background: #0f0c0a;
}

.internships-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.internship-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s;
    position: relative;
}

.internship-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(212, 168, 75, 0.08);
}

.internship-card.featured {
    border-color: var(--gold);
    background: rgba(212, 168, 75, 0.08);
}

.internship-card.featured::before {
    content: '★';
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--gold);
    font-size: 1.2rem;
}

.intern-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    background: var(--card-bg);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid var(--border-gold);
}

.internship-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.internship-card p {
    color: #a89888;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.internship-card ul {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.internship-card ul li {
    font-size: 0.8rem;
    color: #c8bdb0;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-gold);
    transition: all 0.3s;
}

.internship-card ul li:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn-apply {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-apply:hover {
    color: var(--gold-light);
    transform: translateX(6px) scale(1.05);
}

/* Application Form Wrapper */
.application-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
}

.application-form-wrapper .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.application-form-wrapper .contact-form input,
.application-form-wrapper .contact-form select,
.application-form-wrapper .contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 14px 18px;
    color: #e8e0d8;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.application-form-wrapper .contact-form input:focus,
.application-form-wrapper .contact-form select:focus,
.application-form-wrapper .contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 75, 0.05);
}

.application-form-wrapper .contact-form select option {
    background: #0a0808;
    color: #e8e0d8;
}

.application-form-wrapper .contact-form textarea {
    resize: vertical;
}

/* ============================================================
   CERTIFICATE VERIFICATION
   ============================================================ */
.certificate-section {
    background: #0f0c0a;
}

.certificate-verification {
    max-width: 700px;
    margin: 0 auto;
}

.cert-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cert-input-group input {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 14px 18px;
    color: #e8e0d8;
    font-size: 1rem;
    transition: all 0.3s;
}

.cert-input-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 75, 0.05);
}

.cert-input-group .btn-primary {
    padding: 14px 30px;
    white-space: nowrap;
}

.cert-result-card {
    background: var(--card-bg);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    animation: fadePage 0.5s ease forwards;
}

.cert-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cert-badge-valid {
    display: inline-block;
    background: rgba(46, 213, 115, 0.15);
    color: #2ed573;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(46, 213, 115, 0.3);
    margin-top: 10px;
}

.cert-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.cert-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
}

.cert-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.cert-info-card img.cert-icon {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 10px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 168, 75, 0.2));
}

.cert-info-card h4 {
    color: var(--gold-light);
    margin-bottom: 6px;
}

.cert-info-card p {
    color: #a89888;
    font-size: 0.9rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
    background: #0a0808;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 14px 18px;
    color: #e8e0d8;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 75, 0.05);
    transform: scale(1.01);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6a5f52;
}

.contact-form select option {
    background: #0a0808;
    color: #e8e0d8;
}

.contact-form textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateX(5px);
    box-shadow: 0 5px 30px rgba(212, 168, 75, 0.05);
}

.contact-card h3 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
    color: #c8bdb0;
    line-height: 1.7;
}

.contact-card a:hover {
    color: var(--gold-light);
}

/* Social Icons in Contact */
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 168, 75, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    color: #0a0808;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 168, 75, 0.3);
    border-color: var(--gold);
}
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #060404;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-logo {
    height: 36px;
    width: auto;
    border-radius: 4px;
}

.footer-blur {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
}

.footer-edutech {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gold-light);
    background: var(--card-bg);
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
}

.footer-brand p {
    color: #6a5f52;
    margin-top: 6px;
    font-size: 0.85rem;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a89888;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-gold);
    padding-top: 24px;
    text-align: center;
    color: #6a5f52;
    font-size: 0.8rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .smart-sectors {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-content {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-feature {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .cert-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .section h2 {
        font-size: 2.2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 8, 8, 0.98);
        padding: 24px;
        gap: 14px;
        border-bottom: 1px solid var(--border-gold);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.6rem;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .hero-stats {
        gap: 30px;
    }
    .hero-stats div span {
        font-size: 1.4rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }
    .smart-sectors {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .internships-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cert-info-grid {
        grid-template-columns: 1fr;
    }

    .section h2 {
        font-size: 1.8rem;
    }
    .mission-quote blockquote {
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .map-container iframe {
        height: 250px;
    }

    .dashboard-feature {
        padding: 20px;
    }
    
    .dashboard-mockup {
        max-width: 100%;
    }
    
    .cert-input-group {
        flex-direction: column;
    }
    
    .cert-input-group .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .cert-result-card {
        padding: 24px;
    }
    
    .application-form-wrapper {
        padding: 24px;
    }

    .service-icon img {
        width: 56px;
        height: 56px;
    }
    .vision-icon img {
        width: 64px;
        height: 64px;
    }
    .smart-sector-icon img {
        width: 52px;
        height: 52px;
    }
    .dashboard-content .dashboard-icon img {
        width: 72px;
        height: 72px;
    }
    .cert-info-card img.cert-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    .section {
        padding: 50px 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 0.9rem;
        padding: 12px 14px;
    }
    .logo-text {
        font-size: 1rem;
    }
    .logo-edutech {
        font-size: 0.55rem;
    }
    .logo-img {
        height: 32px;
    }
    .map-container iframe {
        height: 200px;
    }
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    .map-actions .btn-primary,
    .map-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .mockup-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-icon img {
        width: 48px;
        height: 48px;
    }
    .vision-icon img {
        width: 56px;
        height: 56px;
    }
    .smart-sector-icon img {
        width: 44px;
        height: 44px;
    }
    .dashboard-content .dashboard-icon img {
        width: 64px;
        height: 64px;
    }
    .cert-info-card img.cert-icon {
        width: 40px;
        height: 40px;
    }
    .feature-icon {
        width: 20px;
        height: 20px;
    }
}