/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
@font-face {
  font-family: production;
  src: url("./assets/fonts/production.ttf");
}
body {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c, #0a0a0a);
    color: white;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;

}

/* Smooth Scrolling */
html {
    overflow-x: hidden;

    scroll-behavior: smooth;
}
/* Header Navigation */
.header {
    width: 95%;
    max-width: 1200px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    gap: 1rem;

    box-shadow: 0px 0px px 1px #e67e22;
}

.ieee_offl{
  color: #f5eded;
  font-family: "production";
  margin-bottom: 1.7rem;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;

}
.ieee_offl span{
    font-family: "Agency FB";
  font-weight: 700;
  font-size: 2.2rem;
}

.date-card {
    background: white;
    border: 1px solid #fff;
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    width: 100%;
    max-width: 320px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.date-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.month {
    font-size: clamp(1.125rem, 10vw, 1.25rem);
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.month::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    border-radius: 1px;
}

.dates {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 600;
    color: #1f2937;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background: #0f172a;
    }
    
    .date-card {
        background: #313131;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    }
    
    .date-card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    }
    
    .month {
        color: #94a3b8;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .month::after {
        background: #fff;
    }
    
    .dates {
        color: #f1f5f9;
    }
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .date-card {
        margin: 0 1rem;
    }
}
/* Structure for brand center, nav center, register right */
.header-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.right-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.left-mobile {
    display: none;
}

