/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #001428;
    color: #e9f4ff;
    overflow-x: hidden;
}

:root {
    --blue-1: #001a36;
    --blue-2: #003060;
    --blue-3: #004e92;
    --cyan-glow: #3cf2ff;
    --neon-soft: #9af9ff;
    --card-bg: rgba(0, 22, 40, 0.75);
    --border-glow: rgba(60, 242, 255, 0.35);
    --max-width: 1120px;
}

/* ================= NAVBAR ================= */
.navbar {
    width: 100%;
    padding: 12px 0;
    position: absolute;
    top: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(60, 242, 255, 0.15);
}

.nav-container {
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

/* LOGO */
.logo-img {
    width: 55px;
}

/* DESKTOP MENU */
.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
}

.nav-links li a {
    color: #d7eaff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.25s;
}

.nav-links li a:hover {
    color: var(--cyan-glow);
}

/* PORTAL BUTTON (DESKTOP ONLY) */
.portal-btn {
    background: linear-gradient(135deg, #004e92, #0077c7);
    padding: 10px 18px;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.portal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(60, 242, 255, 0.4);
}

/* BURGER BUTTON */
.menu-toggle {
    display: none;
    font-size: 32px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 2000;
}

/* ================= MOBILE MENU ================= */
@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    /* Beautiful Glass Panel */
    .nav-links {
        position: absolute;
        top: 75px;
        right: 20px;

        width: 240px;
        padding: 22px;

        display: none;
        flex-direction: column;
        gap: 16px;

        background: rgba(0, 20, 40, 0.75);
        backdrop-filter: blur(14px);

        /* Premium look */
        border: 1px solid rgba(60, 242, 255, 0.18);
        border-radius: 14px;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35),
            0 0 25px rgba(60, 242, 255, 0.25);
        animation: fadeSlide 0.25s ease forwards;
        transform-origin: top right;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        font-size: 1rem;
        padding: 8px 0;
    }
}

/* Animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---------- DESKTOP DROPDOWN ---------- */
.dropdown {
    position: relative;
}

.dropdown-link {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    background: rgba(0, 20, 40, 0.95);
    backdrop-filter: blur(12px);

    width: 250px;
    padding: 10px 0;
    list-style: none;

    border: 1px solid rgba(60, 242, 255, 0.18);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

    display: none;
    /* HIDE by default */
    z-index: 2000;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #d7eaff;
    text-decoration: none;
    font-size: 0.88rem;
    transition: 0.25s;
}

.dropdown-menu li a:hover {
    color: var(--cyan-glow);
    background: rgba(60, 242, 255, 0.08);
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-menu {
    display: block !important;
}

@media (max-width: 900px) {

    .dropdown-menu {
        position: static;
        width: 100%;
        background: none;
        border: none;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

/* ================= HERO SECTION ================= */
#hero {
    width: 100%;
    height: 100vh;
    background-image: url("../hero/hero1.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 20, 40, 0.75),
            rgba(0, 10, 20, 0.85));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 520px;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-title span {
    background: linear-gradient(120deg, var(--cyan-glow), var(--neon-soft));
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 18px rgba(60, 242, 255, 0.4);
}

.hero-subtitle {
    margin: 16px 0 26px;
    font-size: 1rem;
    color: #c5d9ff;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #0063d8, #0088ff);
    padding: 12px 28px;
    border-radius: 999px;
    border: none;

    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;

    box-shadow: 0 0 10px rgba(0, 136, 255, 0.5);
    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.04);
    background: linear-gradient(135deg, #0088ff, #00c6ff);
    box-shadow:
        0 0 18px rgba(0, 190, 255, 0.7),
        0 0 36px rgba(0, 190, 255, 0.4);
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #c0d8ff;
    opacity: 0.45;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    opacity: 1;
    background: var(--cyan-glow);
}

/* --- SMOOTHER SLIDE TRANSITION (REPLACE OLD BLOCK) --- */
#hero {
    transition: transform 1.4s ease, filter 1.4s ease;
}

#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    z-index: 0;
    transition: opacity 1.2s ease-in-out;
}

#hero.fade {
    transform: scale(1.02);
    filter: brightness(0.82);
}

#hero.fade::after {
    opacity: 1;
}


/* ================= ABOUT ================= */
section {
    padding: 80px 20px;
}

.container {
    max-width: var(--max-width);
    margin: auto;
}

.section-title {
    font-size: 2.2rem;
    color: var(--neon-soft);
    text-transform: uppercase;
}

.section-subtitle {
    max-width: 650px;
    margin-top: 10px;
    color: #aac9ff;
    line-height: 1.7;
}

/* ===================== STATS SECTION ===================== */
#stats {
    padding: 80px 20px;
    background: #00254a;
}

.stats-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
}

.stat-card {
    background: linear-gradient(135deg, #dfe5ee, #cfd8e2);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0073d8;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #004a82;
}

/* ===================== PROMO VIDEO SECTION ===================== */
#promo-video {
    padding: 80px 20px;
    background: #001428;
    margin-top: 70px;

    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}