.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 1rem;
    background: none;
    border: 1px solid #ffa631;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    color: white;
    cursor: pointer;
}
.ham-nm{
    display: none;
}
/* Mobile Dropdown Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95); /* Ensure alpha < 1 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    position: absolute;
    top: 110%;
    right: 0;
    width: 50%;
    padding: 1rem 2rem;
    animation: slideDown 0.3s ease forwards;
    z-index: 1;
    border: 1px solid #fff;
    border-radius: 10px;
    
}

.mobile-menu.open {
    display: flex;
}

.nav-links-mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.nav-links-mobile a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem;
}

.brand-mobile {
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
    display: flex;
}

/* Keyframe */
@keyframes slideDown {
    0% {
        transform: translateY(-20%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b6b;
}

.cta-buttons {
    display: flex;
    align-items: center;
}

.cta-btn {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    padding: 5px 18px;
    border-radius: 7px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow:
        inset -2px -2px 4px rgba(255, 255, 255, 0.3),
        inset 2px 2px 4px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(243, 156, 18, 0.4);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        inset -1px -1px 2px rgba(255, 255, 255, 0.4),
        inset 1px 1px 2px rgba(0, 0, 0, 0.25),
        0 6px 12px rgba(243, 156, 18, 0.5);
}

.cta-btn:active {
    transform: translateY(2px);
    box-shadow:
        inset 2px 2px 4px rgba(0, 0, 0, 0.3),
        inset -2px -2px 4px rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(243, 156, 18, 0.2);
}

/* Main Content */
.main-content {
    padding: 7rem 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

#welcome-logo,
#mainlogo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 1.5rem;
    margin-top:1.5rem;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
    text-align: center;
    animation: floatUpDown 1s ease-in-out infinite;
}

.stat-item:hover {

    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.9s; }

.stat-label {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Event Grid */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.event-card:hover{
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
}

.event-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
}

.prize-highlight {
    background: linear-gradient(45deg, #f9ca24, #f0932b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Footer */
.footer-map {
    margin: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 2rem 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .cta-buttons {
        width: 100%;
        
    }

    .main-content {
        padding: 6rem 1rem 2rem;
    }

    .cta-btn {
       
        max-width: 300px;
        text-align: center;
    }

    .event-card {
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        flex-direction: row;
        gap: 10px;
        padding: 10px;
    }

    .logo {
        height: 28px;
    }

    .stat-item {
        padding: 1rem;
    }

    .event-card h3 {
        font-size: 1.3rem;
    }

    .event-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 880px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-flex !important;
    }

    .left-mobile {
        display: inline-flex;
    }

    .header {
        flex-direction: row;
        align-items: center;
    }

    .header-main {
        display: none;
    }

    .right-controls {
        margin-left: auto;
    }

    .hamburger {
        display: block;
    }
    .ham-nm{
        display: block;
    }

    .cta-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width:1020px){
    .brand{
        display: none !important;
    }
}




/* Explore Events Section - Blue & Orange Theme */
.workscont{
    width: 100%;
    height: max(40rem,40vh);
    background: #000 ;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: space-evenly;
    padding: 2rem;
    position: relative;
}



.titl{
    margin: 1.5rem;
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    align-self: center;
    background: linear-gradient(135deg, #315aff 0%, #ffffff 50%, #e67e22 100%);
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    z-index: 1;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(49, 90, 255, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(230, 126, 34, 0.6));
    }
}

.workscont::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 50rem;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cardd {
    position: absolute;
    width: 350px;
    height: 450px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    left: 50%;
    top: 50%;
    transform-origin: center center;
}

.cardd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cardd.active {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.1);
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.cardd.active::before {
    opacity: 1;
}

.cardd.prev {
    transform: translateX(-50%) translateY(-50%) translateZ(-200px) rotateY(35deg) scale(0.8);
    opacity: 0.7;
    left: 25%;
}

.cardd.next {
    transform: translateX(-50%) translateY(-50%) translateZ(-200px) rotateY(-35deg) scale(0.8);
    opacity: 0.7;
    left: 75%;
}

.cardd.hidden {
    transform: translateX(-50%) translateY(-50%) translateZ(-400px) scale(0.6);
    opacity: 0;
}

.cardd img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.8) contrast(1.1);
}

.cardd.active img {
    filter: brightness(1) contrast(1.2) saturate(1.1);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.card-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.card-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-content a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(49, 90, 255, 0.9) 0%, rgba(230, 126, 34, 0.9) 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content a:hover {
    background: linear-gradient(135deg, rgba(49, 90, 255, 1) 0%, rgba(230, 126, 34, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 90, 255, 0.4);
}

.navigation {
    gap: 1rem;
    align-self: center;
    padding: 2rem;
    display: flex;
    z-index: 20;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: rgba(49, 90, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(49, 90, 255, 0.3);
}

.dots {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #315aff, #e67e22);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(49, 90, 255, 0.5);
}

/* Card specific colors - alternating blue and orange */
.quiz { border-color: rgba(49, 90, 255, 0.3); }
.bot { border-color: rgba(230, 126, 34, 0.3); }
.coding { border-color: rgba(49, 90, 255, 0.3); }
.design { border-color: rgba(230, 126, 34, 0.3); }
.gaming { border-color: rgba(49, 90, 255, 0.3); }
.music { border-color: rgba(230, 126, 34, 0.3); }
.logic { border-color: rgba(49, 90, 255, 0.3); }
.ai { border-color: rgba(230, 126, 34, 0.3); }

.quiz.active { box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 100px rgba(49, 90, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.bot.active { box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 100px rgba(230, 126, 34, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.coding.active { box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 100px rgba(49, 90, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.design.active { box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 100px rgba(230, 126, 34, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.gaming.active { box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 100px rgba(49, 90, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.music.active { box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 100px rgba(230, 126, 34, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.logic.active { box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 100px rgba(49, 90, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.ai.active { box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 100px rgba(230, 126, 34, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }

/* Responsive design */
@media (max-width: 768px) {
    .titl {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .carousel-container {
        height: 500px;
    }

    .cardd {
        width: 280px;
        height: 360px;
    }

    .card-content {
        padding: 1.5rem;
    }


    .card-content h2 {
        font-size: 1.5rem;
    }


    .nav-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .cardd {
        width: 250px;
        height: 320px;
    }

    .cardd.prev, .cardd.next {
        display: none;
    }
}

.containr{
    width: 100%;
    height: calc(min(50vh,50rem));
    background-color: #000000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    position: relative;
    
}

.cards-wrapper {
    display: flex;
    gap: 4rem;
    will-change: transform;
}

.card{
    width: 20rem;
    height: 100%;
    background:linear-gradient(to bottom, #becbff, 
    #315aff);
    border-radius: 1rem;
    aspect-ratio: 1;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    cursor: pointer;
    border: 0.1px solid rgb(255, 255, 255);
    box-shadow: 0 0 30px rgba(49, 90, 255, 0.65);
    will-change: transform;
}

.img{
    width: 100%;
    height: 70%;
    background-color: #000000;
    border-radius: 1rem 1rem 0 0;
}

.nm {
    color: #fff;
    font-size: clamp(0.75rem , 1.1rem ,1.2rem );
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    margin-top: 1rem;
    align-self: center;
    text-align: center;
}

.ff {
    font-family: "Dela Gothic One", sans-serif;
}

/* Enhanced Prize Section with Better Mobile Responsiveness */
.prize{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 2rem;
    min-height: max(70vh,70vw);
    background: linear-gradient(135deg, #becbff 0%, #315aff 100%);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .prize {
        min-height: 100vh;
        padding: 2rem;
    }
}

.prize::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.event-tag {
    font-weight: 600;
    font-size: clamp(0.5rem, 1.5vw + 0.3rem, 1.2rem);
    color: #000000;
    margin-bottom: clamp(0.3rem, 2vh, 1.5rem);
    letter-spacing: clamp(0.05em, 0.5vw, 0.15em);
    opacity: 0;
    transform: translateY(-20px);
}

.prize-title {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: clamp(1.2rem, 4vw + 1rem, 5rem);
    font-weight: 700;
    text-shadow: clamp(1px, 0.5vw, 3px) clamp(2px, 1vw, 5px) clamp(3px, 1.5vw, 8px) rgba(0,0,0,0.3);
    color: #000;
    margin-bottom: clamp(0.2rem, 1vh, 1rem);
    opacity: 0;
    transform: translateY(30px);
    line-height: clamp(0.8, 1, 1.1);
}

.prize-amount {
    font-family: 'Dela Gothic One', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 6vw + 1.5rem, 7rem);
    color: #fff;
    text-shadow: 0px clamp(2px, 1vw, 6px) clamp(4px, 2vw, 12px) rgba(0,0,0,0.5);
    letter-spacing: clamp(0.02em, 0.5vw, 0.08em);
    position: relative;
    line-height: clamp(0.8, 1, 1.1);
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 768px) {
    .prize {
        min-height: 50vh;
        padding: 1rem;
    }
    
    .event-tag {
        margin-bottom: 0.5rem;
        font-size: 0.7rem;
    }
    
    .prize-title {
        margin-bottom: 0.5rem;
        line-height: 0.9;
    }
    
    .prize-amount {
        line-height: 0.9;
    }
}

@media (max-width: 480px) {
    .prize {
        min-height: 50vh;
        padding: 1rem 0.5rem;
    }
    
    .event-tag {
        margin-bottom: 0.3rem;
        font-size: 0.65rem;
    }
    
    .prize-title {
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 360px) {
    .prize {
        min-height: 40vh;
        padding: 0.8rem 0.5rem;
    }
    
    .event-tag {
        margin-bottom: 0.2rem;
        font-size: 0.6rem;
    }
    
    .prize-title {
        margin-bottom: 0.2rem;
    }
}

.prize-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Confetti/Rect Shower Elements */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti-rect {
    position: absolute;
    background: linear-gradient(45deg, #fff, #becbff, #315aff);
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
}

.abt-text{
    color: #fff;
    font-size: clamp(0.25 rem, .5rem , .75rem );
    font-optical-sizing: auto;
}

.ieee-about-section {
    background: linear-gradient(90deg, #000000 0%, #1a1a2e 100%);
    padding: 80px 40px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ieee-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ieee-container {
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.ieee-image-section {
    flex: 0 0 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ieee-image-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.ieee-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 123, 255, 0.2);
}

.ieee-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #007bff, #00d4ff, #007bff);
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ieee-image-wrapper:hover::before {
    opacity: 1;
}

.ieee-image {
    height: 500px;
    width: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.ieee-image:hover {
    transform: scale(1.02);
}

.ieee-content-section {
    flex: 1;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ieee-about-label {
    font-size: clamp(12px, 3vw, 14px);
    color: #64b5f6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.ieee-about-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
}

.ieee-title {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ieee-description {
    font-size: min(3vh,3vw);
    font-weight: 500;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
    position: relative;
}

.ieee-highlight {
    color: #64b5f6;
    font-weight: 600;
    position: relative;
}

.ieee-year {
    color: #00d4ff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.ieee-description::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    border-radius: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .ieee-about-section {
        padding: 60px 30px;
    }

    .ieee-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .ieee-image-section {
        flex: none;
    }

    .ieee-image {
        height: 400px;
        width: 400px;
    }
}

@media (max-width: 768px) {
    .ieee-about-section {
        padding: 40px 20px;
    }

    .ieee-container {
        gap: 30px;
    }

    .ieee-image {
        height: 320px;
        width: 320px;
    }

    .ieee-description {
        text-align: left;
        font-size: 25px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .ieee-about-section {
        padding: 30px 15px;
    }

    .ieee-image {
        height: 280px;
        width: 280px;
    }

    .ieee-description {
        font-size: 20px;
        line-height: 1.6;
    }

    .ieee-content-section {
        padding: 0 5px;
    }
}

@media (max-width: 360px) {
    .ieee-about-section {
        padding: 25px 10px;
    }

    .ieee-image {
        height: 250px;
        width: 250px;
    }

    .ieee-description {
        font-size: 20px;
        line-height: 1.6;
    }
}

.title {
    text-align: center;
    padding: 50px 20px;
    font-size: 2.8rem;
    background: linear-gradient(to bottom, #fff 0%, #E67E22 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
  }

  .departments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 40px;
    max-width: 1300px;
    margin: auto;
  }

  .flip-card {
    background-color: transparent;
    height: 340px;
    perspective: 1000px;
    animation: slideIn 1s ease both;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }

  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    backface-visibility: hidden;
    border: 2px solid #E67E22;
    overflow: hidden;
    box-sizing: border-box;
  }

  .flip-card-front {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }

  .flip-card-front h2 {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 10px;
    color: #fff;
    margin: 0;
    
  }

  .flip-card-back {
    background: #212121;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: #ccc;
  }

  .flip-card-back p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #E67E22;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
  }

  .btn:hover {
    background: #E67E22;
    color: #000;
  }

  @keyframes slideIn {
    from {
      transform: translateY(40px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Modal Styles */
  .modal, .overlay {
    display: none;
    position: fixed;
    z-index: 10;
  }

  .overlay {
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000000cc;
  }

  .modal {
    top: 50%; left: 50%;
    width: 90%; max-width: 400px;
    background: #001f2e;
    padding: 30px;
    border: 2px solid #E67E22;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 25px #E67E2299;
    border-radius: 10px;
  }

  .modal h3 {
    margin-bottom: 15px;
    color: #fff;
  }

  .modal input, .modal select {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #000;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
  }

  .modal .btn {
    width: 100%;
  }

/*888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888*/
/* --- FINAL RESPONSIVE SPONSOR SECTION --- */

/* This container holds all sponsor content */
.sponsers-section {
    width: 100%;
    padding: 40px 0; /* Add vertical padding */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Main heading for each sponsor tier */
.sponsers-head {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin: 40px 0 25px; /* Consistent vertical margin */
    color: #FFF;
}

/* Tier 1: Featured Card for the Title Sponsor */
.featured-sponsor-card {
    display: flex;
    flex-direction: column; /* Mobile-first: stack logo and text */
    text-align: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(40, 40, 40, 0.2));
    border: 1px solid rgba(230, 126, 34, 0.5);
    border-radius: 20px;
    width: 90%;
    max-width: 700px; /* Limit max width on large screens */
    margin: 0 auto; /* Center the card */
    padding: 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 0 25px rgba(230, 126, 34, 0.2);
    animation: pulse-glow 3s infinite alternate;
}

.featured-logo-container {
    width: 100%;
    border-bottom: 1px solid rgba(230, 126, 34, 0.3);
    padding-bottom: 1.5rem;
}

.featured-logo-container img {
    width: 120%;
    /* Responsive logo size: min 160px, preferred 40vw, max 260px */
    max-width: clamp(160px, 40vw, 300px);
}

.featured-sponsor-details h3 {
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.featured-sponsor-details p {
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
}

/* Tiers 2 & 3: Grid for Co-Sponsors and Associates */
.standard-sponsor-grid {
    display: grid;
    /* Responsive grid: columns are at least 150px wide */
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.standard-sponsor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

/* Logo size for CO-SPONSORS */
.standard-sponsor-grid:not(.associate-grid) .standard-sponsor-card img {
    max-width: 70%;
}

/* Logo size for ASSOCIATE SPONSORS (smaller) */
.associate-grid .standard-sponsor-card img {
    max-width: 55%; /* This makes associate logos smaller than co-sponsors */
}

/* Tier 4: Workshop Sponsor Slider */
.sponser-slider {
    overflow: hidden;
    padding: 3rem 0;
    margin-top: 40px;
}

/* --- DESKTOP ADJUSTMENTS (for screens wider than 768px) --- */
@media (min-width: 768px) {
    .sponsers-head {
        margin: 60px 0 30px; /* Larger margin for desktop */
    }

    /* Switch featured card to a row layout */
    .featured-sponsor-card {
        flex-direction: row;
        text-align: left;
        padding: 2rem;
        gap: 2rem;
    }

    .featured-logo-container {
        flex: 0 0 45%;
        border-bottom: none;
        border-right: 1px solid rgba(230, 126, 34, 0.3);
        padding-bottom: 0;
        padding-right: 2rem;
    }

    /* Allow larger grid cards on desktop */
    .standard-sponsor-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}
.spnsr{
    height: 100%;
    width: 100%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.sponsers-section {
    padding: 60px 20px;
  }

  .sponsers-head {
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    margin: 80px 0 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease forwards;
  }
    @keyframes pulse-glow {
  from {
    box-shadow: 0 0 25px rgba(230, 126, 34, 0.2);
  }
  to {
    box-shadow: 0 0 40px rgba(230, 126, 34, 0.4);
  }
}

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .sponser-slider {
    overflow: hidden;
    padding: 5rem;
    background: linear-gradient(90deg, #000 15%, #3e3e3e);
    margin-top: 4rem;
  }

  .logos {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
  }

  .logos-slide {
    display: flex;
  }

  .logos-slide img {
    height: clamp(70px, 5vw, 90px);
    margin: 0 30px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(50px);
  }

  .papers-section {
    width: 100%;
    height: max(40rem, 40vh);
    background: linear-gradient(270deg, rgb(0, 0, 0) 75%, #2a1400  );
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: space-evenly;
    padding: 2rem;
}

.paper-title {
    margin: 1.5rem;
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    align-self: center;
    text-align: justify;
    background: linear-gradient(0deg, rgb(255, 255, 255) 15%, #E67E22);
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text;
    background-clip: text;
}

.paper-container {
    width: 100%;
    height: calc(min(50vh, 50rem));
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    position: relative;
}

.presentation-wrapper {
    display: flex;
    gap: 4rem;
    will-change: transform;
}

.presentation-card {
    width: 20rem;
    height: 100%;
    border-radius: 1rem;
    aspect-ratio: 1;
    flex-shrink: 0;
    cursor: pointer;
    will-change: transform;
    perspective: 1000px;
    position: relative;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.presentation-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    border: 0.1px solid rgb(255, 255, 255);
    box-shadow: 0 0 30px rgba(230, 126, 34, 0.65);
}

.card-front {
    background: linear-gradient(to bottom, #F39C12, #E67E22);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-back {
    background: #141414;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.register-btn {
    background: linear-gradient(45deg, #F39C12, #E67E22);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
    background: linear-gradient(45deg, #E67E22, #D35400);
}

.register-btn:active {
    transform: translateY(-1px);
}

.paper-image {
    width: 100%;
    height: 70%;
    background-color: #000000;
    border-radius: 1rem 1rem 0 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23000"/><text x="50" y="50" text-anchor="middle" dy=".3em" fill="%23E67E22" font-size="8">📄</text></svg>');
    background-size: cover;
    background-position: center;
}

.paper-name {
    color: #fff;
    font-size: clamp(1rem, 1.5rem, 2rem);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-top: 1.5rem;
    text-align: center;
    padding: 0 1rem;
}

.paper-font {
    font-family: "Dela Gothic One", sans-serif;
}

.countdown-wrapper {
    margin: 1rem;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 10;
    perspective: 1000px;
}

.main-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: white;
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    letter-spacing: 2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.coming-soon {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: 8px;
    opacity: 0;
    color: #ff6600;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
}

.timer-container {
    display: flex;
    justify-content: space-evenly;
    gap: clamp(20px, 7vw, 40px);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.time-unit {
    position: relative;
    opacity: 0;
    margin: 0.75rem;

    transform: translateY(50px) rotateX(15deg);
}

.time-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    width: clamp(80px, 16vw, 120px);
    height: clamp(80px, 16vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.time-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 3s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.time-number {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.time-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(0.7rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.separator {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    align-self: center;
    margin: 0 8px;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.event-message {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ffd700, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Glowing orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

@media (max-width: 768px) {
    .timer-container {
        gap: 15px;
    }
    .separator {
        display: none;
    }
}

:root {
    --primary: #e67e22;
    --secondary: #38bdf8;
    --accent: #315aff;
    --grd: linear-gradient(45deg, #ffffff, #315fdf);
    --dark: #000b1f;
    --glass: rgba(230, 126, 34, 0.1);
    --glow: 0 0 20px rgba(230, 126, 34, 0.5);
  }

  canvas {
    position: fixed;
    background-color: #000;
    top: 0; left: 0;
    z-index: -1;
    pointer-events: none;
  }

  /* Floating elements */
  .floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }

  .shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
  }

  .shape:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
  .shape:nth-child(2) { top: 20%; right: 20%; animation-delay: -5s; }
  .shape:nth-child(3) { bottom: 30%; left: 30%; animation-delay: -10s; }
  .shape:nth-child(4) { bottom: 20%; right: 10%; animation-delay: -15s; }

  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
  }



  .content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
  }

  section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    overflow: hidden;
    animation: fadeInUp 0.8s ease forwards;

  }

  section:nth-child(2) { animation-delay: 0.2s; }
  section:nth-child(3) { animation-delay: 0.4s; }
  section:nth-child(4) { animation-delay: 0.6s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  h2 {
    font-family: 'Orbitron', monospace;
    margin: 1.5rem ;
  font-size: clamp(1.5rem , 7vw , 2.5rem);
  align-self: center;
  background: linear-gradient(180deg,rgb(255, 255, 255) 2%, #e67e22);

  -webkit-text-fill-color: transparent; 
  -webkit-background-clip: text;
  }

  h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
  }

  .faq-container {
    display: grid;
    gap: 20px;
    padding: 2.5rem;
  }

  .faq-item {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(56, 189, 248, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 126, 34, 0.3);
    padding: 25px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 38, 113, 0.1), transparent);
    transition: left 0.6s;
  }

  .faq-item:hover::before {
    left: 100%;
  }
  
  .faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
  }

  .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    padding-top: 0;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-top: 20px;
    color: #e0e0e0;
  }

  .team-group {
    margin-bottom: 50px;
    padding: 3.5rem;
  }

  .team-group h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .team-member {
    background: linear-gradient(135deg, rgba(49, 90, 255, 0.1), rgba(56, 189, 248, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
  }

  .team-member:hover::before {
    opacity: 1;
    top: -25%;
    left: -25%;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(56, 189, 248, 0.2);
    border-color: var(--secondary);
  }
  
  .team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    object-fit: cover;
  }

  .team-member:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
  }

  .team-member p {
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .team-member strong {
    color: var(--secondary);
    font-size: 1.1rem;
  }

  /* Contact Enhanced */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
  }
  

  .contact-card {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(49, 90, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 126, 34, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
  }

  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 162, 40, 0.482);
  }

  .contact-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.3rem;
  }

  .contact-card p {
    margin: 0;
    font-size: 1.1rem;
  }

  .contact-card strong {
    color: var(--primary);
  }
  .contact-card a {
  color: white;              /* make phone numbers white */
  text-decoration: none;     /* remove underline */
  font-size: 1.1rem;         /* match the paragraph text size */
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--accent);      /* optional: highlight with your accent color */
}


  /* Responsive */
  @media (max-width: 768px) {
    .logo {
      font-size: 2.5rem;
    }
    
    .navbar {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .team-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
    }
  }