#promo-video.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Layout Container --- */
.promo-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    flex-wrap: nowrap;
}

/* -----------------------------------
   LEFT — VIDEO BOX
----------------------------------- */
.video-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;

    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(60, 242, 255, 0.22);
    box-shadow: 0 0 30px rgba(0, 180, 255, 0.25);

    transition: 0.35s ease;
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(60, 242, 255, 0.5);
    border-color: rgba(60, 242, 255, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* -----------------------------------
   RIGHT — TEXT BLOCK
----------------------------------- */
.promo-text-block {
    flex: 1;
    color: #d7eaff;
    text-align: left;
}

.promo-title {
    font-size: 2.4rem;
    color: var(--neon-soft);
    margin-bottom: 12px;
}

.promo-subtitle {
    color: #b4d8ff;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* -----------------------------------
   BUTTON
----------------------------------- */
.promo-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 12px 30px;

    background: linear-gradient(135deg, #0077c7, #00b7ff);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;

    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.35);
    transition: 0.3s ease;
}
.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 28px rgba(0, 220, 255, 0.6);
}

/* ======================================================
   RESPONSIVE FIXES (MOBILE + TABLET)
   These fix all issues you showed.
====================================================== */

/* --- max 1000px: Stack video + text properly --- */
@media (max-width: 1000px) {
    .promo-container {
        flex-direction: column;
        gap: 32px;
        text-align: left;
    }

    .promo-text-block {
        width: 100%;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .video-wrapper {
        margin: 0;
        width: 100%;
        transform: none !important;
        box-shadow: 0 0 25px rgba(0, 180, 255, 0.25);
        border-color: rgba(60, 242, 255, 0.25);
    }

    .video-wrapper:hover {
        transform: none !important;
    }

    #promo-video {
        padding: 60px 20px;
    }
}

/* --- Small Mobile (max 600px) --- */
@media (max-width: 600px) {
    .promo-title {
        font-size: 1.8rem;
    }

    .promo-subtitle {
        font-size: 0.95rem;
    }

    .promo-btn {
        padding: 12px 26px;
        font-size: 0.95rem;
    }
}

/* ================= SOCIETIES ================= */
.society-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.society-card {
    display: block;
    /* FULL CARD CLICKABLE */
    background: var(--card-bg);
    border-radius: 22px;
    padding: 22px;
    border: 1px solid var(--border-glow);
    transition: 0.35s;
    backdrop-filter: blur(10px);
    color: inherit !important;
    /* FIX LINK COLOR */
    text-decoration: none !important;
    /* REMOVE UNDERLINE */
    cursor: pointer;
}

.society-card * {
    color: inherit !important;
    /* TEXT MATCHES DESIGN */
    text-decoration: none !important;
}

.society-card:visited,
.society-card:visited * {
    color: inherit !important;
    /* NO PURPLE VISITED COLOR */
}

.society-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyan-glow);
    box-shadow: 0 0 22px rgba(60, 242, 255, 0.4);
}

.society-card h3 {
    color: var(--neon-soft);
    margin-bottom: 8px;
}

.society-card p {
    color: #19ffff !important;
}

.society-card[href*="wie"] p {
    color: #19ffff !important;
}

.society-card[href*="ras"] p {
    color: #19ffff !important;
}

.society-card[href*="pes"] p {
    color: #19ffff !important;
}

.society-card[href*="sps"] p {
    color: #19ffff !important;
}

.society-card[href*="embs"] p {
    color: #19ffff !important;
}

.society-card[href*="photonics"] p {
    color: #19ffff !important;
}

.society-card[href*="aps"] p {
    color: #19ffff !important;
}

/* ================= FOOTER ================= */
footer {
    background: rgba(0, 0, 0, 0.15);
    /* transparent glass */
    backdrop-filter: blur(14px);
    /* frosted-glass effect */
    -webkit-backdrop-filter: blur(14px);
    padding: 25px;
    margin-top: 60px;
    border-top: 1px solid rgba(60, 242, 255, 0.20);
}

/* Footer Layout */
.footer-inner {
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #b8d9f5;
}

/* Footer Links */
.footer-links a {
    color: var(--neon-soft);
    margin-left: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--cyan-glow);
    text-shadow: 0 0 10px var(--cyan-glow);
}

/* Particle background for stats section */
#stats {
    position: relative;
    overflow: hidden;
}

#stats-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* behind everything */
}

#stats .stats-container {
    position: relative;
    z-index: 2;
    /* above particles */
}

/* ===================== MEGA COMPETITIONS ===================== */
#competitions {
    padding: 100px 20px;
    background: #021d3a;
    position: relative;
    overflow: hidden;
}

#competitions .section-title {
    text-align: center;
    margin-bottom: 12px;
}

#competitions .section-subtitle {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #c5d9ff;
}

.competition-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 32px;
}

.competition-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 180, 255, 0.25);
    box-shadow: 0 0 5px rgba(0, 150, 255, 0.15);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.competition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.6);
}

.competition-img img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}

.competition-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e3ecff;
    margin-bottom: 10px;
}

.competition-text {
    color: #c0d6f9;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: justify;
}

.competition-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0073d8, #00aaff);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.competition-btn:hover {
    background: linear-gradient(135deg, #00aaff, #00ddff);
    box-shadow: 0 0 20px rgba(0, 220, 255, 0.5);
    transform: translateY(-2px);
}

/* ===================== CAROUSEL ===================== */
#events {
    padding: 80px 20px;
    text-align: center;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    transition: transform 0.35s linear;
}

/* Slides */
.carousel-slide {
    flex: 0 0 33.33%;
    /* 3 slides on desktop */
    padding: 15px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .carousel-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 600px) {
    .carousel-slide {
        flex: 0 0 100%;
    }
}

/* Event Card */
.event-card {
    background: rgba(255, 255, 255, 0.07);
    padding: 22px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 35px rgba(0, 234, 255, 0.2);
    text-align: center;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.6);
}

.event-img {
    width: 100%;
    height: 350px;
    border-radius: 14px;
    object-fit: cover;
}

/* Text */
.event-title {
    margin-top: 16px;
    font-size: 1.2rem;
    font-weight: 600;
}

.event-date {
    color: #9ff9ff;
    margin-bottom: 10px;
}

.event-desc {
    color: #d5e5ff;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* Button */
.event-btn {
    margin-top: auto;
    padding: 10px 22px;
    background: linear-gradient(135deg, #0080ff, #00c3ff);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s ease;
}

.event-btn:hover {
    filter: brightness(1.15);
    transform: scaleY(1.2);
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #a8c7ff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    opacity: 1;
    background: #00e0ff;
}
/* ===================== CORE VALUES SECTION ===================== */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.value-card {
    background: rgba(0, 48, 96, 0.6);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--cyan-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(60, 242, 255, 0.2);
}

.value-card h4 {
    color: var(--cyan-glow);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card h4 i {
    margin-right: 10px;
}

.value-card p {
    color: #d7eaff;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================== EXECUTIVE COMMITTEE / LIST SECTION ===================== */
.exec-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.exec-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(60, 242, 255, 0.2);
    align-items: start;
}

.exec-position {
    color: var(--cyan-glow);
    font-weight: 600;
    font-size: 0.95rem;
}

.exec-details {
    color: #d7eaff;
    line-height: 1.6;
}

.exec-details span {
    color: rgba(212, 234, 255, 0.7);
    font-size: 0.9rem;
}

/* ===================== SOCIETY CARDS WITH IMAGE OVERLAY ===================== */
.society-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.society-card-link {
    text-decoration: none;
    color: inherit;
}

.society-card-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(60, 242, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.society-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(60, 242, 255, 0.3);
}

.society-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.society-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 13, 26, 0.95), transparent);
    padding: 30px 20px 20px;
}

.society-card-title {
    color: var(--cyan-glow);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.society-card-subtitle {
    color: rgba(212, 234, 255, 0.8);
    font-size: 0.85rem;
    margin: 5px 0 0;
}

/* ===================== EXECUTIVE COMMITTEE CARDS ===================== */
.teachers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 50px auto 30px;
}

.teachers.single {
    grid-template-columns: 1fr;
    max-width: 280px;
}

.teachers .committee-card {
    width: 100%;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.committee-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(60, 242, 255, 0.3);
    transition: 0.3s;
    text-align: center;
}

.committee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(60, 242, 255, 0.3);
}

.committee-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid var(--cyan-glow);
    background: rgba(60, 242, 255, 0.1);
}

.committee-name {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.committee-role {
    color: var(--cyan-glow);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.committee-dept {
    color: rgba(212, 234, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===================== PROFESSIONAL FOOTER ===================== */
#contact {
    background: linear-gradient(135deg, #000d1a 0%, #001428 100%);
    padding: 60px 0 0;
    border-top: 2px solid rgba(60, 242, 255, 0.2);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(60, 242, 255, 0.15);
}

.footer-section {
    color: #d7eaff;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-title {
    color: var(--cyan-glow);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-desc {
    line-height: 1.7;
    color: rgba(215, 234, 255, 0.8);
    font-size: 0.9rem;
}

.footer-heading {
    color: var(--cyan-glow);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: rgba(215, 234, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-list li a:hover {
    color: var(--cyan-glow);
    padding-left: 5px;
}

.footer-list li a i {
    font-size: 0.7rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(215, 234, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--cyan-glow);
    font-size: 1rem;
    margin-top: 3px;
    min-width: 18px;
}

.footer-contact li a {
    color: rgba(215, 234, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--cyan-glow);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(60, 242, 255, 0.1);
    border: 1px solid rgba(60, 242, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-glow);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--cyan-glow);
    color: #000d1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(60, 242, 255, 0.4);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: rgba(215, 234, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(215, 234, 255, 0.5);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
