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

body{
    font-family:'Lato', sans-serif;
    background:#f7f9ff;
    color:#10182f;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.main-header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:linear-gradient(90deg,#042f7a,#0d6efd);
    box-shadow:0 5px 20px rgba(0,0,0,.18);
    backdrop-filter:blur(10px);
    transition:all 0.3s ease;
}

.main-header.scrolled{
    background:rgba(4,47,122,0.95);
    backdrop-filter:blur(15px);
    box-shadow:0 8px 30px rgba(0,0,0,.25);
}

.nav-wrapper{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    /* position:relative; */
}

.logo::after{
    content:'';
    position:absolute;
    bottom:-2px;
    left:0;
    width:0;
    height:2px;
    background:#ffb703;
    transition:width 0.4s ease;
}

.logo:hover::after{
    width:100%;
}

.logo img{
    width:60px;
    height:60px;
    object-fit:contain;
    background:#fff;
    padding:5px;
    border-radius:50%;
    border:2px solid #fff;
    box-shadow:0 4px 12px rgba(0,0,0,0.2);
}

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

.logo span{
    font-family:'Montserrat', sans-serif;
    font-size:28px;
    font-weight:900;
    color:#fff;
    letter-spacing:-0.5px;
}

.navbar{
    display:flex;
    align-items:center;
    gap:18px;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    transition:.3s;
    position:relative;
    padding:5px 0;
    /* font-size: medium; */
}

.navbar a::after{
    content:'';
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:2px;
    background:#ffb703;
    transition:width 0.3s ease;
}

.navbar a:hover::after{
    width:100%;
}

.navbar a:hover{
    color:#ffb703;
}

.menu-btn{
    display:none;
    border:none;
    background:none;
    color:#fff;
    font-size:26px;
    cursor:pointer;
    transition:transform 0.3s ease;
}

.menu-btn:hover{
    transform:rotate(90deg);
}

/* HERO */
.hero{
    min-height:100vh;
    padding:130px 20px 70px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    background:
        linear-gradient(rgba(0,20,55,.75),rgba(0,20,55,.75)),
        url("../images/banner.jpg");
    background-size:cover;
    background-position:center;
    color:white;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    top:-50%;
    right:-50%;
    width:200%;
    height:200%;
    background:radial-gradient(circle, rgba(13,110,253,0.1) 0%, transparent 70%);
    animation:rotateBg 30s linear infinite;
    pointer-events:none;
}

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

.hero-content{
    max-width:1000px;
    position:relative;
    z-index:2;
    animation:fadeInUp 1s ease;
}

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

.hero-label{
    display:inline-block;
    background:#ff9800;
    padding:10px 24px;
    border-radius:30px;
    font-weight:800;
    margin-bottom:22px;
    animation:glow 2s ease-in-out infinite;
}

@keyframes glow{
    0%,100%{box-shadow:0 0 20px rgba(255,152,0,0.3);}
    50%{box-shadow:0 0 40px rgba(255,152,0,0.6);}
}

.hero h1{
    font-family:'Montserrat', sans-serif;
    font-size:62px;
    font-weight:900;
    margin-bottom:15px;
    text-shadow:0 4px 20px rgba(0,0,0,0.3);
    background:linear-gradient(135deg,#fff 60%,#ffb703);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.hero h2{
    font-family:'Montserrat', sans-serif;
    font-size:28px;
    line-height:1.5;
    margin-bottom:25px;
    font-weight:300;
    text-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.conference-date{
    display:inline-block;
    background:white;
    color:#063b94;
    padding:14px 30px;
    border-radius:30px;
    font-weight:900;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    animation:float 3s ease-in-out infinite;
}

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

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:6px;
    margin:8px;
    text-decoration:none;
    font-weight:800;
    transition:.3s;
    position:relative;
    overflow:hidden;
    letter-spacing:0.5px;
}

.btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition:left 0.5s ease;
}

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

.btn-main{
    background:#0d6efd;
    color:white;
    box-shadow:0 8px 25px rgba(13,110,253,0.4);
}

.btn-main:hover{
    background:#0b5ed7;
    transform:translateY(-4px) scale(1.02);
    box-shadow:0 12px 35px rgba(13,110,253,0.5);
}

.btn-light{
    background:white;
    color:#073b91;
    box-shadow:0 8px 25px rgba(255,255,255,0.2);
}

.btn-light:hover{
    background:#f0f4ff;
    transform:translateY(-4px) scale(1.02);
    box-shadow:0 12px 35px rgba(255,255,255,0.3);
}

/* COMMON SECTION */
.section{
    width:92%;
    max-width:1200px;
    margin:90px auto;
    animation:fadeIn 0.8s ease;
}

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

.small-title{
    display:inline-block;
    background:#eaf1ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:20px;
    font-weight:900;
    margin-bottom:14px;
    position:relative;
    transition:all 0.3s ease;
}

.small-title:hover{
    transform:scale(1.05);
    box-shadow:0 5px 15px rgba(13,110,253,0.2);
}

.center{
    display:block;
    width:max-content;
    margin:0 auto 14px;
}

.section-heading{
    text-align:center;
    font-family: 'Times New Roman', Times, serif;
    font-size:38px;
    margin-bottom:35px;
    position:relative;
}

.section-heading::after{
    content:'';
    display:block;
    width:80px;
    height:4px;
    background:linear-gradient(90deg,#042f7a,#0d6efd);
    margin:15px auto 0;
    border-radius:2px;
}

/* ABOUT */
.about-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:center;
}

.about-text{
    background:white;
    padding:38px;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:all 0.4s ease;
    position:relative;
    overflow:hidden;
    
}

.about-text::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#042f7a,#0d6efd,#ffb703);
}

.about-text:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.about-text h2{
    font-family:'Comic Sans MS', sans-serif;
    font-size:34px;
    margin-bottom:18px;
    color:#042f7a;
}

.about-text p,
.conference-text,
.publication p{
    line-height:1.8;
    text-align:justify;
    margin-bottom:14px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.about-image img{
    width:100%;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
    transition:all 0.5s ease;
}

.about-image img:hover{
    transform:scale(1.02) rotate(-1deg);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/* CONFERENCE */
.conference-section{
    background:linear-gradient(135deg,#edf4ff 0%,#dce8ff 100%);
    padding:80px 20px;
    position:relative;
    overflow:hidden;
}

.conference-section::before{
    content:'';
    position:absolute;
    top:-50%;
    right:-30%;
    width:60%;
    height:100%;
    background:radial-gradient(circle, rgba(13,110,253,0.05) 0%, transparent 70%);
    pointer-events:none;
}

.conference-text{
    max-width:1000px;
    margin:auto;
    background:rgba(255,255,255,0.95);
    padding:35px;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.07);
    backdrop-filter:blur(10px);
    transition:all 0.3s ease;
    border:1px solid rgba(255,255,255,0.3);
}

.conference-text:hover{
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transform:translateY(-4px);
}

/* TOPICS */
.topics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.topics-grid div{
    background:white;
    padding:24px;
    text-align:center;
    border-radius:18px;
    color:#073b91;
    font-weight:900;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:all 0.4s ease;
    cursor:default;
    position:relative;
    overflow:hidden;
}

.topics-grid div::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#0d6efd,#042f7a);
    opacity:0;
    transition:opacity 0.4s ease;
}

.topics-grid div:hover{
    background:linear-gradient(135deg,#0d6efd,#042f7a);
    color:white;
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 20px 40px rgba(13,110,253,0.3);
}

.topics-grid div:hover::before{
    opacity:0.1;
}

/* DATES */
.dates-section{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:50px;
}

.dates-title h2{
    font-family:'Montserrat', sans-serif;
    font-size:42px;
    background:linear-gradient(135deg,#042f7a,#0d6efd);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.timeline{
    border-left:4px solid #0d6efd;
    padding-left:35px;
    position:relative;
}

.timeline::before{
    content:'';
    position:absolute;
    left:-8px;
    top:0;
    width:12px;
    height:12px;
    background:#0d6efd;
    border-radius:50%;
    box-shadow:0 0 20px rgba(13,110,253,0.3);
}

.timeline-item{
    position:relative;
    margin-bottom:35px;
    animation:slideIn 0.6s ease;
}

@keyframes slideIn{
    from{
        opacity:0;
        transform:translateX(30px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

.timeline-item:before{
    content:"";
    width:22px;
    height:22px;
    background:white;
    border:5px solid #0d6efd;
    border-radius:50%;
    position:absolute;
    left:-49px;
    top:3px;
    transition:all 0.3s ease;
}

.timeline-item:hover:before{
    background:#0d6efd;
    transform:scale(1.2);
}

.timeline-item span{
    color:#0d6efd;
    font-weight:900;
}

.timeline-item h3{
    font-size:24px;
    margin-top:8px;
    transition:color 0.3s ease;
}

.timeline-item:hover h3{
    color:#0d6efd;
}

/* TABLE */
.table-box{
    background:white;
    padding:32px;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:all 0.3s ease;
    overflow:hidden;
}

.table-box:hover{
    transform:translateY(-4px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

table{
    width:100%;
    border-collapse:collapse;
}

th{
    background:linear-gradient(90deg,#042f7a,#0d6efd);
    color:white;
    padding:18px;
    text-align:left;
    position:relative;
}

th::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,#ffb703,transparent);
}

td{
    padding:18px;
    border-bottom:1px solid #eee;
    transition:all 0.3s ease;
}

tr:nth-child(even){
    background:#f1f6ff;
}

tr:hover td{
    background:#e3edff;
    transform:scale(1.01);
}

/* PUBLICATION */
.publication{
    padding:80px 20px;
    background:linear-gradient(135deg,#042f7a,#0d6efd,#042f7a);
    background-size:200% 200%;
    color:white;
    text-align:center;
    position:relative;
    overflow:hidden;
    animation:gradientMove 5s ease infinite;
}

@keyframes gradientMove{
    0%,100%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
}

.publication::before{
    content:'';
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation:rotateBg 20s linear infinite;
    pointer-events:none;
}

.publication h2{
    font-family:'Montserrat', sans-serif;
    font-size:40px;
    margin-bottom:20px;
    position:relative;
    text-shadow:0 4px 20px rgba(0,0,0,0.2);
}

.publication p{
    max-width:900px;
    margin:0 auto 25px;
    text-align:center;
    position:relative;
    font-size:18px;
    line-height:1.8;
}

.publication .btn{
    position:relative;
    box-shadow:0 8px 30px rgba(255,255,255,0.15);
}

/* FOOTER */
.footer{
    background:#07152f;
    color:white;
    padding:60px 0 20px;
    position:relative;
}

.footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#042f7a,#0d6efd,#ffb703,#0d6efd,#042f7a);
    background-size:200% 100%;
    animation:gradientMove 3s ease infinite;
}

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

.footer-box h3{
    font-family:'Montserrat', sans-serif;
    color:#ffb703;
    margin-bottom:18px;
    position:relative;
    padding-bottom:10px;
}

.footer-box h3::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:40px;
    height:2px;
    background:#ffb703;
}

.footer-box p,
.footer-box a{
    color:#dbe7ff;
    line-height:1.8;
    font-size:14px;
    text-align: justify;
}

.footer-box a{
    display:block;
    text-decoration:none;
    margin-bottom:8px;
    transition:all 0.3s ease;
    position:relative;
    padding-left:0;
}

.footer-box a::before{
    content:'→';
    opacity:0;
    margin-right:0;
    transition:all 0.3s ease;
}

.footer-box a:hover{
    color:#ffb703;
    padding-left:20px;
}

.footer-box a:hover::before{
    opacity:1;
    margin-right:8px;
}

.social-links{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.social-links a{
    width:36px;
    height:36px;
    background:white;
    color:#073b91;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.4s ease;
    text-decoration:none;
}

.social-links a:hover{
    transform:translateY(-4px) rotate(8deg);
    background:#ffb703;
    color:#042f7a;
    box-shadow:0 8px 20px rgba(255,183,3,0.3);
}

.footer-bottom{
    width:92%;
    max-width:1200px;
    margin:35px auto 0;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    font-size:14px;
    opacity:0.8;
}

/* SCROLLBAR CUSTOMIZATION */
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f7f9ff;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,#042f7a,#0d6efd);
    border-radius:5px;
}

::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(180deg,#0d6efd,#042f7a);
}

/* SELECTION */
::selection{
    background:#0d6efd;
    color:white;
}

/* RESPONSIVE */
@media(max-width:992px){
    .navbar{
        position:absolute;
        top:78px;
        left:0;
        width:100%;
        display:none;
        flex-direction:column;
        background:#042f7a;
        padding:20px;
        box-shadow:0 20px 40px rgba(0,0,0,0.2);
    }

    .navbar.active{
        display:flex;
        animation:slideDown 0.3s ease;
    }

    @keyframes slideDown{
        from{
            opacity:0;
            transform:translateY(-10px);
        }
        to{
            opacity:1;
            transform:translateY(0);
        }
    }

    .menu-btn{
        display:block;
    }

    .about-section,
    .dates-section,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .topics-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero h1{
        font-size:42px;
    }

    .hero h2{
        font-size:22px;
    }

    .section-heading{
        font-size:32px;
    }

    .dates-title h2{
        font-size:32px;
    }
}

@media(max-width:600px){
    .topics-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:34px;
        -webkit-text-fill-color:white;
        background:none;
        text-shadow:0 4px 20px rgba(0,0,0,0.3);
    }

    .hero h2{
        font-size:18px;
    }

    .section-heading{
        font-size:28px;
    }

    .about-text{
        padding:25px;
    }

    .about-text h2{
        font-size:28px;
    }

    .table-box{
        padding:15px;
        overflow-x:auto;
    }

    .conference-date{
        font-size:14px;
        padding:12px 20px;
    }

    .btn{
        padding:12px 24px;
        font-size:14px;
    }
}

/* ADDITIONAL CREATIVE TOUCHES */

/* Loading animation for images */
img{
    opacity:0;
    animation:imageLoad 0.6s ease forwards;
}

@keyframes imageLoad{
    from{opacity:0; transform:scale(0.95);}
    to{opacity:1; transform:scale(1);}
}

/* Card glow effect on hover */
.glow-hover{
    transition:all 0.4s ease;
}

.glow-hover:hover{
    box-shadow:0 0 30px rgba(13,110,253,0.15);
}

/* Text gradient for special headings */
.gradient-text{
    background:linear-gradient(135deg,#042f7a,#0d6efd,#ffb703);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

/* Floating animation for decorative elements */
.float-animation{
    animation:float 4s ease-in-out infinite;
}

/* Creative divider */
.creative-divider{
    width:100%;
    height:2px;
    background:linear-gradient(90deg,transparent,#0d6efd,transparent);
    margin:30px 0;
    position:relative;
}

.creative-divider::after{
    content:'✦';
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:#f7f9ff;
    padding:0 15px;
    color:#0d6efd;
}

/* Custom badge */
.badge{
    display:inline-block;
    padding:4px 12px;
    border-radius:12px;
    font-size:12px;
    font-weight:700;
    background:linear-gradient(135deg,#ffb703,#ff9800);
    color:white;
    margin-left:8px;
}

/* Hover lift effect */
.lift-hover{
    transition:all 0.3s ease;
}

.lift-hover:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* Glass morphism effect */
.glass{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.2);
}

/* Responsive text sizes */
@media(max-width:768px){
    .hero h1{
        font-size:38px;
    }
    
    .hero h2{
        font-size:20px;
    }
    
    .section-heading{
        font-size:30px;
    }
    
    .dates-title h2{
        font-size:28px;
    }
    
    .publication h2{
        font-size:32px;
    }
}
.premium-dates-section{
    padding:90px 20px;
    background:linear-gradient(135deg,rgb(182, 176, 233,0.7),rgb(173, 188, 231,0.5));
    position:relative;
    overflow:hidden;
}

/* Decorative background elements */
.premium-dates-section::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(91,37,217,0.05) 0%, transparent 70%);
    border-radius:50%;
    pointer-events:none;
}

.premium-dates-section::after{
    content:"";
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(24, 5, 194, 0.05) 0%, transparent 70%);
    border-radius:50%;
    pointer-events:none;
}

.premium-dates-title{
    text-align:center;
    margin-bottom:55px;
    position:relative;
    animation:fadeInUp 0.8s ease;
}

.premium-dates-title span{
    display:inline-block;
    background:linear-gradient(135deg,#e8ddff,#d4c4ff);
    color:#5b25d9;
    padding:9px 22px;
    border-radius:30px;
    font-weight:800;
    font-size:14px;
    letter-spacing:0.5px;
    position:relative;
    transition:all 0.3s ease;
}

.premium-dates-title span:hover{
    transform:scale(1.05);
    box-shadow:0 5px 20px rgba(91,37,217,0.2);
}

.premium-dates-title span::after{
    content:"✨";
    margin-left:8px;
}

.premium-dates-title h2{
    font-size:42px;
    color:#07152f;
    margin:18px 0 10px;
    font-weight:900;
    background:linear-gradient(135deg,#07152f,#4b16c4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    position:relative;
    font-family: 'Times New Roman', Times, serif;
}

.premium-dates-title h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:linear-gradient(90deg,#4b16c4,#8b48ff);
    margin:15px auto 0;
    border-radius:2px;
}

.premium-dates-title p{
    color:#050505;
    font-size:16px;
    max-width:600px;
    margin:0 auto;
}

.premium-timeline{
    max-width:850px;
    margin:auto;
    position:relative;
}

.premium-timeline::before{
    content:"";
    position:absolute;
    left:39px;
    top:20px;
    width:4px;
    height:calc(100% - 40px);
    background:linear-gradient(180deg,#4b16c4,#8b48ff,#4b16c4);
    border-radius:10px;
    animation:timelineGlow 3s ease-in-out infinite;
}

@keyframes timelineGlow{
    0%,100%{
        opacity:1;
    }
    50%{
        opacity:0.6;
        box-shadow:0 0 20px rgba(75,22,196,0.3);
    }
}

.premium-date-card{
    position:relative;
    display:flex;
    gap:25px;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(12px);
    border:1px solid rgba(91,37,217,0.15);
    border-radius:22px;
    padding:25px;
    margin-bottom:30px;
    box-shadow:0 18px 45px rgba(75,22,196,0.12);
    transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor:default;
    position:relative;
    overflow:hidden;
}

/* Card hover gradient overlay */
.premium-date-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(135deg, rgba(75,22,196,0.03), rgba(139,72,255,0.03));
    opacity:0;
    transition:opacity 0.4s ease;
    pointer-events:none;
}

.premium-date-card:hover::before{
    opacity:1;
}

/* Card accent border */
.premium-date-card::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
    background:linear-gradient(180deg,#4b16c4,#8b48ff);
    border-radius:22px 0 0 22px;
    opacity:0;
    transition:opacity 0.4s ease;
}

.premium-date-card:hover::after{
    opacity:1;
}

.premium-date-card:hover{
    transform:translateY(-8px) scale(1.01);
    box-shadow:0 25px 60px rgba(75,22,196,0.22);
    border-color:rgba(91,37,217,0.3);
}

/* Card animation on scroll */
.premium-date-card{
    opacity:0;
    transform:translateY(30px);
    animation:cardReveal 0.6s ease forwards;
}

.premium-date-card:nth-child(1){
    animation-delay:0.1s;
}
.premium-date-card:nth-child(2){
    animation-delay:0.3s;
}
.premium-date-card:nth-child(3){
    animation-delay:0.5s;
}
.premium-date-card:nth-child(4){
    animation-delay:0.7s;
}

@keyframes cardReveal{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

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

.date-icon{
    min-width:78px;
    height:78px;
    border-radius:50%;
    background:linear-gradient(135deg,#4b16c4,#8b48ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:white;
    z-index:2;
    box-shadow:0 10px 25px rgba(75,22,196,0.35);
    position:relative;
    transition:all 0.4s ease;
    flex-shrink:0;
}

.date-icon::after{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:50%;
    background:linear-gradient(135deg,#4b16c4,#8b48ff);
    opacity:0.2;
    z-index:-1;
    transition:all 0.4s ease;
}

.premium-date-card:hover .date-icon{
    transform:rotate(8deg) scale(1.05);
    box-shadow:0 15px 35px rgba(75,22,196,0.5);
}

.premium-date-card:hover .date-icon::after{
    transform:scale(1.3);
    opacity:0;
}

/* Pulse animation for icon */
@keyframes iconPulse{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.05);
    }
}

.date-icon{
    animation:iconPulse 3s ease-in-out infinite;
}

.premium-date-card:nth-child(1) .date-icon{
    animation-delay:0s;
}
.premium-date-card:nth-child(2) .date-icon{
    animation-delay:0.5s;
}
.premium-date-card:nth-child(3) .date-icon{
    animation-delay:1s;
}
.premium-date-card:nth-child(4) .date-icon{
    animation-delay:1.5s;
}

.date-content{
    flex:1;
}

.date-content h3{
    font-size:24px;
    color:#07152f;
    margin-bottom:8px;
    font-weight:800;
    transition:color 0.3s ease;
    font-family: "comic sana ms";
}

.premium-date-card:hover .date-content h3{
    color:#4b16c4;
}

.date-content h4{
    display:inline-block;
    color:#5b25d9;
    background:linear-gradient(135deg,#f1ebff,#e8ddff);
    padding:7px 16px;
    border-radius:20px;
    font-size:15px;
    margin-bottom:12px;
    font-weight:700;
    transition:all 0.3s ease;
    position:relative;
}

.premium-date-card:hover .date-content h4{
    background:linear-gradient(135deg,#4b16c4,#8b48ff);
    color:white;
    transform:scale(1.05);
    box-shadow:0 5px 15px rgba(75,22,196,0.3);
}

.date-content p{
    color:#555;
    line-height:1.7;
    margin:0;
    font-size:15px;
}

/* Status badge for upcoming/past events */
.date-content .status-badge{
    display:inline-block;
    padding:4px 12px;
    border-radius:12px;
    font-size:11px;
    font-weight:700;
    margin-left:10px;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.status-upcoming{
    background:#e8f5e9;
    color:#2e7d32;
}

.status-past{
    background:#fbe9e7;
    color:#c62828;
}

.status-ongoing{
    background:#fff3e0;
    color:#e65100;
}

/* Responsive Design */
@media(max-width:992px){
    .premium-dates-title h2{
        font-size:36px;
    }
}

@media(max-width:768px){
    .premium-dates-section{
        padding:70px 15px;
    }

    .premium-dates-title h2{
        font-size:34px;
    }

    .premium-dates-title h2::after{
        width:60px;
    }

    .premium-timeline::before{
        left:32px;
    }

    .premium-date-card{
        gap:18px;
        padding:22px;
        border-radius:18px;
    }

    .date-icon{
        min-width:68px;
        height:68px;
        font-size:28px;
    }

    .date-content h3{
        font-size:22px;
    }

    .date-content h4{
        font-size:14px;
        padding:6px 14px;
    }

    .date-content p{
        font-size:14px;
    }
}

@media(max-width:600px){
    .premium-dates-section{
        padding:60px 12px;
    }

    .premium-dates-title{
        margin-bottom:40px;
    }

    .premium-dates-title span{
        font-size:12px;
        padding:7px 18px;
    }

    .premium-dates-title h2{
        font-size:28px;
        margin:14px 0 8px;
    }

    .premium-dates-title p{
        font-size:14px;
    }

    .premium-timeline::before{
        left:28px;
        width:3px;
    }

    .premium-date-card{
        gap:12px;
        padding:16px 18px;
        margin-bottom:20px;
        border-radius:16px;
        flex-wrap:wrap;
    }

    .date-icon{
        min-width:56px;
        height:56px;
        font-size:22px;
    }

    .date-content{
        width:calc(100% - 68px);
    }

    .date-content h3{
        font-size:18px;
        margin-bottom:5px;
    }

    .date-content h4{
        font-size:13px;
        padding:5px 12px;
        margin-bottom:8px;
    }

    .date-content p{
        font-size:13px;
        line-height:1.6;
    }

    .date-content .status-badge{
        font-size:10px;
        padding:3px 10px;
        margin-left:5px;
    }

    /* Hide timeline line on very small screens */
    .premium-timeline::before{
        display:none;
    }

    /* Add a small dot indicator on cards instead */
    .premium-date-card::before{
        display:none;
    }
}

@media(max-width:400px){
    .premium-dates-title h2{
        font-size:24px;
    }

    .premium-date-card{
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:20px 15px;
    }

    .date-icon{
        min-width:60px;
        height:60px;
        font-size:24px;
    }

    .date-content{
        width:100%;
    }

    .date-content h4{
        display:inline-block;
    }

    .date-content .status-badge{
        display:block;
        margin:5px 0 0;
        text-align:center;
    }
}
.hero-section{
    min-height:92vh;
    padding:150px 20px 100px;
    background:
        linear-gradient(rgba(6,25,58,0.82), rgba(6,25,58,0.88)),
        url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    isolation:isolate;
}

/* Animated gradient overlay */
.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 30% 30%, rgba(0,120,255,0.35), transparent 35%),
        radial-gradient(circle at 75% 65%, rgba(255,165,0,0.20), transparent 32%);
    z-index:1;
    animation:gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift{
    0%{
        background:
            radial-gradient(circle at 30% 30%, rgba(0,120,255,0.35), transparent 35%),
            radial-gradient(circle at 75% 65%, rgba(255,165,0,0.20), transparent 32%);
    }
    50%{
        background:
            radial-gradient(circle at 60% 40%, rgba(0,120,255,0.30), transparent 40%),
            radial-gradient(circle at 20% 70%, rgba(255,165,0,0.25), transparent 35%);
    }
    100%{
        background:
            radial-gradient(circle at 70% 20%, rgba(0,120,255,0.35), transparent 35%),
            radial-gradient(circle at 30% 80%, rgba(255,165,0,0.20), transparent 32%);
    }
}

/* Additional overlay for depth */
.hero-section::after{
    content:"";
    position:absolute;
    inset:0;
    background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index:1;
    pointer-events:none;
}

.hero-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(2px);
    opacity:0.45;
    z-index:1;
    pointer-events:none;
}

.shape-one{
    width:260px;
    height:260px;
    background:linear-gradient(135deg,#0d6efd,#4a9eff);
    top:18%;
    left:12%;
    animation:floatOne 6s infinite ease-in-out;
    box-shadow:0 0 80px rgba(13,110,253,0.2);
}

.shape-one::after{
    content:"";
    position:absolute;
    inset:10px;
    border-radius:50%;
    background:linear-gradient(135deg,rgba(255,255,255,0.1),transparent);
    filter:blur(8px);
}

.shape-two{
    width:180px;
    height:180px;
    background:linear-gradient(135deg,#ff9f1c,#ffb703);
    bottom:15%;
    right:14%;
    animation:floatTwo 7s infinite ease-in-out;
    box-shadow:0 0 60px rgba(255,159,28,0.2);
}

.shape-three{
    width:120px;
    height:120px;
    background:linear-gradient(135deg,#8b48ff,#6c3cb9);
    top:55%;
    right:8%;
    animation:floatThree 8s infinite ease-in-out;
    opacity:0.3;
    filter:blur(3px);
}

.shape-four{
    width:150px;
    height:150px;
    background:linear-gradient(135deg,#00d4ff,#0090ff);
    bottom:25%;
    left:8%;
    animation:floatFour 9s infinite ease-in-out;
    opacity:0.25;
    filter:blur(3px);
}

/* Floating animation keyframes */
@keyframes floatOne{
    0%,100%{
        transform:translateY(0) rotate(0deg) scale(1);
    }
    25%{
        transform:translateY(-30px) rotate(5deg) scale(1.05);
    }
    75%{
        transform:translateY(15px) rotate(-3deg) scale(0.95);
    }
}

@keyframes floatTwo{
    0%,100%{
        transform:translateY(0) rotate(0deg) scale(1);
    }
    33%{
        transform:translateY(35px) rotate(-8deg) scale(1.08);
    }
    66%{
        transform:translateY(-20px) rotate(6deg) scale(0.92);
    }
}

@keyframes floatThree{
    0%,100%{
        transform:translate(0,0) rotate(0deg);
    }
    25%{
        transform:translate(-20px,-25px) rotate(45deg);
    }
    75%{
        transform:translate(20px,15px) rotate(-30deg);
    }
}

@keyframes floatFour{
    0%,100%{
        transform:translate(0,0) rotate(0deg) scale(1);
    }
    50%{
        transform:translate(25px,-15px) rotate(180deg) scale(1.1);
    }
}

/* Content styles */
.hero-content{
    max-width:1050px;
    position:relative;
    z-index:2;
    color:white;
}

.hero-badge{
    display:inline-block;
    padding:12px 32px;
    border-radius:40px;
    background:linear-gradient(90deg,#ff9f1c,#ffb703);
    color:white;
    font-size:16px;
    font-weight:800;
    box-shadow:0 12px 35px rgba(255,159,28,0.35);
    margin-bottom:30px;
    position:relative;
    animation:badgePulse 3s ease-in-out infinite;
    letter-spacing:0.5px;
    text-transform:uppercase;
}

@keyframes badgePulse{
    0%,100%{
        box-shadow:0 12px 35px rgba(255,159,28,0.35);
    }
    50%{
        box-shadow:0 12px 50px rgba(255,159,28,0.6), 0 0 80px rgba(255,159,28,0.2);
    }
}

.hero-badge::before{
    content:"";
    position:absolute;
    inset:-3px;
    border-radius:40px;
    background:linear-gradient(90deg,#ff9f1c,#ffb703,#ff9f1c);
    background-size:200% 100%;
    z-index:-1;
    animation:borderGlow 3s linear infinite;
    filter:blur(8px);
}

@keyframes borderGlow{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

.hero-content h1{
    font-size:76px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:900;
    letter-spacing:2px;
    background:linear-gradient(90deg,#ffffff,#ffe7a3,#ffd700);
    background-size:200% 200%;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    text-shadow:0 10px 40px rgba(0,0,0,0.25);
    animation:gradientText 4s ease-in-out infinite alternate;
    position:relative;
    font-family: 'Times New Roman', Times, serif;
}

@keyframes gradientText{
    0%{
        background-position:0% 50%;
    }
    100%{
        background-position:100% 50%;
    }
}

.hero-content h1::after{
    content:"";
    position:absolute;
    bottom:-8px;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:3px;
    background:linear-gradient(90deg,transparent,#ffb703,transparent);
    animation:underlineExpand 2s ease forwards;
    animation-delay:1s;
}

@keyframes underlineExpand{
    0%{
        width:0;
        opacity:0;
    }
    100%{
        width:60%;
        opacity:1;
    }
}

.hero-content h2{
    max-width:950px;
    margin:0 auto 28px;
    font-size:34px;
    line-height:1.45;
    font-weight:600;
    color:#f5f7ff;
    text-shadow:0 2px 20px rgba(0,0,0,0.15);
    animation:fadeInUp 1s ease forwards;
    animation-delay:0.3s;
    opacity:0;
    font-family: 'Times New Roman', Times, serif;
}

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

.hero-date{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    color:#064aa2;
    padding:16px 34px;
    border-radius:40px;
    font-size:17px;
    font-weight:800;
    box-shadow:0 12px 35px rgba(255,255,255,0.20);
    border:1px solid rgba(255,255,255,0.3);
    transition:all 0.4s ease;
    animation:dateBounce 2s ease infinite;
    animation-delay:1s;
    font-family: 'Times New Roman', Times, serif;
}

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

.hero-date:hover{
    transform:scale(1.05);
    box-shadow:0 15px 45px rgba(255,255,255,0.3);
}

.hero-date .calendar-icon{
    font-size:22px;
    animation:iconSpin 4s linear infinite;
}

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

.hero-date .date-text{
    position:relative;
}

.hero-date .date-text::after{
    content:"📅";
    margin-left:8px;
    animation:calendarPulse 2s ease-in-out infinite;
}

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

.hero-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    animation:fadeInUp 1s ease forwards;
    animation-delay:0.6s;
    opacity:0;
    font-family: 'Times New Roman', Times, serif;
}

.hero-btn{
    min-width:165px;
    padding:16px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:800;
    font-size:16px;
    transition:all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position:relative;
    overflow:hidden;
    letter-spacing:0.5px;
    border:2px solid transparent;
}

.hero-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);
    transition:left 0.5s ease;
}

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

.hero-btn::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:0;
    height:0;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    transform:translate(-50%,-50%);
    transition:width 0.6s ease, height 0.6s ease;
}

.hero-btn:hover::after{
    width:300px;
    height:300px;
}

.light-btn{
    background:white;
    color:#064aa2;
    border-color:rgba(255,255,255,0.3);
}

.light-btn:hover{
    background:#ff9f1c;
    color:white;
    border-color:#ff9f1c;
    transform:translateY(-6px) scale(1.02);
    box-shadow:0 15px 40px rgba(255,159,28,0.4);
}

.main-btn{
    background:#0d6efd;
    color:white;
    box-shadow:0 12px 35px rgba(13,110,253,0.35);
    border-color:#0d6efd;
}

.main-btn:hover{
    background:#ff9f1c;
    border-color:#ff9f1c;
    transform:translateY(-6px) scale(1.02);
    box-shadow:0 15px 40px rgba(255,159,28,0.4);
}

/* Particle animation container */
.particles-container{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    overflow:hidden;
}

.particle{
    position:absolute;
    width:4px;
    height:4px;
    background:white;
    border-radius:50%;
    opacity:0;
    animation:particleFloat linear infinite;
}

.particle:nth-child(1){
    left:10%;
    animation-duration:8s;
    animation-delay:0s;
}
.particle:nth-child(2){
    left:20%;
    animation-duration:12s;
    animation-delay:2s;
}
.particle:nth-child(3){
    left:30%;
    animation-duration:10s;
    animation-delay:4s;
}
.particle:nth-child(4){
    left:40%;
    animation-duration:14s;
    animation-delay:1s;
}
.particle:nth-child(5){
    left:50%;
    animation-duration:9s;
    animation-delay:3s;
}
.particle:nth-child(6){
    left:60%;
    animation-duration:11s;
    animation-delay:5s;
}
.particle:nth-child(7){
    left:70%;
    animation-duration:13s;
    animation-delay:0.5s;
}
.particle:nth-child(8){
    left:80%;
    animation-duration:10s;
    animation-delay:2.5s;
}
.particle:nth-child(9){
    left:90%;
    animation-duration:15s;
    animation-delay:4.5s;
}
.particle:nth-child(10){
    left:95%;
    animation-duration:12s;
    animation-delay:1.5s;
}

@keyframes particleFloat{
    0%{
        opacity:0;
        transform:translateY(100vh) scale(0);
    }
    10%{
        opacity:0.6;
    }
    90%{
        opacity:0.6;
    }
    100%{
        opacity:0;
        transform:translateY(-10vh) scale(1);
    }
}

/* Scroll indicator */
.scroll-indicator{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    z-index:2;
    color:rgba(255,255,255,0.6);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    animation:bounceArrow 2s ease-in-out infinite;
}

.scroll-indicator .mouse{
    width:24px;
    height:38px;
    border:2px solid rgba(255,255,255,0.4);
    border-radius:12px;
    position:relative;
}

.scroll-indicator .mouse::after{
    content:"";
    position:absolute;
    top:6px;
    left:50%;
    transform:translateX(-50%);
    width:3px;
    height:8px;
    background:white;
    border-radius:2px;
    animation:scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel{
    0%{
        opacity:1;
        transform:translateX(-50%) translateY(0);
    }
    100%{
        opacity:0;
        transform:translateX(-50%) translateY(16px);
    }
}

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

/* Responsive Design */
@media(max-width:992px){
    .hero-content h1{
        font-size:60px;
    }
    
    .hero-content h2{
        font-size:28px;
    }
    
    .shape-one{
        width:200px;
        height:200px;
        top:15%;
        left:8%;
    }
    
    .shape-two{
        width:150px;
        height:150px;
        bottom:20%;
        right:10%;
    }
}

@media(max-width:768px){
    .hero-section{
        min-height:auto;
        padding:130px 20px 80px;
        background-attachment:scroll;
    }

    .hero-content h1{
        font-size:44px;
        letter-spacing:1px;
    }

    .hero-content h1::after{
        bottom:-5px;
        width:40%;
    }

    .hero-content h2{
        font-size:22px;
        margin-bottom:20px;
    }

    .hero-date{
        font-size:14px;
        padding:13px 22px;
        gap:8px;
    }

    .hero-date .calendar-icon{
        font-size:18px;
    }

    .hero-badge{
        font-size:14px;
        padding:10px 24px;
        margin-bottom:20px;
    }

    .hero-btn{
        min-width:140px;
        padding:14px 24px;
        font-size:14px;
    }

    .hero-buttons{
        gap:14px;
        margin-top:25px;
    }

    .shape-one{
        width:120px;
        height:120px;
        top:10%;
        left:5%;
    }
    
    .shape-two{
        width:100px;
        height:100px;
        bottom:15%;
        right:5%;
    }
    
    .shape-three,
    .shape-four{
        display:none;
    }

    .scroll-indicator{
        display:none;
    }
}

@media(max-width:576px){
    .hero-section{
        padding:120px 15px 60px;
    }

    .hero-content h1{
        font-size:34px;
        margin-bottom:15px;
    }

    .hero-content h1::after{
        width:30%;
    }

    .hero-content h2{
        font-size:18px;
        line-height:1.4;
    }

    .hero-badge{
        font-size:12px;
        padding:8px 18px;
        margin-bottom:15px;
    }

    .hero-date{
        font-size:12px;
        padding:10px 18px;
        flex-direction:column;
        gap:4px;
    }

    .hero-date .calendar-icon{
        font-size:16px;
    }

    .hero-date .date-text::after{
        margin-left:5px;
    }

    .hero-btn{
        min-width:100%;
        padding:12px 20px;
        font-size:14px;
        text-align:center;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
        gap:12px;
        width:100%;
        max-width:300px;
        margin:20px auto 0;
    }

    .shape-one{
        width:80px;
        height:80px;
        opacity:0.3;
    }
    
    .shape-two{
        width:60px;
        height:60px;
        opacity:0.25;
    }
}

/* Reduced motion preferences */
@media(prefers-reduced-motion:reduce){
    .hero-section::before,
    .shape-one,
    .shape-two,
    .shape-three,
    .shape-four,
    .hero-badge,
    .hero-content h1,
    .hero-date,
    .scroll-indicator{
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:0.01ms !important;
    }
    
    .hero-content h1::after{
        animation-duration:0.01ms !important;
    }
    
    .hero-btn::before,
    .hero-btn::after{
        display:none;
    }
}

/* Dark mode support */
@media(prefers-color-scheme:dark){
    .hero-date{
        background:rgba(6,25,58,0.9);
        color:#fff;
        border-color:rgba(255,255,255,0.1);
    }
    
    .light-btn{
        background:rgba(255,255,255,0.1);
        color:#fff;
        border-color:rgba(255,255,255,0.2);
    }
    
    .light-btn:hover{
        background:#ff9f1c;
        color:#fff;
    }
}
.conference-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:25px 0;
    position:relative;
}

/* Decorative ring behind logo */
.conference-logo::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(13,110,253,0.1) 60deg,
        transparent 120deg,
        rgba(255,183,3,0.1) 180deg,
        transparent 240deg,
        rgba(139,72,255,0.1) 300deg,
        transparent 360deg
    );
    animation:ringRotate 10s linear infinite;
    pointer-events:none;
}

/* Outer glow ring */
.conference-logo::after{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    border-radius:50%;
    border:2px dashed rgba(255,255,255,0.2);
    animation:ringRotate 15s linear infinite reverse;
    pointer-events:none;
}

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

.conference-logo img{
  
    width:170px;
    height:170px;
    object-fit:contain;
    display:block;
    opacity:1 !important;
    visibility:visible !important;
    background:#fff;
    padding:10px;
    border-radius:50%;
    position:relative;
    z-index:9999;
}

/* Glow effect on hover */
.conference-logo img:hover{
    transform:scale(1.08) rotate(5deg);
    border-color:rgba(255,183,3,0.6);
    box-shadow:
        0 0 0 8px rgba(255,183,3,0.15),
        0 0 0 16px rgba(255,183,3,0.08),
        0 0 40px rgba(255,183,3,0.3),
        0 20px 60px rgba(0,0,0,0.4);
    filter:drop-shadow(0 10px 40px rgba(255,183,3,0.3));
}

/* Pulse ring on hover */
.conference-logo img:hover + .pulse-ring{
    animation:pulseRing 1s ease-out forwards;
}

/* Pulse ring element (add to HTML) */
.pulse-ring{
    position:absolute;
    width:170px;
    height:170px;
    border-radius:50%;
    border:3px solid rgba(255,183,3,0.4);
    z-index:1;
    pointer-events:none;
    opacity:0;
}

@keyframes pulseRing{
    0%{
        transform:scale(1);
        opacity:0.8;
    }
    100%{
        transform:scale(1.4);
        opacity:0;
    }
}

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

/* Responsive Design */
@media(max-width:992px){
    .conference-logo::before{
        width:190px;
        height:190px;
    }
    
    .conference-logo::after{
        width:175px;
        height:175px;
    }
    
    .conference-logo img{
        width:150px;
        height:150px;
        padding:15px;
    }
}

@media(max-width:768px){
    .conference-logo{
        margin:20px 0;
    }
    
    .conference-logo::before{
        width:160px;
        height:160px;
    }
    
    .conference-logo::after{
        width:145px;
        height:145px;
    }
    
    .conference-logo img{
        width:130px;
        height:130px;
        padding:12px;
        border-width:5px;
    }
    
    @keyframes logoFloat{
        0%,100%{
            transform:translateY(0px);
        }
        50%{
            transform:translateY(-8px);
        }
    }
}

@media(max-width:576px){
    .conference-logo::before{
        width:140px;
        height:140px;
    }
    
    .conference-logo::after{
        width:125px;
        height:125px;
        border-width:1.5px;
    }
    
    .conference-logo img{
        width:110px;
        height:110px;
        padding:10px;
        border-width:4px;
    }
    
    @keyframes logoFloat{
        0%,100%{
            transform:translateY(0px);
        }
        50%{
            transform:translateY(-6px);
        }
    }
}

@media(max-width:400px){
    .conference-logo::before{
        width:120px;
        height:120px;
    }
    
    .conference-logo::after{
        display:none;
    }
    
    .conference-logo img{
        width:100px;
        height:100px;
        padding:8px;
        border-width:3px;
    }
}
.conference-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:25px 0;
    position:relative;
    perspective:1000px;
}

/* Animated ring behind logo - Version 1: Gradient Ring */
.conference-logo::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:conic-gradient(
        from 0deg,
        #0d6efd,
        #8b48ff,
        #ffb703,
        #ff6b6b,
        #0d6efd
    );
    animation:ringRotate 8s linear infinite;
    filter:blur(2px);
    opacity:0.3;
    pointer-events:none;
}

/* Animated ring behind logo - Version 2: Dashed Border */
.conference-logo::after{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    border-radius:50%;
    border:2px dashed rgba(255,255,255,0.15);
    animation:ringRotate 12s linear infinite reverse;
    pointer-events:none;
}

/* Third ring - subtle glow */
.ring-glow{
    position:absolute;
    width:240px;
    height:240px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(13,110,253,0.05), transparent 70%);
    animation:ringPulse 3s ease-in-out infinite;
    pointer-events:none;
}

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

@keyframes ringPulse{
    0%,100%{
        transform:scale(1);
        opacity:0.5;
    }
    50%{
        transform:scale(1.1);
        opacity:0.8;
    }
}

.conference-logo img{
    
    width:170px;
    height:170px;
    object-fit:contain;
    display:block;
    opacity:1 !important;
    visibility:visible !important;
    background:#fff;
    padding:10px;
    border-radius:50%;
    position:relative;
    z-index:9999;
}


/* Hover effects */
.conference-logo img:hover{
    transform:scale(1.1) rotate(8deg) translateY(-10px);
    border-color:rgba(255,183,3,0.7);
    box-shadow:
        0 0 0 8px rgba(255,183,3,0.15),
        0 0 0 16px rgba(255,183,3,0.08),
        0 0 40px rgba(255,183,3,0.25),
        0 25px 60px rgba(0,0,0,0.35),
        0 40px 80px rgba(255,183,3,0.1),
        inset 0 -4px 15px rgba(0,0,0,0.05);
    filter:drop-shadow(0 15px 40px rgba(255,183,3,0.2));
}

/* Glow ring on hover - using pseudo */
.conference-logo:hover::before{
    opacity:0.5;
    filter:blur(5px);
    animation-duration:4s;
}

/* Pulse ring on hover */
.pulse-ring{
    position:absolute;
    width:170px;
    height:170px;
    border-radius:50%;
    border:3px solid rgba(255,183,3,0.5);
    z-index:1;
    pointer-events:none;
    opacity:0;
    transition:all 0.3s ease;
}

.conference-logo:hover .pulse-ring{
    animation:pulseRing 1.2s ease-out forwards;
}

@keyframes pulseRing{
    0%{
        transform:scale(1);
        opacity:1;
        border-color:rgba(255,183,3,0.6);
    }
    100%{
        transform:scale(1.6);
        opacity:0;
        border-color:rgba(255,183,3,0);
    }
}

/* Multiple pulse rings on click */
.pulse-ring.second{
    animation-delay:0.4s;
}

@keyframes logoFloat{
    0%,100%{
        transform:translateY(0px) rotate(0deg);
    }
    25%{
        transform:translateY(-8px) rotate(-1deg);
    }
    75%{
        transform:translateY(-12px) rotate(1deg);
    }
}

/* Sparkle animation on hover */
.conference-logo img:hover + .sparkle-container{
    opacity:1;
}

.sparkle-container{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:200px;
    height:200px;
    pointer-events:none;
    z-index:3;
    opacity:0;
    transition:opacity 0.5s ease;
}

.sparkle{
    position:absolute;
    width:6px;
    height:6px;
    background:white;
    border-radius:50%;
    box-shadow:0 0 20px rgba(255,183,3,0.8);
    animation:sparkleFloat 1.5s ease-out infinite;
}

.sparkle:nth-child(1){
    top:0;
    left:50%;
    animation-delay:0s;
}
.sparkle:nth-child(2){
    top:50%;
    right:0;
    animation-delay:0.3s;
}
.sparkle:nth-child(3){
    bottom:0;
    left:50%;
    animation-delay:0.6s;
}
.sparkle:nth-child(4){
    top:50%;
    left:0;
    animation-delay:0.9s;
}
.sparkle:nth-child(5){
    top:20%;
    right:20%;
    animation-delay:0.2s;
}
.sparkle:nth-child(6){
    bottom:20%;
    left:20%;
    animation-delay:0.7s;
}
.sparkle:nth-child(7){
    top:20%;
    left:20%;
    animation-delay:0.4s;
}
.sparkle:nth-child(8){
    bottom:20%;
    right:20%;
    animation-delay:0.8s;
}

@keyframes sparkleFloat{
    0%{
        transform:translate(0,0) scale(0);
        opacity:0;
    }
    50%{
        transform:translate(var(--tx), var(--ty)) scale(1);
        opacity:1;
    }
    100%{
        transform:translate(calc(var(--tx) * 2), calc(var(--ty) * 2)) scale(0);
        opacity:0;
    }
}

.sparkle:nth-child(1){--tx:-30px; --ty:-30px;}
.sparkle:nth-child(2){--tx:30px; --ty:-30px;}
.sparkle:nth-child(3){--tx:30px; --ty:30px;}
.sparkle:nth-child(4){--tx:-30px; --ty:30px;}
.sparkle:nth-child(5){--tx:-20px; --ty:-40px;}
.sparkle:nth-child(6){--tx:20px; --ty:40px;}
.sparkle:nth-child(7){--tx:-40px; --ty:-20px;}
.sparkle:nth-child(8){--tx:40px; --ty:20px;}

/* Shadow glow on logo */
.logo-shadow{
    position:absolute;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%);
    width:140px;
    height:20px;
    background:radial-gradient(ellipse, rgba(0,0,0,0.15), transparent 70%);
    border-radius:50%;
    filter:blur(10px);
    animation:shadowPulse 4s ease-in-out infinite;
    z-index:0;
}

@keyframes shadowPulse{
    0%,100%{
        transform:translateX(-50%) scale(1);
        opacity:0.6;
    }
    50%{
        transform:translateX(-50%) scale(0.8);
        opacity:0.3;
    }
}

/* Responsive Design */
@media(max-width:992px){
    .conference-logo::before{
        width:190px;
        height:190px;
    }
    
    .conference-logo::after{
        width:175px;
        height:175px;
    }
    
    .ring-glow{
        width:210px;
        height:210px;
    }
    
    .conference-logo img{
        width:150px;
        height:150px;
        padding:15px;
    }
    
    .logo-shadow{
        width:120px;
        height:15px;
    }
}

@media(max-width:768px){
    .conference-logo{
        margin:20px 0;
    }
    
    .conference-logo::before{
        width:160px;
        height:160px;
        border-width:2px;
    }
    
    .conference-logo::after{
        width:145px;
        height:145px;
    }
    
    .ring-glow{
        width:180px;
        height:180px;
    }
    
    .conference-logo img{
        width:130px;
        height:130px;
        padding:12px;
        border-width:5px;
    }
    
    .logo-shadow{
        width:100px;
        height:12px;
    }
    
    @keyframes logoFloat{
        0%,100%{
            transform:translateY(0px);
        }
        50%{
            transform:translateY(-8px);
        }
    }
}

@media(max-width:576px){
    .conference-logo::before{
        width:140px;
        height:140px;
    }
    
    .conference-logo::after{
        width:125px;
        height:125px;
        border-width:1.5px;
    }
    
    .ring-glow{
        width:160px;
        height:160px;
    }
    
    .conference-logo img{
        width:110px;
        height:110px;
        padding:10px;
        border-width:4px;
    }
    
    .conference-logo img:hover{
        transform:scale(1.08) rotate(5deg) translateY(-5px);
    }
    
    .logo-shadow{
        width:80px;
        height:10px;
        bottom:-15px;
    }
    
    .sparkle-container{
        width:150px;
        height:150px;
    }
    
    .sparkle{
        width:4px;
        height:4px;
    }
}

@media(max-width:400px){
    .conference-logo::before{
        display:none;
    }
    
    .conference-logo::after{
        width:110px;
        height:110px;
    }
    
    .ring-glow{
        display:none;
    }
    
    .conference-logo img{
        width:95px;
        height:95px;
        padding:8px;
        border-width:3px;
    }
    
    .logo-shadow{
        width:70px;
        height:8px;
    }
}

/* Reduced motion preferences */
@media(prefers-reduced-motion:reduce){
    .conference-logo::before,
    .conference-logo::after,
    .ring-glow,
    .conference-logo img,
    .logo-shadow,
    .pulse-ring,
    .sparkle{
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:0.01ms !important;
    }
    
    .conference-logo img:hover{
        transform:scale(1.05);
    }
}

/* Dark mode support */
@media(prefers-color-scheme:dark){
    .conference-logo img{
        background:linear-gradient(135deg, #1a1a2e, #16213e);
        border-color:rgba(255,255,255,0.1);
        box-shadow:
            0 0 0 8px rgba(255,255,255,0.03),
            0 0 0 16px rgba(255,255,255,0.01),
            0 15px 45px rgba(0,0,0,0.5);
    }
    
    .conference-logo img:hover{
        border-color:rgba(255,183,3,0.5);
        box-shadow:
            0 0 0 8px rgba(255,183,3,0.1),
            0 0 0 16px rgba(255,183,3,0.05),
            0 0 40px rgba(255,183,3,0.15),
            0 25px 60px rgba(0,0,0,0.5);
    }
    
    .logo-shadow{
        background:radial-gradient(ellipse, rgba(255,255,255,0.05), transparent 70%);
    }
    
    .conference-logo::before{
        opacity:0.2;
    }
}
/* ========================================
   PAGE BANNER - MODERN GLASS STYLE
   ======================================== */
.page-banner{
    min-height:350px;
    padding:140px 20px 80px;
    background:
        linear-gradient(135deg, rgba(10,20,50,0.92), rgba(30,10,80,0.88)),
        url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    text-align:center;
    color:white;
    position:relative;
    overflow:hidden;
    isolation:isolate;
}

/* Animated particle grid overlay */
.page-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size:50px 50px;
    z-index:1;
    animation:gridMove 20s linear infinite;
    pointer-events:none;
}

@keyframes gridMove{
    0%{
        transform:translate(0,0);
    }
    100%{
        transform:translate(50px,50px);
    }
}

/* Animated gradient orbs */
.page-banner::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:
        radial-gradient(circle at 20% 30%, rgba(139,72,255,0.3), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,183,3,0.2), transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(13,110,253,0.15), transparent 50%);
    animation:orbPulse 10s ease-in-out infinite alternate;
    pointer-events:none;
}

@keyframes orbPulse{
    0%{
        opacity:0.6;
        transform:scale(1);
    }
    50%{
        opacity:1;
        transform:scale(1.1);
    }
    100%{
        opacity:0.6;
        transform:scale(1);
    }
}

/* Floating geometric shapes */
.banner-shapes{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
}

.banner-shape{
    position:absolute;
    border:2px solid rgba(255,255,255,0.08);
    animation:shapeFloat 15s ease-in-out infinite;
}

.banner-shape:nth-child(1){
    width:200px;
    height:200px;
    border-radius:50%;
    top:-50px;
    right:-30px;
    border-color:rgba(139,72,255,0.2);
    animation-delay:0s;
}

.banner-shape:nth-child(2){
    width:150px;
    height:150px;
    border-radius:30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom:-40px;
    left:-20px;
    border-color:rgba(255,183,3,0.15);
    animation-delay:2s;
}

.banner-shape:nth-child(3){
    width:100px;
    height:100px;
    border-radius:40% 60% 60% 40% / 40% 40% 60% 60%;
    top:60%;
    left:10%;
    border-color:rgba(13,110,253,0.15);
    animation-delay:4s;
}

.banner-shape:nth-child(4){
    width:80px;
    height:80px;
    border-radius:50%;
    top:20%;
    right:15%;
    border-color:rgba(255,255,255,0.05);
    animation-delay:1s;
}

@keyframes shapeFloat{
    0%,100%{
        transform:translate(0,0) rotate(0deg) scale(1);
    }
    25%{
        transform:translate(30px,-20px) rotate(45deg) scale(1.1);
    }
    50%{
        transform:translate(-20px,30px) rotate(90deg) scale(0.9);
    }
    75%{
        transform:translate(20px,20px) rotate(135deg) scale(1.05);
    }
}

.page-banner-content{
    position:relative;
    z-index:2;
    animation:contentReveal 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes contentReveal{
    from{
        opacity:0;
        transform:scale(0.9) translateY(20px);
    }
    to{
        opacity:1;
        transform:scale(1) translateY(0);
    }
}

/* Glowing badge with neon effect */
.page-banner-content span{
    display:inline-block;
    background:transparent;
    padding:10px 28px;
    border-radius:8px;
    font-weight:700;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    position:relative;
    border:1px solid rgba(255,183,3,0.3);
    color:#ffb703;
    animation:neonGlow 3s ease-in-out infinite;
}

@keyframes neonGlow{
    0%,100%{
        box-shadow:0 0 20px rgba(255,183,3,0.1), inset 0 0 20px rgba(255,183,3,0.05);
    }
    50%{
        box-shadow:0 0 40px rgba(255,183,3,0.3), inset 0 0 40px rgba(255,183,3,0.1);
    }
}

.page-banner-content span::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:8px;
    padding:2px;
    background:linear-gradient(90deg, transparent, rgba(255,183,3,0.5), transparent);
    /* -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}

.page-banner-content span::after{
    content:"✦";
    margin-left:8px;
    animation:starSpin 4s linear infinite;
    display:inline-block;
}

@keyframes starSpin{
    0%{
        transform:rotate(0deg) scale(1);
    }
    50%{
        transform:rotate(180deg) scale(1.2);
    }
    100%{
        transform:rotate(360deg) scale(1);
    }
}

.page-banner-content h1{
    font-size:56px;
    margin:30px 0 15px;
    font-weight:900;
    color:white;
    text-shadow:0 0 60px rgba(139,72,255,0.2);
    position:relative;
    letter-spacing:-1px;
}

.page-banner-content h1 .highlight{
    background:linear-gradient(135deg,#ffb703,#ff6b6b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

/* Animated typewriter underline */
.page-banner-content h1::after{
    content:"";
    position:absolute;
    bottom:-5px;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:3px;
    background:linear-gradient(90deg, #ffb703, #8b48ff, #ffb703);
    background-size:200% 100%;
    animation:typingUnderline 2s ease forwards, gradientMove 3s linear infinite 2s;
}

@keyframes typingUnderline{
    0%{
        width:0;
        opacity:0;
    }
    100%{
        width:40%;
        opacity:1;
    }
}

@keyframes gradientMove{
    0%{
        background-position:0% 50%;
    }
    100%{
        background-position:200% 50%;
    }
}

.page-banner-content p{
    font-size:19px;
    opacity:0;
    animation:textReveal 0.8s ease forwards;
    animation-delay:0.6s;
    max-width:700px;
    margin:15px auto 0;
    color:rgba(255,255,255,0.85);
    font-weight:300;
    line-height:1.7;
}

@keyframes textReveal{
    from{
        opacity:0;
        transform:translateY(20px) scale(0.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

/* Breadcrumb - minimal style */
.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:25px;
    font-size:13px;
    opacity:0;
    animation:textReveal 0.8s ease forwards;
    animation-delay:0.8s;
    background:rgba(255,255,255,0.05);
    padding:8px 20px;
    border-radius:30px;
    backdrop-filter:blur(10px);
    max-width:fit-content;
    margin-left:auto;
    margin-right:auto;
    border:1px solid rgba(255,255,255,0.05);
}

.breadcrumb a{
    color:rgba(255,255,255,0.6);
    text-decoration:none;
    transition:all 0.3s ease;
    position:relative;
}

.breadcrumb a:hover{
    color:#ffb703;
}

.breadcrumb a::after{
    content:"/";
    margin-left:8px;
    color:rgba(255,255,255,0.2);
}

.breadcrumb span:last-child{
    color:#ffb703;
    font-weight:600;
}
/*==================================
COUNTDOWN
==================================*/

.countdown-section{
    margin-top:-50px;
    position:relative;
    z-index:10;
    padding:0 20px 60px;
}

.countdown-box{
    max-width:950px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.countdown-box div{
    background:#fff;
    padding:30px 15px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:5px solid #0d6efd;
    transition:.3s;
}

.countdown-box div:hover{
    transform:translateY(-8px);
}

.countdown-box h3{
    font-size:48px;
    color:#0d6efd;
    margin-bottom:10px;
    font-weight:800;
    font-family: 'Times New Roman', Times, serif;
}

.countdown-box p{
    color:#666;
    font-size:18px;
    font-weight:600;
    margin:0;
}

@media(max-width:768px){

    .countdown-box{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:500px){

    .countdown-box{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .countdown-box h3{
        font-size:34px;
    }

    .countdown-box p{
        font-size:15px;
    }

}
/* ============================================
   ABOUT SECTION - Enhanced with Animations
   ============================================ */

/* ----- Keyframe Animations ----- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.05;
    transform: scale(1);
  }
  50% {
    opacity: 0.12;
    transform: scale(1.1);
  }
}

@keyframes slideInBadge {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes revealUnderline {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

/* ----- Section Container ----- */
.about-conference-section {
  padding: 100px 24px;
  background: #293681;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

/* Animated background accent */
.about-conference-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 191, 34, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

/* Secondary background decoration */
.about-conference-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 191, 34, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite reverse;
}

/* ----- Container (Grid Layout) ----- */
.about-container {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns:58% 42%;
  gap: 60px 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ----- Image Styles with Animation ----- */
.about-image {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.about-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0.92;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease,
              filter 0.5s ease;
  filter: saturate(1.05);
  animation: scaleIn 1.2s ease-out 0.3s both;
}

.about-image img:hover {
  transform: scale(1.03) translateY(-6px) rotate(1deg);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  opacity: 1;
  filter: saturate(1.15) brightness(1.05);
}

/* Floating animation on image container */
.about-image {
  animation: float 6s ease-in-out infinite;
}

/* ----- Content Typography with Animations ----- */
.about-content {
  animation: fadeInRight 1s ease-out 0.4s both;
}

.about-content span {
  display: inline-block;
  color: #ffbf22;
  letter-spacing: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-left: 4px;
  animation: slideInBadge 0.8s ease-out 0.6s both;
}

.about-content span::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #ffbf22;
  margin-left: 14px;
  vertical-align: middle;
  animation: revealUnderline 1s ease-out 0.8s both;
}

.about-content h2 {
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
  font-family: 'Georgia', 'Times New Roman', serif;
  letter-spacing: -0.5px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.about-content h2 b {
  color: #ffbf22;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* Animated underline highlight for bold text */
.about-content h2 b::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 4px;
  background: rgba(255, 191, 34, 0.25);
  border-radius: 2px;
  animation: revealUnderline 1.2s ease-out 1s both;
}

.about-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 38px;
  max-width: 95%;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* ----- Button Group with Staggered Animation ----- */
.about-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  padding: 16px 34px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

/* Staggered button animations */
.about-buttons .about-btn:first-child {
  animation-delay: 1s;
}

.about-buttons .about-btn:last-child {
  animation-delay: 1.2s;
}

/* Yellow Button */
.yellow-btn {
  background: #ffbf22;
  color: #07152f;
  box-shadow: 0 8px 24px rgba(255, 191, 34, 0.3);
}

/* Shimmer effect on yellow button */
.yellow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.yellow-btn:hover::before {
  left: 200%;
  animation: shimmer 1.5s ease-in-out;
}

.yellow-btn:hover {
  background: #ffffff;
  color: #07152f;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 191, 34, 0.4);
}

.yellow-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 8px 20px rgba(255, 191, 34, 0.3);
}

/* Outline Button */
.outline-btn {
  border: 2px solid #ffbf22;
  color: #ffffff;
  background: transparent;
}

.outline-btn:hover {
  background: #ffbf22;
  color: #07152f;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 191, 34, 0.2);
}

.outline-btn:active {
  transform: translateY(-2px) scale(0.98);
}

/* Arrow icon on buttons with animation */
.about-btn::after {
  content: '→';
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
}

.about-btn:hover::after {
  transform: translateX(6px) scale(1.1);
}

/* ----- Responsive Design with Animation Adjustments ----- */
@media (max-width: 1024px) {
  .about-container {
    gap: 50px;
  }

  .about-content h2 {
    font-size: 40px;
  }

  .about-image {
    animation: float 5s ease-in-out infinite;
  }
}

@media (max-width: 900px) {
  .about-conference-section {
    padding: 70px 20px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }

  /* Reorder animations for mobile - image first */
  .about-image {
    order: -1;
    animation: fadeInUp 1s ease-out 0.2s both, float 5s ease-in-out infinite 1s;
  }

  .about-content {
    animation: fadeInUp 1s ease-out 0.4s both;
  }

  .about-content span {
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }

  .about-content span::after {
    display: none;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-content p {
    font-size: 16px;
    text-align: center;
    max-width: 100%;
  }

  .about-image img {
    height: 320px;
    border-radius: 12px;
  }

  .about-buttons {
    justify-content: center;
  }

  .about-btn {
    min-width: 140px;
    padding: 14px 28px;
    font-size: 14px;
  }

  /* Reset staggered animation for mobile */
  .about-buttons .about-btn:first-child,
  .about-buttons .about-btn:last-child {
    animation-delay: 1s;
  }
}

@media (max-width: 480px) {
  .about-conference-section {
    padding: 50px 16px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-image img {
    height: 240px;
  }

  .about-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .about-btn {
    width: 100%;
    max-width: 280px;
    min-width: unset;
    animation: fadeInUp 0.8s ease-out both;
  }

  .about-buttons .about-btn:first-child {
    animation-delay: 0.8s;
  }

  .about-buttons .about-btn:last-child {
    animation-delay: 1s;
  }

  .about-btn::after {
    display: none;
  }
}

/* ----- Scroll-triggered Animation (Optional - requires Intersection Observer JS) ----- */
/* Add class .animate-on-scroll to section and use JS to toggle .visible class */
.about-conference-section.animate-on-scroll {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-conference-section.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-conference-section.animate-on-scroll.visible .about-image {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.about-conference-section.animate-on-scroll.visible .about-content {
  animation: fadeInRight 1s ease-out 0.4s both;
}

/* ----- Accessibility: Reduced Motion ----- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .about-image img,
  .about-btn,
  .about-btn::after,
  .about-image {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }

  .about-image img:hover {
    transform: none !important;
  }

  .about-conference-section::before,
  .about-conference-section::after {
    animation: none !important;
  }

  .about-btn::before {
    display: none !important;
  }
}

/* ----- Focus States for Keyboard Navigation ----- */
.about-btn:focus-visible {
  outline: 3px solid #ffbf22;
  outline-offset: 3px;
  border-radius: 6px;
  transform: scale(1.02);
}

/* ----- Print Styles ----- */
@media print {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .about-conference-section {
    background: #080b35 !important;
    padding: 40px 20px !important;
  }

  .about-conference-section::before,
  .about-conference-section::after {
    display: none !important;
  }

  .about-image img {
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .about-btn {
    border: 1px solid #ccc !important;
    background: #f5f5f5 !important;
    color: #333 !important;
  }

  .about-btn::after {
    content: '' !important;
  }

  .about-btn::before {
    display: none !important;
  }
}
/*=========================================
  PUBLICATION & INDEXING
=========================================*/

.publication-section{
    padding:70px 20px;
    background:
        linear-gradient(rgba(255,255,255,.96),rgba(255,255,255,.96)),
        linear-gradient(90deg,#edf2f7 1px,transparent 1px),
        linear-gradient(#edf2f7 1px,transparent 1px);
    background-size:
        auto,
        45px 45px,
        45px 45px;
}

/*=============================
TITLE
=============================*/

.publication-title{
    text-align:center;
    max-width:900px;
    margin:auto;
    
}

.publication-title > span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 28px;
    border:1px solid #bfe7df;
    border-radius:50px;
    background:#f5fffd;
    color:#1427da;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.publication-title > span i{
    font-size:14px;
}

.publication-title h2{
    margin-top:22px;
    font-size:40px;
    font-weight:800;
    color:#0b1d45;
    line-height:1.2;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.publication-title h2 span{
    color:#4d4be8;
    font-size:40px;
    font-weight:800;
}

.publication-title h2::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:linear-gradient(135deg,#1e3a8a,#2563eb,#3b82f6);
    margin:18px auto;
    border-radius:20px;
}

.publication-title p{
    max-width:650px;
    margin:auto;
    font-size:15px;
    color:#61708b;
    line-height:1.8;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/*=============================
GRID
=============================*/

.publication-grid{
    max-width:560px;
    margin:45px auto 0;
    display:grid;
    grid-template-columns:repeat(2,250px);
    justify-content:center;
    gap:20px;
}

/*=============================
CARD
=============================*/

.publication-card{
    width:250px;
    min-height:170px;
    padding:22px 18px;
    text-align:center;
    border-radius:18px;
    background:#f9ffff;
    border:1px solid #bfe7df;
    transition:.35s;
}

.publication-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
    border-color:#2733e0;
}

/*=============================
IMAGE
=============================*/

.publication-card img{
    width:200px;
    height:auto;
    display:block;
    margin:0 auto 15px;
}

/*=============================
HEADING
=============================*/

.publication-card h3{
    font-size:18px;
    color:#2f0d77;
    font-weight:800;
    margin-bottom:10px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/*=============================
TEXT
=============================*/

.publication-card p{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    font-size:12px;
    color:#3850ec;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.publication-card p i{
    color:#5778e4;
    font-size:12px;
}

/*=============================
RESPONSIVE
=============================*/

@media(max-width:768px){
    .publication-title h2{
        font-size:30px;
    }
    .publication-title h2 span{
        font-size:30px;
    }
    .publication-title p{
        font-size:14px;
    }
    .publication-grid{
        grid-template-columns:1fr;
        max-width:250px;
    }
    .publication-card{
        width:100%;
    }
}


/* committee section css */
/* ========================================
   COMMITTEE SECTION
   ======================================== */
.committee-section{
    padding:80px 20px;
    background:linear-gradient(135deg,#f5f8ff,#e8f0ff);
    position:relative;
    overflow:hidden;
    
}

/* Decorative background elements */
.committee-section::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(13,110,253,0.03), transparent 70%);
    border-radius:50%;
    pointer-events:none;
}

.committee-section::after{
    content:"";
    position:absolute;
    bottom:-200px;
    left:-200px;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(255,183,3,0.03), transparent 70%);
    border-radius:50%;
    pointer-events:none;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
    position:relative;
}

.section-title span{
    display:inline-block;
    background:linear-gradient(135deg,#e8f0ff,#d4e4ff);
    color:#0d6efd;
    padding:9px 22px;
    border-radius:30px;
    font-weight:800;
    font-size:14px;
    letter-spacing:0.5px;
    transition:all 0.3s ease;
}

.section-title span:hover{
    transform:scale(1.05);
    box-shadow:0 5px 20px rgba(13,110,253,0.15);
}

.section-title h2{
    font-size:42px;
    margin-top:18px;
    color:#07152f;
    font-weight:900;
    position:relative;
}

.section-title h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:linear-gradient(90deg,#0d6efd,#8b48ff);
    margin:15px auto 0;
    border-radius:2px;
    animation:lineExpand 1s ease forwards;
}

@keyframes lineExpand{
    from{
        width:0;
        opacity:0;
    }
    to{
        width:80px;
        opacity:1;
    }
}

.committee-block{
    max-width:1150px;
    margin:0 auto 55px;
    opacity:0;
    animation:fadeInUp 0.8s ease forwards;
}

.committee-block:nth-child(2){
    animation-delay:0.2s;
}
.committee-block:nth-child(3){
    animation-delay:0.4s;
}

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

.committee-heading{
    text-align:center;
    font-size:28px;
    color:#0d47a1;
    margin-bottom:30px;
    text-transform:uppercase;
    font-weight:800;
    letter-spacing:1px;
    position:relative;
    display:inline-block;
    width:100%;
}

.committee-heading::before{
    content:"";
    position:absolute;
    bottom:-8px;
    left:50%;
    transform:translateX(-50%);
    width:60px;
    height:3px;
    background:linear-gradient(90deg,#0d6efd,#8b48ff);
    border-radius:2px;
}

.committee-heading .heading-icon{
    margin-right:10px;
}

.committee-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.committee-card{
    background:white;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-bottom:5px solid #0d6efd;
    transition:all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position:relative;
    overflow:hidden;
    cursor:default;
}

/* Card gradient overlay */
.committee-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(135deg, rgba(13,110,253,0.03), rgba(139,72,255,0.03));
    opacity:0;
    transition:opacity 0.4s ease;
}

.committee-card::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0d6efd,#8b48ff,#ffb703);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 0.4s ease;
}

.committee-card:hover::after{
    transform:scaleX(1);
}

.committee-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 25px 60px rgba(13,110,253,.18);
}

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

.member-icon{
    width:75px;
    height:75px;
    background:linear-gradient(135deg,#0d6efd,#003b91);
    color:white;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:all 0.4s ease;
    position:relative;
}

/* Icon glow ring */
.member-icon::before{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#8b48ff);
    opacity:0;
    transition:all 0.4s ease;
    z-index:-1;
}

.committee-card:hover .member-icon{
    transform:rotate(10deg) scale(1.05);
    background:linear-gradient(135deg,#ffb703,#ff9f1c);
}

.committee-card:hover .member-icon::before{
    opacity:0.3;
    transform:scale(1.2);
}

.committee-card h4{
    font-size:21px;
    color:#07152f;
    margin-bottom:10px;
    font-weight:800;
    transition:color 0.3s ease;
}

.committee-card:hover h4{
    color:#0d6efd;
}

.committee-card .designation{
    color:#0d6efd;
    font-weight:600;
    font-size:14px;
    margin-bottom:5px;
}

.committee-card p{
    color:#666;
    line-height:1.6;
    font-size:14px;
    margin:0;
}

/* Card social links */
.card-social{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:15px;
    opacity:0;
    transform:translateY(10px);
    transition:all 0.4s ease;
}

.committee-card:hover .card-social{
    opacity:1;
    transform:translateY(0);
}

.card-social a{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#f0f4ff;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:all 0.3s ease;
    font-size:14px;
}

.card-social a:hover{
    background:#0d6efd;
    color:white;
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(13,110,253,0.3);
}

/* Card number badge */
.card-number{
    position:absolute;
    top:10px;
    right:15px;
    font-size:12px;
    font-weight:900;
    color:rgba(13,110,253,0.1);
    font-family:'Montserrat', sans-serif;
}

/* Responsive Design */
@media(max-width:992px){
    .page-banner-content h1{
        font-size:42px;
    }
    
    .section-title h2{
        font-size:36px;
    }
    
    .committee-grid{
        grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    }
}

@media(max-width:768px){
    .page-banner{
        min-height:280px;
        padding:120px 20px 60px;
        background-attachment:scroll;
    }
    
    .page-banner-content h1{
        font-size:34px;
        margin:20px 0 8px;
    }
    
    .page-banner-content p{
        font-size:16px;
    }
    
    .page-banner-content span{
        font-size:12px;
        padding:7px 18px;
    }
    
    .banner-shape:nth-child(1){
        width:150px;
        height:150px;
    }
    
    .banner-shape:nth-child(2){
        width:100px;
        height:100px;
    }
    
    .banner-shape:nth-child(3){
        display:none;
    }
    
    .committee-section{
        padding:60px 15px;
    }
    
    .section-title h2{
        font-size:30px;
    }
    
    .section-title h2::after{
        width:60px;
    }
    
    .committee-heading{
        font-size:22px;
    }
    
    .committee-grid{
        grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
        gap:20px;
    }
    
    .committee-card{
        padding:25px 20px;
    }
    
    .committee-card h4{
        font-size:18px;
    }
}

@media(max-width:576px){
    .page-banner{
        min-height:240px;
        padding:110px 15px 50px;
    }
    
    .page-banner-content h1{
        font-size:28px;
    }
    
    .page-banner-content p{
        font-size:14px;
    }
    
    .breadcrumb{
        font-size:12px;
        flex-wrap:wrap;
    }
    
    .committee-section{
        padding:50px 12px;
    }
    
    .section-title{
        margin-bottom:35px;
    }
    
    .section-title h2{
        font-size:26px;
    }
    
    .section-title span{
        font-size:12px;
        padding:7px 16px;
    }
    
    .committee-heading{
        font-size:20px;
        margin-bottom:20px;
    }
    
    .committee-grid{
        grid-template-columns:1fr;
        gap:18px;
    }
    
    .committee-card{
        padding:20px 15px;
        border-radius:15px;
    }
    
    .member-icon{
        width:60px;
        height:60px;
        font-size:24px;
    }
    
    .committee-card h4{
        font-size:17px;
    }
    
    .committee-card .designation{
        font-size:13px;
    }
    
    .committee-card p{
        font-size:13px;
    }
    
    .card-social a{
        width:28px;
        height:28px;
        font-size:12px;
    }
}

/* Reduced motion preferences */
@media(prefers-reduced-motion:reduce){
    .page-banner::before,
    .banner-shape,
    .page-banner-content span,
    .page-banner-content h1,
    .section-title h2::after,
    .committee-card,
    .member-icon{
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:0.01ms !important;
    }
    
    .committee-card:hover{
        transform:translateY(-5px);
    }
}

/* Dark mode support */
@media(prefers-color-scheme:dark){
    .committee-section{
        background:linear-gradient(135deg,#0a0e1a,#141b2d);
    }
    
    .committee-card{
        background:#1a1a2e;
        border-bottom-color:#1a3a6a;
    }
    
    .committee-card h4{
        color:#e8e8ff;
    }
    
    .committee-card p{
        color:#aab;
    }
    
    .committee-card .designation{
        color:#6a9aff;
    }
    
    .section-title span{
        background:#1a2a4a;
        color:#6a9aff;
    }
    
    .section-title h2{
        color:#e8e8ff;
    }
    
    .committee-heading{
        color:#6a9aff;
    }
    
    .member-icon{
        background:linear-gradient(135deg,#1a3a6a,#003b91);
    }
    
    .card-social a{
        background:#1a2a4a;
        color:#6a9aff;
    }
    
    .card-social a:hover{
        background:#0d6efd;
        color:white;
    }
}

/* paper submission css */

/* ===========================
   HERO SECTION - WITH ANIMATIONS
=========================== */

.paper-hero{
    min-height:330px;
    padding:120px 20px 70px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;

    /* Background Image + Overlay */
    background:
        linear-gradient(rgba(18,33,84,.92), rgba(52,46,112,.90), rgba(80,62,90,.90)),
        url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* Grid Pattern - Animated */
.paper-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size:50px 50px;
    opacity:.6;
    pointer-events:none;
    animation:gridMove 20s linear infinite;
}

@keyframes gridMove{
    0%{
        transform:translate(0,0);
    }
    100%{
        transform:translate(50px,50px);
    }
}

/* Top Glow - Animated */
.paper-hero::after{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    left:50%;
    top:-320px;
    transform:translateX(-50%);
    background:radial-gradient(circle,
        rgba(108,92,231,.28),
        transparent 70%);
    pointer-events:none;
    animation:glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse{
    0%{
        transform:translateX(-50%) scale(1);
        opacity:0.6;
    }
    100%{
        transform:translateX(-50%) scale(1.3);
        opacity:1;
    }
}

/* Floating Particles */
.particles-container{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    overflow:hidden;
}

.particle{
    position:absolute;
    width:4px;
    height:4px;
    background:rgba(255,255,255,0.3);
    border-radius:50%;
    animation:particleFloat linear infinite;
}

.particle:nth-child(1){
    left:10%;
    animation-duration:12s;
    animation-delay:0s;
}
.particle:nth-child(2){
    left:20%;
    animation-duration:15s;
    animation-delay:2s;
    width:6px;
    height:6px;
}
.particle:nth-child(3){
    left:35%;
    animation-duration:10s;
    animation-delay:4s;
}
.particle:nth-child(4){
    left:50%;
    animation-duration:14s;
    animation-delay:1s;
    width:5px;
    height:5px;
}
.particle:nth-child(5){
    left:65%;
    animation-duration:11s;
    animation-delay:3s;
}
.particle:nth-child(6){
    left:75%;
    animation-duration:13s;
    animation-delay:5s;
    width:6px;
    height:6px;
}
.particle:nth-child(7){
    left:85%;
    animation-duration:16s;
    animation-delay:2.5s;
}
.particle:nth-child(8){
    left:95%;
    animation-duration:12s;
    animation-delay:4.5s;
    width:5px;
    height:5px;
}

@keyframes particleFloat{
    0%{
        transform:translateY(100vh) rotate(0deg) scale(0);
        opacity:0;
    }
    10%{
        opacity:1;
    }
    90%{
        opacity:1;
    }
    100%{
        transform:translateY(-10vh) rotate(720deg) scale(1);
        opacity:0;
    }
}

/* Floating Shapes - New */
.floating-shapes{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    overflow:hidden;
}

.floating-shape{
    position:absolute;
    border-radius:50%;
    opacity:0.08;
    animation:shapeFloat 15s ease-in-out infinite;
}

.floating-shape:nth-child(1){
    width:200px;
    height:200px;
    background:linear-gradient(135deg, #8b48ff, #ffb703);
    top:-60px;
    right:-40px;
    animation-delay:0s;
}

.floating-shape:nth-child(2){
    width:150px;
    height:150px;
    background:linear-gradient(135deg, #ffb703, #ff6b6b);
    bottom:-40px;
    left:-30px;
    animation-delay:3s;
}

.floating-shape:nth-child(3){
    width:100px;
    height:100px;
    background:linear-gradient(135deg, #0d6efd, #8b48ff);
    top:50%;
    left:10%;
    animation-delay:6s;
}

.floating-shape:nth-child(4){
    width:80px;
    height:80px;
    background:linear-gradient(135deg, #ff6b6b, #ffb703);
    bottom:30%;
    right:8%;
    animation-delay:2s;
}

@keyframes shapeFloat{
    0%,100%{
        transform:translate(0,0) rotate(0deg) scale(1);
    }
    25%{
        transform:translate(30px,-20px) rotate(45deg) scale(1.1);
    }
    50%{
        transform:translate(-20px,30px) rotate(90deg) scale(0.9);
    }
    75%{
        transform:translate(20px,20px) rotate(135deg) scale(1.05);
    }
}

.paper-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    animation:contentReveal 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes contentReveal{
    from{
        opacity:0;
        transform:scale(0.9) translateY(40px);
    }
    to{
        opacity:1;
        transform:scale(1) translateY(0);
    }
}

/* Conference Badge - Enhanced Animation */
.paper-hero-content span{
    display:inline-block;
    padding:10px 28px;
    border-radius:12px;
    margin-bottom:28px;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#ffb703;
    background:rgba(255,183,3,.08);
    border:1px solid rgba(255,183,3,.25);
    box-shadow:0 0 25px rgba(255,183,3,.15);
    animation:badgeGlow 3s ease-in-out infinite, badgeReveal 0.8s ease forwards 0.3s;
    opacity:0;
}

@keyframes badgeReveal{
    to{
        opacity:1;
    }
}

@keyframes badgeGlow{
    0%,100%{
        box-shadow:0 0 25px rgba(255,183,3,.15);
        transform:scale(1);
    }
    50%{
        box-shadow:0 0 50px rgba(255,183,3,.3), 0 0 100px rgba(255,183,3,.08);
        transform:scale(1.02);
    }
}

/* Main Heading - Enhanced Animation */
.paper-hero-content h1{
    font-size:62px;
    font-weight:800;
    color:#ffffff;
    margin:0;
    line-height:1.15;
    animation:textReveal 1s ease forwards 0.5s;
    opacity:0;
    transform:translateY(20px);
}

@keyframes textReveal{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Gradient Underline - Enhanced Animation */
.paper-hero-content h1::after{
    content:"";
    display:block;
    width:0;
    height:4px;
    margin:18px auto;
    border-radius:20px;
    background:linear-gradient(90deg,#ffb703,#8b48ff);
    animation:underlineExpand 1.5s ease forwards 0.8s;
}

@keyframes underlineExpand{
    0%{
        width:0;
        opacity:0;
    }
    100%{
        width:62%;
        opacity:1;
    }
}

/* Subtitle - Enhanced Animation */
.paper-hero-content p{
    font-size:21px;
    color:rgba(255,255,255,.82);
    max-width:700px;
    margin:0 auto;
    line-height:1.7;
    animation:textReveal 1s ease forwards 0.7s;
    opacity:0;
    transform:translateY(20px);
}

/* ===========================
   SUBMIT SECTION
=========================== */

.paper-submit-section{
    padding:80px 20px 100px;
    background:
        radial-gradient(circle at left top,#eaf3ff,transparent 35%),
        radial-gradient(circle at right bottom,#fff0dc,transparent 35%),
        #ffffff;
}

.submit-main-card{
    max-width:620px;
    margin:0 auto 65px;
    background:linear-gradient(135deg,#07152f,#0d47a1);
    color:white;
    text-align:center;
    padding:48px 35px;
    border-radius:26px;
    position:relative;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(13,71,161,.28);
}

.submit-main-card::before{
    content:"";
    position:absolute;
    width:170px;
    height:170px;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    right:-45px;
    top:-45px;
}

.submit-icon{
    width:82px;
    height:82px;
    margin:0 auto 22px;
    border-radius:22px;
    background:linear-gradient(135deg,#ff9f1c,#ff6b00);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    box-shadow:0 15px 35px rgba(255,159,28,.35);
}

.submit-main-card h2{
    font-size:30px;
    margin-bottom:15px;
}

.submit-main-card p{
    max-width:480px;
    margin:0 auto 25px;
    line-height:1.7;
    color:#e8efff;
}

.submit-main-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ff9f1c;
    color:white;
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:800;
    transition:.35s;
}

.submit-main-btn:hover{
    background:white;
    color:#0d47a1;
    transform:translateY(-5px);
}

.template-title,
.guideline-title{
    text-align:center;
    margin-bottom:30px;
}

.template-title h2,
.guideline-title h2{
    font-size:32px;
    color:#07152f;
}

.template-title p{
    color:#666;
    margin-top:8px;
}

.download-grid{
    max-width:560px;
    margin:0 auto 70px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.download-card{
    background:white;
    padding:32px 20px;
    text-align:center;
    border-radius:22px;
    text-decoration:none;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border:1px solid #edf2ff;
    transition:.35s;
}

.download-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(13,110,253,.18);
}

.download-icon{
    width:68px;
    height:68px;
    margin:0 auto 18px;
    border-radius:18px;
    background:#eef5ff;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.download-card h3{
    color:#07152f;
    font-size:20px;
    margin-bottom:8px;
}

.download-card p{
    color:#666;
    font-size:14px;
}

.guideline-grid{
    max-width:1050px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.guideline-card{
    background:white;
    border-radius:24px;
    padding:35px 28px;
    text-align:center;
    position:relative;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.35s;
}

.guideline-card::before{
    content:"";
    position:absolute;
    right:-35px;
    top:-35px;
    width:100px;
    height:100px;
    background:#eaf3ff;
    border-radius:50%;
}

.guideline-card:hover{
    transform:translateY(-8px);
}

.guideline-card span{
    position:absolute;
    top:18px;
    left:20px;
    font-size:38px;
    font-weight:900;
    color:rgba(13,110,253,.12);
}

.guideline-card i{
    font-size:42px;
    color:#ff9f1c;
    margin-bottom:22px;
}

.guideline-card h3{
    color:#07152f;
    margin-bottom:12px;
    font-size:21px;
}

.guideline-card p{
    color:#555;
    line-height:1.7;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:800px){

    .download-grid,
    .guideline-grid{
        grid-template-columns:1fr;
    }

    .paper-hero{
        min-height:260px;
        padding:100px 20px 50px;
    }

    .paper-hero-content h1{
        font-size:42px;
    }

    .paper-hero-content h1::after{
        width:80%;
    }

    .paper-hero-content p{
        font-size:17px;
    }

    .paper-hero-content span{
        font-size:13px;
        padding:10px 22px;
    }

    .submit-main-card{
        padding:38px 25px;
    }
    
    .particle{
        display:none;
    }
    
    .floating-shape:nth-child(3),
    .floating-shape:nth-child(4){
        display:none;
    }
}

@media(max-width:576px){

    .paper-hero{
        min-height:220px;
        padding:90px 15px 40px;
        background-attachment:scroll;
    }

    .paper-hero-content h1{
        font-size:32px;
    }

    .paper-hero-content h1::after{
        width:60%;
        height:3px;
    }
    
    @keyframes underlineExpand{
        0%{
            width:0;
            opacity:0;
        }
        100%{
            width:60%;
            opacity:1;
        }
    }

    .paper-hero-content p{
        font-size:15px;
    }

    .paper-hero-content span{
        font-size:12px;
        padding:8px 18px;
        margin-bottom:20px;
    }
    
    .paper-hero::after{
        width:400px;
        height:400px;
        top:-200px;
    }
    
    .floating-shape:nth-child(1){
        width:100px;
        height:100px;
        top:-30px;
        right:-20px;
    }
    
    .floating-shape:nth-child(2){
        width:80px;
        height:80px;
        bottom:-20px;
        left:-20px;
    }
}

/* Reduced motion preferences */
@media(prefers-reduced-motion:reduce){
    .paper-hero::before,
    .paper-hero::after,
    .particle,
    .floating-shape,
    .paper-hero-content,
    .paper-hero-content span,
    .paper-hero-content h1,
    .paper-hero-content h1::after,
    .paper-hero-content p{
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:0.01ms !important;
    }
    
    .paper-hero-content{
        opacity:1 !important;
        transform:none !important;
    }
    
    .paper-hero-content span{
        opacity:1 !important;
    }
    
    .paper-hero-content h1{
        opacity:1 !important;
        transform:none !important;
    }
    
    .paper-hero-content h1::after{
        width:62% !important;
        opacity:1 !important;
    }
    
    .paper-hero-content p{
        opacity:1 !important;
        transform:none !important;
    }
}
/* Scop of paper Section css */
/* ===========================
   SCOPE HERO - WITH ANIMATIONS
=========================== */

.scope-hero{
    position:relative;
    overflow:hidden;
    min-height:360px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:140px 20px 90px;
    background:linear-gradient(135deg,#1c2454 0%,#2f2a65 45%,#43304f 100%);
    color:#fff;
     /* Background Image + Overlay */
    background:
        linear-gradient(rgba(18,33,84,.92), rgba(52,46,112,.90), rgba(80,62,90,.90)),
        url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}


/* Animated Grid Pattern */
.scope-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
    background-size:48px 48px;
    animation:gridMove 20s linear infinite;
}

@keyframes gridMove{
    0%{
        transform:translate(0,0);
    }
    100%{
        transform:translate(48px,48px);
    }
}

/* Animated Glow */
.scope-hero::after{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle,rgba(102,126,234,.28),transparent 70%);
    animation:glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse{
    0%{
        transform:translate(-50%,-50%) scale(1);
        opacity:0.6;
    }
    100%{
        transform:translate(-50%,-50%) scale(1.3);
        opacity:1;
    }
}

/* Floating Particles */
.scope-particles{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    overflow:hidden;
}

.scope-particle{
    position:absolute;
    width:4px;
    height:4px;
    background:rgba(255,255,255,0.2);
    border-radius:50%;
    animation:particleFloat linear infinite;
}

.scope-particle:nth-child(1){
    left:10%;
    animation-duration:12s;
    animation-delay:0s;
}
.scope-particle:nth-child(2){
    left:25%;
    animation-duration:15s;
    animation-delay:2s;
    width:6px;
    height:6px;
}
.scope-particle:nth-child(3){
    left:40%;
    animation-duration:10s;
    animation-delay:4s;
}
.scope-particle:nth-child(4){
    left:55%;
    animation-duration:14s;
    animation-delay:1s;
    width:5px;
    height:5px;
}
.scope-particle:nth-child(5){
    left:70%;
    animation-duration:11s;
    animation-delay:3s;
}
.scope-particle:nth-child(6){
    left:82%;
    animation-duration:13s;
    animation-delay:5s;
    width:6px;
    height:6px;
}
.scope-particle:nth-child(7){
    left:92%;
    animation-duration:16s;
    animation-delay:2.5s;
}

@keyframes particleFloat{
    0%{
        transform:translateY(100vh) rotate(0deg) scale(0);
        opacity:0;
    }
    10%{
        opacity:1;
    }
    90%{
        opacity:1;
    }
    100%{
        transform:translateY(-10vh) rotate(720deg) scale(1);
        opacity:0;
    }
}

/* Floating Shapes */
.scope-shapes{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    overflow:hidden;
}

.scope-shape{
    position:absolute;
    border-radius:50%;
    opacity:0.06;
    animation:shapeFloat 15s ease-in-out infinite;
}

.scope-shape:nth-child(1){
    width:200px;
    height:200px;
    background:linear-gradient(135deg, #ffc107, #ff9800);
    top:-60px;
    right:-40px;
    animation-delay:0s;
}

.scope-shape:nth-child(2){
    width:160px;
    height:160px;
    background:linear-gradient(135deg, #9c27b0, #7b61ff);
    bottom:-50px;
    left:-30px;
    animation-delay:3s;
}

.scope-shape:nth-child(3){
    width:120px;
    height:120px;
    background:linear-gradient(135deg, #ff6b6b, #ffc107);
    top:50%;
    left:8%;
    animation-delay:6s;
}

.scope-shape:nth-child(4){
    width:90px;
    height:90px;
    background:linear-gradient(135deg, #7b61ff, #0d6efd);
    bottom:25%;
    right:10%;
    animation-delay:2s;
}

@keyframes shapeFloat{
    0%,100%{
        transform:translate(0,0) rotate(0deg) scale(1);
    }
    25%{
        transform:translate(30px,-25px) rotate(45deg) scale(1.1);
    }
    50%{
        transform:translate(-20px,30px) rotate(90deg) scale(0.9);
    }
    75%{
        transform:translate(20px,20px) rotate(135deg) scale(1.05);
    }
}

/* Scope Hero Content */
.scope-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:900px;
    animation:contentReveal 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes contentReveal{
    from{
        opacity:0;
        transform:scale(0.9) translateY(40px);
    }
    to{
        opacity:1;
        transform:scale(1) translateY(0);
    }
}

/* Badge with Animation */
.scope-hero-content span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 28px;
    border-radius:40px;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    color:#ffc107;
    animation:badgePulse 3s ease-in-out infinite;
    position:relative;
}

@keyframes badgePulse{
    0%,100%{
        box-shadow:0 0 25px rgba(255,193,7,0.1);
        transform:scale(1);
    }
    50%{
        box-shadow:0 0 50px rgba(255,193,7,0.2);
        transform:scale(1.02);
    }
}

/* Main Heading */
.scope-hero-content h1{
    font-size:70px;
    margin:30px 0 20px;
    color:#fff;
    animation:textReveal 1s ease forwards 0.4s;
    opacity:0;
    transform:translateY(20px);
}

@keyframes textReveal{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Animated Underline */
.scope-hero-content h1::after{
    content:"";
    display:block;
    margin:20px auto 0;
    width:0;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg,#ffc107,#ff9800,#9c27b0,#7b61ff);
    animation:underlineExpand 1.5s ease forwards 0.6s;
}

@keyframes underlineExpand{
    0%{
        width:0;
        opacity:0;
    }
    100%{
        width:220px;
        opacity:1;
    }
}

/* Description */
.scope-hero-content p{
    font-size:21px;
    line-height:1.7;
    color:rgba(255,255,255,.82);
    animation:textReveal 1s ease forwards 0.6s;
    opacity:0;
    transform:translateY(20px);
}

/* ===========================
   SCOPE SECTION - WITH ANIMATIONS
=========================== */

.scope-section{
    padding:90px 20px;
    background:
        radial-gradient(circle at left top,#eaf3ff,transparent 35%),
        radial-gradient(circle at right bottom,#fff0dc,transparent 35%),
        #ffffff;
    position:relative;
    overflow:hidden;
}

/* Decorative Background Animation */
.scope-section::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-150px;
    width:500px;
    height:500px;
    background:radial-gradient(circle, rgba(102,126,234,0.04), transparent 70%);
    border-radius:50%;
    pointer-events:none;
    animation:bgFloat 15s ease-in-out infinite;
}

.scope-section::after{
    content:"";
    position:absolute;
    bottom:-150px;
    left:-100px;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(255,193,7,0.04), transparent 70%);
    border-radius:50%;
    pointer-events:none;
    animation:bgFloat 18s ease-in-out infinite reverse;
}

@keyframes bgFloat{
    0%,100%{
        transform:translate(0,0) scale(1);
    }
    33%{
        transform:translate(30px,-20px) scale(1.1);
    }
    66%{
        transform:translate(-20px,30px) scale(0.9);
    }
}

.scope-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
    animation:fadeInUp 0.8s ease;
}

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

.scope-title span{
    display:inline-block;
    background:linear-gradient(135deg, #eaf3ff, #dce8ff);
    color:#0d6efd;
    padding:9px 24px;
    border-radius:30px;
    font-weight:800;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:all 0.3s ease;
}

.scope-title span:hover{
    transform:scale(1.05);
    box-shadow:0 5px 20px rgba(13,110,253,0.15);
}

.scope-title h2{
    font-size:46px;
    margin:18px 0 12px;
    color:#07152f;
    font-weight:900;
}

.scope-title h2 .highlight{
    background:linear-gradient(135deg, #ffc107, #ff9800);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

/* Animated Dots */
.scope-title .dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:12px;
}

.scope-title .dots span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:linear-gradient(135deg, #0d6efd, #7b61ff);
    animation:dotBounce 1.5s ease-in-out infinite;
    display:inline-block;
    padding:0;
}

.scope-title .dots span:nth-child(2){
    animation-delay:0.2s;
}
.scope-title .dots span:nth-child(3){
    animation-delay:0.4s;
}

@keyframes dotBounce{
    0%,100%{
        transform:scale(1);
        opacity:0.3;
    }
    50%{
        transform:scale(1.5);
        opacity:1;
    }
}

.scope-title p{
    color:#666;
    font-size:17px;
    line-height:1.7;
}

/* Research Area Grid */
.research-area-grid{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:32px;
}

.research-area-card{
    background:white;
    border-radius:28px;
    padding:38px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
    border:1px solid #edf2ff;
    transition:all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity:0;
    animation:cardReveal 0.8s ease forwards;
}

.research-area-card:nth-child(1){
    animation-delay:0.1s;
}
.research-area-card:nth-child(2){
    animation-delay:0.2s;
}
.research-area-card:nth-child(3){
    animation-delay:0.3s;
}
.research-area-card:nth-child(4){
    animation-delay:0.4s;
}
.research-area-card:nth-child(5){
    animation-delay:0.5s;
}
.research-area-card:nth-child(6){
    animation-delay:0.6s;
}

@keyframes cardReveal{
    from{
        opacity:0;
        transform:translateY(30px) scale(0.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

/* Card Top Border - Animated */
.research-area-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:7px;
    background:linear-gradient(90deg,#0d6efd,#7b61ff,#ff9f1c);
    background-size:200% 100%;
    animation:borderGradient 4s ease-in-out infinite;
}

@keyframes borderGradient{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

/* Corner Shape */
.research-area-card::after{
    content:"";
    position:absolute;
    width:170px;
    height:170px;
    right:-60px;
    top:-60px;
    background:#eaf3ff;
    border-radius:50%;
    z-index:0;
    transition:all 0.5s ease;
}

.research-area-card:hover::after{
    width:200px;
    height:200px;
    background:linear-gradient(135deg, #eaf3ff, #dce8ff);
    right:-80px;
    top:-80px;
}

.research-area-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 35px 80px rgba(13,110,253,.18);
    border-color:rgba(13,110,253,0.1);
}

.research-card-top{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:28px;
    position:relative;
    z-index:2;
}

.research-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    background:linear-gradient(135deg,#0d6efd,#003b91);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    box-shadow:0 14px 35px rgba(13,110,253,.28);
    transition:all 0.5s ease;
    position:relative;
}

/* Icon Glow */
.research-icon::before{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:22px;
    background:linear-gradient(135deg,#0d6efd,#7b61ff);
    opacity:0;
    transition:all 0.5s ease;
    z-index:-1;
    filter:blur(8px);
}

.research-area-card:hover .research-icon{
    transform:rotate(10deg) scale(1.05);
}

.research-area-card:hover .research-icon::before{
    opacity:0.3;
    transform:scale(1.2);
}

/* Icon Variants */
.research-area-card:nth-child(1) .research-icon{
    background:linear-gradient(135deg,#0d6efd,#003b91);
}
.research-area-card:nth-child(2) .research-icon{
    background:linear-gradient(135deg,#7b61ff,#5a3db9);
}
.research-area-card:nth-child(3) .research-icon{
    background:linear-gradient(135deg,#ffc107,#ff9800);
}
.research-area-card:nth-child(4) .research-icon{
    background:linear-gradient(135deg,#ff6b6b,#ee5a24);
}
.research-area-card:nth-child(5) .research-icon{
    background:linear-gradient(135deg,#20c997,#0ca678);
}
.research-area-card:nth-child(6) .research-icon{
    background:linear-gradient(135deg,#e84393,#a0296e);
}

.research-card-top h3{
    font-size:28px;
    color:#07152f;
    margin:0;
    transition:color 0.3s ease;
}

.research-area-card:hover .research-card-top h3{
    background:linear-gradient(135deg, #0d6efd, #7b61ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.research-area-card ul{
    list-style:none;
    padding:0;
    margin:0;
    position:relative;
    z-index:2;
}

.research-area-card ul li{
    display:flex;
    gap:13px;
    align-items:flex-start;
    color:#1b2b4a;
    font-size:16px;
    line-height:1.7;
    margin-bottom:14px;
    font-weight:600;
    transition:all 0.3s ease;
    padding:6px 10px;
    border-radius:8px;
}

.research-area-card ul li:hover{
    background:rgba(13,110,253,0.04);
    transform:translateX(5px);
}

.research-area-card ul li i{
    color:#ff9f1c;
    margin-top:5px;
    transition:transform 0.3s ease;
}

.research-area-card ul li:hover i{
    transform:scale(1.2) rotate(5deg);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){
    .research-area-grid{
        grid-template-columns:1fr;
    }

    .scope-hero-content h1{
        font-size:48px;
    }

    .scope-title h2{
        font-size:34px;
    }
    
    .scope-hero-content h1::after{
        width:160px;
    }
    
    @keyframes underlineExpand{
        0%{
            width:0;
            opacity:0;
        }
        100%{
            width:160px;
            opacity:1;
        }
    }
    
    .scope-particle{
        display:none;
    }
    
    .scope-shape:nth-child(3),
    .scope-shape:nth-child(4){
        display:none;
    }
}

@media(max-width:768px){
    .scope-hero{
        min-height:300px;
        padding:120px 20px 70px;
    }
    
    .scope-hero-content h1{
        font-size:40px;
    }
    
    .scope-hero-content p{
        font-size:18px;
    }
    
    .scope-hero-content span{
        font-size:12px;
        padding:10px 22px;
    }
    
    .scope-title h2{
        font-size:30px;
    }
    
    .research-area-card{
        padding:30px 25px;
    }
    
    .research-card-top h3{
        font-size:24px;
    }
}

@media(max-width:600px){
    .scope-hero{
        min-height:260px;
        padding:110px 15px 60px;
    }

    .scope-hero-content h1{
        font-size:32px;
        margin:20px 0 15px;
    }

    .scope-hero-content h1::after{
        width:120px;
        height:3px;
        margin:15px auto 0;
    }
    
    @keyframes underlineExpand{
        0%{
            width:0;
            opacity:0;
        }
        100%{
            width:120px;
            opacity:1;
        }
    }

    .scope-hero-content p{
        font-size:15px;
    }
    
    .scope-hero-content span{
        font-size:11px;
        padding:8px 18px;
    }
    
    .scope-hero::after{
        width:400px;
        height:400px;
    }
    
    .scope-shape:nth-child(1){
        width:100px;
        height:100px;
        top:-30px;
        right:-20px;
    }
    
    .scope-shape:nth-child(2){
        width:80px;
        height:80px;
        bottom:-20px;
        left:-20px;
    }

    .research-area-card{
        padding:25px 18px;
        border-radius:20px;
    }

    .research-card-top{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

    .research-card-top h3{
        font-size:22px;
    }
    
    .research-icon{
        width:65px;
        height:65px;
        font-size:26px;
        border-radius:18px;
    }
    
    .research-area-card ul li{
        font-size:14px;
        padding:4px 8px;
    }
    
    .scope-title h2{
        font-size:26px;
    }
    
    .scope-title p{
        font-size:15px;
    }
    
    .scope-title .dots span{
        width:6px;
        height:6px;
    }
    
    .scope-section{
        padding:60px 12px 70px;
    }
}

/* Reduced motion preferences */
@media(prefers-reduced-motion:reduce){
    .scope-hero::before,
    .scope-hero::after,
    .scope-particle,
    .scope-shape,
    .scope-hero-content,
    .scope-hero-content span,
    .scope-hero-content h1,
    .scope-hero-content h1::after,
    .scope-hero-content p,
    .scope-section::before,
    .scope-section::after,
    .scope-title .dots span,
    .research-area-card,
    .research-area-card::before,
    .research-icon,
    .research-area-card ul li{
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:0.01ms !important;
    }
    
    .scope-hero-content{
        opacity:1 !important;
        transform:none !important;
    }
    
    .scope-hero-content h1{
        opacity:1 !important;
        transform:none !important;
    }
    
    .scope-hero-content h1::after{
        width:220px !important;
        opacity:1 !important;
    }
    
    .scope-hero-content p{
        opacity:1 !important;
        transform:none !important;
    }
    
    .research-area-card{
        opacity:1 !important;
        transform:none !important;
    }
    
    .research-area-card:hover{
        transform:translateY(-5px) !important;
    }
}
/* payment page */

/*==================================================
  PAYMENT HERO BANNER - ENHANCED
==================================================*/

.payment-hero {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    padding: 140px 20px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f1a3a 0%, #1a2f6b 40%, #2a1a5e 70%, #1a0a3a 100%);
    color: #fff;
    isolation: isolate;
     /* Background Image + Overlay */
    background:
        linear-gradient(rgba(18,33,84,.92), rgba(52,46,112,.90), rgba(80,62,90,.90)),
        url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* Animated gradient overlay */
.payment-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 152, 0, 0.08) 0%, transparent 40%);
    animation: gradientShift 12s ease-in-out infinite alternate;
    z-index: 1;
}

/* Enhanced grid with parallax effect */
.payment-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Glow orb with improved animation */
.payment-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.2) 0%, 
        rgba(139, 92, 246, 0.15) 30%, 
        rgba(79, 70, 229, 0.1) 60%, 
        transparent 80%
    );
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    filter: blur(20px);
}

/* Floating particles with enhanced animation */
.payment-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: floatParticle var(--duration, 12s) ease-in-out infinite;
    z-index: 1;
}

.payment-particle:nth-child(1) {
    width: 150px;
    height: 150px;
    left: 5%;
    top: 15%;
    --duration: 14s;
    animation-delay: -2s;
}

.payment-particle:nth-child(2) {
    width: 100px;
    height: 100px;
    right: 8%;
    top: 10%;
    --duration: 11s;
    animation-delay: -4s;
}

.payment-particle:nth-child(3) {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: 15%;
    --duration: 16s;
    animation-delay: -6s;
}

.payment-particle:nth-child(4) {
    width: 130px;
    height: 130px;
    right: 12%;
    bottom: -10px;
    --duration: 13s;
    animation-delay: -3s;
}

.payment-particle:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 40%;
    top: 5%;
    --duration: 10s;
    animation-delay: -1s;
}

.payment-particle:nth-child(6) {
    width: 90px;
    height: 90px;
    right: 25%;
    bottom: 30%;
    --duration: 15s;
    animation-delay: -5s;
}

.payment-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 950px;
    animation: contentFadeIn 1.2s ease-out;
}

.payment-hero-content span {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffd54f;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    animation: spanPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.payment-hero-content span:hover {
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.payment-hero-content h1 {
    font-size: 76px;
    margin: 32px 0 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -3px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    animation: titleReveal 1s ease-out;
}

.payment-hero-content h1 .highlight {
    background: linear-gradient(135deg, #ffd54f, #ff9800, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease-in-out infinite;
}

.payment-hero-content h1::after {
    content: "";
    display: block;
    width: 260px;
    height: 5px;
    margin: 20px auto;
    border-radius: 20px;
    background: linear-gradient(90deg, #ffd54f, #ff9800, #8b5cf6, #4f46e5, #8b5cf6, #ff9800, #ffd54f);
    background-size: 200% 100%;
    animation: shimmerLine 4s ease-in-out infinite;
}

.payment-hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    max-width: 780px;
    margin: auto;
    animation: fadeUp 1.2s ease-out 0.3s both;
    font-weight: 300;
}

/*==================================================
  PAYMENT PAGE BODY - ENHANCED
==================================================*/

.payment-page {
    padding: 100px 20px;
    background:
        radial-gradient(circle at 0% 20%, rgba(79, 70, 229, 0.04), transparent 40%),
        radial-gradient(circle at 100% 80%, rgba(255, 152, 0, 0.04), transparent 40%),
        #f8faff;
    position: relative;
}

.payment-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
    align-items: start;
}

.payment-left h2,
.payment-right h2 {
    font-size: 40px;
    color: #0a1f4a;
    margin-bottom: 18px;
    font-weight: 800;
}

.payment-left h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff8c00, #ffd54f);
    margin-top: 14px;
    border-radius: 20px;
    animation: widthExpand 1.2s ease-out;
}

.payment-left > p,
.payment-right > p {
    color: #5a6b85;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
}
.fee-table thead th small{
    display:block;
    margin-top:8px;
    color:#FFD54F;
    font-size:15px;
    font-weight:800;
}

/*==================================================
  BANK + FEE CARDS - ENHANCED
==================================================*/

.payment-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.03), rgba(255, 95, 0, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.info-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 80px rgba(13, 110, 253, 0.12);
    border-color: rgba(99, 91, 255, 0.2);
}

.info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s ease;
}

.info-icon.blue {
    background: linear-gradient(135deg, #7c73ff, #4f46e5);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.3);
}

.info-icon.orange {
    background: linear-gradient(135deg, #ffb347, #ff6b00);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
}

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

.info-card h3 {
    color: #07152f;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card p {
    color: #667085;
    line-height: 1.7;
    margin-bottom: 22px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid #eef3fc;
    transition: all 0.3s ease;
}

.detail-row:hover {
    background: rgba(99, 91, 255, 0.02);
    padding-left: 8px;
    border-radius: 8px;
}

.detail-row span {
    color: #5a6b85;
    font-weight: 500;
}

.detail-row b {
    color: #0a1f4a;
    text-align: right;
    font-weight: 700;
}

/*==================================================
  FEE TABLE - ENHANCED
==================================================*/

.fee-table {
    width: 100%;
    /* border-collapse: separate; */
    border-spacing: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border:2px solid #274f84;
}

.fee-table th {
    background: #293681;
    color: #fff;
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border:1px solid #4b73a8;
    text-align: center;
}

.fee-table th:first-child {
    border-radius: 16px 0 0 0;
}

.fee-table th:last-child {
    border-radius: 0 16px 0 0;
}

.fee-table td {
    padding: 18px 20px;
    border: 1px solid #eef3fc;
    color: #0a1f4a;
    background: #fff;
    transition: all 0.3s ease;
    border:1px solid #c7d8ef;
}

.fee-table tr:hover td {
    background: #f8faff;
    transform: scale(1.002);
}

.fee-table td b {
    color: #0a1f4a;
    font-weight: 700;
}

.fee-table tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.fee-table tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}
/*=====================================
FEE TABLE RESPONSIVE
=====================================*/

@media(max-width:1200px){
    .fee-table-wrap{
        padding:0 15px;
    }

    .fee-table{
        min-width:950px;
    }
}

@media(max-width:992px){
    .fee-table-wrap{
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
    }

    .fee-table{
        min-width:900px;
    }

    .fee-table thead th{
        font-size:15px;
        padding:16px 12px;
    }

    .fee-table thead th small{
        font-size:12px;
    }

    .fee-table tbody td{
        font-size:15px;
        padding:15px 12px;
    }
}

@media(max-width:768px){
    .fee-section{
        padding:60px 12px;
    }

    .section-heading{
        font-size:30px;
        line-height:1.3;
    }

    .fee-table-wrap{
        margin-top:25px;
        border-radius:16px;
        overflow-x:auto;
    }

    .fee-table{
        min-width:850px;
    }

    .fee-table thead th{
        font-size:14px;
        padding:14px 10px;
        white-space:nowrap;
    }

    .fee-table thead th small{
        font-size:11px;
        margin-top:5px;
    }

    .fee-table tbody td{
        font-size:14px;
        padding:14px 10px;
    }

    .fee-table tbody td:first-child{
        width:280px;
        white-space:normal;
    }
}

@media(max-width:480px){
    .fee-section{
        padding:50px 10px;
    }

    .section-heading{
        font-size:26px;
    }

    .fee-table{
        min-width:780px;
    }

    .fee-table thead th{
        font-size:13px;
        padding:12px 8px;
    }

    .fee-table tbody td{
        font-size:13px;
        padding:12px 8px;
    }

    .fee-table tbody td:first-child{
        width:240px;
    }
}

/*==================================================
  QR PAYMENT SECTION - ENHANCED
==================================================*/

.payment-right {
    text-align: center;
}

.qr-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.qr-card::after {
    content: "🔒 Secure Payment";
    position: absolute;
    bottom: -12px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.qr-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 35px 85px rgba(13, 110, 253, 0.12);
    border-color: rgba(99, 91, 255, 0.15);
}

.qr-card img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.1));
}

.qr-card:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.15));
}

/*==================================================
  PAYMENT NOTE - ENHANCED
==================================================*/

.payment-note {
    margin-top: 40px;
    background: linear-gradient(135deg, #fff8ed, #fff4e5);
    border-left: 6px solid #ff8c00;
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.08);
    transition: all 0.4s ease;
}

.payment-note:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.12);
}

.payment-note i {
    color: #ff8c00;
    font-size: 34px;
    animation: pulseIcon 2s ease-in-out infinite;
}

.payment-note p {
    margin: 0;
    color: #1b2b4a;
    line-height: 1.8;
    font-size: 16px;
}

/*==================================================
  ENHANCED ANIMATIONS
==================================================*/

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.85) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translate(-50%, -50%) scale(1.1) rotate(120deg);
        opacity: 0.9;
    }
    66% {
        transform: translate(-50%, -50%) scale(0.95) rotate(240deg);
        opacity: 0.7;
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-10px, -50px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translate(15px, -25px) rotate(270deg) scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 60px 60px, 60px 60px;
    }
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spanPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.15);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmerLine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes widthExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

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

/*==================================================
  RESPONSIVE - ENHANCED
==================================================*/

@media (max-width: 1200px) {
    .payment-hero-content h1 {
        font-size: 64px;
    }
}

@media (max-width: 992px) {
    .payment-hero {
        min-height: 340px;
        padding: 120px 20px 70px;
    }

    .payment-hero-content h1 {
        font-size: 52px;
    }

    .payment-hero-content p {
        font-size: 19px;
    }

    .payment-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .payment-cards {
        grid-template-columns: 1fr 1fr;
    }

    .payment-particle:nth-child(5),
    .payment-particle:nth-child(6) {
        display: none;
    }
}

@media (max-width: 768px) {
    .payment-hero-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .payment-hero-content p {
        font-size: 17px;
    }

    .payment-hero-content span {
        font-size: 13px;
        padding: 10px 28px;
    }

    .payment-hero-content h1::after {
        width: 180px;
    }

    .payment-particle {
        display: none !important;
    }

    .payment-glow {
        width: 500px;
        height: 500px;
    }

    .payment-left h2,
    .payment-right h2 {
        font-size: 32px;
    }

    .payment-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 28px;
    }

    .payment-note {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .payment-card,
    .info-card {
        padding: 24px 20px;
    }

    .detail-row {
        flex-direction: column;
        gap: 6px;
    }

    .detail-row b {
        text-align: left;
    }

    .qr-card::after {
        font-size: 11px;
        padding: 4px 16px;
        bottom: -10px;
        right: 10px;
    }

    .fee-table th,
    .fee-table td {
        padding: 14px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .payment-hero {
        padding: 100px 15px 50px;
        min-height: 280px;
    }

    .payment-hero-content h1 {
        font-size: 30px;
    }

    .payment-hero-content h1::after {
        width: 120px;
        height: 4px;
    }

    .payment-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .payment-hero-content span {
        font-size: 11px;
        padding: 8px 20px;
        letter-spacing: 2px;
    }

    .payment-glow {
        width: 300px;
        height: 300px;
    }

    .payment-left h2,
    .payment-right h2 {
        font-size: 26px;
    }

    .payment-left h2::after {
        width: 60px;
    }

    .payment-page {
        padding: 60px 15px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .info-card h3 {
        font-size: 22px;
    }

    .payment-note i {
        font-size: 28px;
    }
}

/*==================================================
  SCROLL ANIMATIONS (Optional enhancement)
==================================================*/

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Regeistration page  CSS*/
/*==================================================
  REGISTRATION HERO - ENHANCED
==================================================*/

.reg-hero {
    min-height: 400px;
    padding: 140px 20px 90px;
    background: linear-gradient(135deg, #0f1a3a 0%, #1a2f6b 40%, #2a1a5e 70%, #1a0a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    isolation: isolate;
     /* Background Image + Overlay */
    background:
        linear-gradient(rgba(18,33,84,.92), rgba(52,46,112,.90), rgba(80,62,90,.90)),
        url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* Animated gradient overlay */
.reg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 97, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 152, 0, 0.06) 0%, transparent 40%);
    animation: regGradientShift 15s ease-in-out infinite alternate;
    z-index: 1;
}

/* Enhanced grid with parallax */
.reg-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 55px 55px;
    animation: regGridMove 22s linear infinite;
    opacity: 0.5;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Glow orb */
.reg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(123, 97, 255, 0.12) 30%, 
        rgba(13, 110, 253, 0.08) 60%, 
        transparent 80%
    );
    animation: regGlowPulse 9s ease-in-out infinite;
    z-index: 1;
    filter: blur(25px);
}

/* Floating particles */
.reg-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: regFloatParticle var(--duration, 13s) ease-in-out infinite;
    z-index: 1;
}

.reg-particle:nth-child(1) {
    width: 140px;
    height: 140px;
    left: 6%;
    top: 18%;
    --duration: 15s;
    animation-delay: -2s;
}

.reg-particle:nth-child(2) {
    width: 90px;
    height: 90px;
    right: 10%;
    top: 12%;
    --duration: 12s;
    animation-delay: -4s;
}

.reg-particle:nth-child(3) {
    width: 180px;
    height: 180px;
    bottom: -25px;
    left: 12%;
    --duration: 17s;
    animation-delay: -6s;
}

.reg-particle:nth-child(4) {
    width: 110px;
    height: 110px;
    right: 8%;
    bottom: -15px;
    --duration: 14s;
    animation-delay: -3s;
}

.reg-particle:nth-child(5) {
    width: 60px;
    height: 60px;
    left: 45%;
    top: 8%;
    --duration: 11s;
    animation-delay: -1s;
}

.reg-hero-content {
    position: relative;
    z-index: 10;
    max-width: 950px;
    animation: regContentFadeIn 1.2s ease-out;
}

.reg-hero-content span {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffd54f;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    animation: regSpanPulse 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

.reg-hero-content span:hover {
    transform: scale(1.06) rotate(-1deg);
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.15);
}

.reg-hero-content h1 {
    font-size: 76px;
    margin: 32px 0 20px;
    font-weight: 900;
    letter-spacing: -3px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    animation: regTitleReveal 1s ease-out;
}

.reg-hero-content h1 .reg-highlight {
    background: linear-gradient(135deg, #ffd54f, #ff9800, #8b5cf6, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: regGradientText 5s ease-in-out infinite;
}

.reg-hero-content h1::after {
    content: "";
    display: block;
    width: 260px;
    height: 5px;
    margin: 20px auto;
    border-radius: 20px;
    background: linear-gradient(90deg, #ffd54f, #ff9800, #8b5cf6, #4f46e5, #8b5cf6, #ff9800, #ffd54f);
    background-size: 200% 100%;
    animation: regShimmerLine 4s ease-in-out infinite;
}

.reg-hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    max-width: 780px;
    margin: auto;
    animation: regFadeUp 1.2s ease-out 0.3s both;
    font-weight: 300;
}

/*==================================================
  REGISTRATION SECTION - ENHANCED
==================================================*/

.registration-section {
    padding: 100px 20px;
    background:
        radial-gradient(circle at 0% 20%, rgba(13, 110, 253, 0.04), transparent 40%),
        radial-gradient(circle at 100% 80%, rgba(255, 152, 0, 0.04), transparent 40%),
        #f8faff;
    position: relative;
}

.reg-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    animation: regFadeUp 1s ease-out;
}

.reg-title span {
    display: inline-block;
    background: linear-gradient(135deg, #eaf3ff, #dce8ff);
    color: #0d6efd;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    animation: regTitleBadge 2s ease-in-out infinite;
}

.reg-title span:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.15);
}

.reg-title h2 {
    font-size: 48px;
    color: #07152f;
    margin: 20px 0 12px;
    font-weight: 900;
    letter-spacing: -1px;
}

.reg-title h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    margin: 16px auto;
    border-radius: 20px;
    background: linear-gradient(90deg, #0d6efd, #7b61ff, #ff9f1c);
    animation: regWidthExpand 1.2s ease-out;
}

.reg-title p {
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
}

.reg-wrapper {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.reg-card,
.reg-form-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 42px 38px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reg-card:hover,
.reg-form-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 35px 80px rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.15);
}

/* Gradient top bar with animation */
.reg-card::before,
.reg-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 7px;
    background: linear-gradient(90deg, #0d6efd, #7b61ff, #ff9f1c, #7b61ff, #0d6efd);
    background-size: 200% 100%;
    animation: regTopBar 4s linear infinite;
    border-radius: 0 0 20px 20px;
}

.reg-card::after,
.reg-form-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.02), rgba(123, 97, 255, 0.02), rgba(255, 159, 28, 0.02));
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.reg-card:hover::after,
.reg-form-card:hover::after {
    opacity: 1;
}

.reg-icon,
.form-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0d6efd, #003b91);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.25);
}

.reg-card:hover .reg-icon {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 12px 40px rgba(13, 110, 253, 0.35);
}

.reg-card h3,
.reg-form-card h3 {
    font-size: 30px;
    color: #07152f;
    margin-bottom: 22px;
    font-weight: 800;
}

.reg-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reg-card li {
    padding: 16px 0 16px 48px;
    border-bottom: 1px solid #edf2ff;
    color: #1b2b4a;
    font-weight: 600;
    line-height: 1.7;
    position: relative;
    transition: all 0.4s ease;
    cursor: default;
}

.reg-card li:hover {
    transform: translateX(6px);
    background: rgba(13, 110, 253, 0.02);
    padding-left: 54px;
    border-radius: 8px;
}

.reg-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9f1c, #ff5f00);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
    transition: all 0.4s ease;
}

.reg-card li:hover::before {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 25px rgba(255, 159, 28, 0.4);
}

.reg-card li:last-child {
    border-bottom: none;
}

/* Form card specific */
.reg-form-card {
    text-align: center;
    position: relative;
}

.reg-form-card .form-icon {
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff9f1c, #ff5f00);
    box-shadow: 0 8px 30px rgba(255, 159, 28, 0.3);
}

.reg-form-card:hover .form-icon {
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 159, 28, 0.4);
}

.reg-form-card p {
    color: #5a6b85;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 17px;
}

/* Enhanced button with pulse effect */
.reg-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0d6efd, #7b61ff);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(13, 110, 253, 0.3);
}

.reg-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    transform: scale(0.5);
}

.reg-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.reg-btn:hover {
    background: linear-gradient(135deg, #ff9f1c, #ff5f00);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 159, 28, 0.4);
}

.reg-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.reg-btn .arrow {
    display: inline-block;
    transition: transform 0.4s ease;
}

.reg-btn:hover .arrow {
    transform: translateX(6px);
}

/* Button pulse ring */
.reg-btn::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0d6efd, #7b61ff);
    opacity: 0;
    z-index: -1;
    animation: regBtnPulse 2s ease-in-out infinite;
}

.reg-btn:hover::after {
    opacity: 0.3;
}

/*==================================================
  ENHANCED ANIMATIONS
==================================================*/

@keyframes regGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes regGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translate(-50%, -50%) scale(1.15) rotate(120deg);
        opacity: 0.9;
    }
    66% {
        transform: translate(-50%, -50%) scale(0.9) rotate(240deg);
        opacity: 0.7;
    }
}

@keyframes regFloatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(25px, -35px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-15px, -55px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translate(20px, -30px) rotate(270deg) scale(1.05);
    }
}

@keyframes regGridMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 55px 55px, 55px 55px;
    }
}

@keyframes regContentFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes regSpanPulse {
    0%, 100% {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 215, 0, 0.2), 0 0 40px rgba(255, 215, 0, 0.05);
    }
}

@keyframes regTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes regGradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes regShimmerLine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes regFadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes regWidthExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

@keyframes regTitleBadge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.1);
    }
}

@keyframes regTopBar {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(33.33%);
    }
}

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

/*==================================================
  RESPONSIVE - ENHANCED
==================================================*/

@media (max-width: 1200px) {
    .reg-hero-content h1 {
        font-size: 62px;
    }
    
    .reg-title h2 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .reg-hero {
        min-height: 340px;
        padding: 120px 20px 70px;
    }

    .reg-hero-content h1 {
        font-size: 50px;
    }

    .reg-hero-content p {
        font-size: 19px;
    }

    .reg-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reg-particle:nth-child(5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .reg-hero-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .reg-hero-content p {
        font-size: 17px;
    }

    .reg-hero-content span {
        font-size: 13px;
        padding: 12px 28px;
    }

    .reg-hero-content h1::after {
        width: 180px;
    }

    .reg-particle {
        display: none !important;
    }

    .reg-glow {
        width: 400px;
        height: 400px;
    }

    .reg-title h2 {
        font-size: 34px;
    }

    .reg-card,
    .reg-form-card {
        padding: 32px 28px;
    }

    .reg-card h3,
    .reg-form-card h3 {
        font-size: 26px;
    }

    .reg-card li {
        padding: 14px 0 14px 44px;
    }
    
    .reg-card li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
        top: 14px;
    }
}

@media (max-width: 600px) {
    .reg-hero {
        padding: 100px 15px 60px;
        min-height: 280px;
    }

    .reg-hero-content h1 {
        font-size: 34px;
    }

    .reg-hero-content h1::after {
        width: 140px;
        height: 4px;
    }

    .reg-hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .reg-hero-content span {
        font-size: 12px;
        padding: 10px 24px;
        letter-spacing: 2px;
    }

    .reg-glow {
        width: 250px;
        height: 250px;
        filter: blur(15px);
    }

    .registration-section {
        padding: 60px 15px;
    }

    .reg-title h2 {
        font-size: 28px;
    }
    
    .reg-title h2::after {
        width: 60px;
        height: 4px;
    }

    .reg-title p {
        font-size: 16px;
    }

    .reg-card,
    .reg-form-card {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .reg-icon,
    .form-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        border-radius: 18px;
    }

    .reg-card h3,
    .reg-form-card h3 {
        font-size: 22px;
    }

    .reg-btn {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .reg-card li {
        padding: 12px 0 12px 40px;
        font-size: 15px;
    }
    
    .reg-card li::before {
        width: 22px;
        height: 22px;
        font-size: 11px;
        top: 12px;
    }
}

@media (max-width: 400px) {
    .reg-hero-content h1 {
        font-size: 28px;
    }
    
    .reg-hero-content p {
        font-size: 15px;
    }
    
    .reg-title h2 {
        font-size: 24px;
    }
}

/*==================================================
  ACCESSIBILITY - REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reg-card:hover,
    .reg-form-card:hover {
        transform: none !important;
    }
    
    .reg-btn:hover {
        transform: none !important;
    }
}


/* ==================================================
   NEW REGISTRATION LAYOUT (Top Form + Bottom 2 Cards)
   ================================================== */

.reg-wrapper-new{
    max-width:1250px;
    margin:0 auto;
}

.reg-form-top{
    display:grid;
    grid-template-columns:100px 1fr;
    align-items:center;
    gap:30px;
    margin-bottom:40px;
}

.reg-form-top .form-icon{
    margin:0;
}

.reg-form-content{
    text-align:left;
}

.reg-bottom-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:35px;
    align-items:start;
}

.presentation-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
    /* animation: floatCard 6s ease-in-out infinite; */
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.presentation-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 80px rgba(255, 95, 0, 0.15), 0 10px 40px rgba(123, 97, 255, 0.1);
}

/* 🌟 Sparkle animation overlay */
.presentation-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 159, 28, 0.05), transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(123, 97, 255, 0.05), transparent 60%);
    pointer-events: none;
    animation: shimmerPulse 8s ease-in-out infinite;
}

.presentation-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff9f1c, #ff5f00, #7b61ff, #ff9f1c);
    background-size: 300% 100%;
    animation: gradientMove 4s linear infinite;
}

.presentation-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9f1c, #ff5f00);
    color: #fff;
    font-size: 32px;
    margin-bottom: 22px;
    animation: iconPop 3s ease-in-out infinite;
    position: relative;
}

/* ✨ Glow ring behind icon */
.presentation-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.3), rgba(123, 97, 255, 0.2));
    filter: blur(12px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

.presentation-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #07152f;
    position: relative;
    display: inline-block;
}

/* ✏️ Underline animation for heading */
.presentation-card h3::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff9f1c, #7b61ff);
    border-radius: 4px;
    animation: underlineGrow 2.5s ease-in-out infinite;
}

.presentation-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.presentation-option {
    background: #f8fbff;
    border: 1px solid #e9eef8;
    border-radius: 18px;
    padding: 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

/* 🌸 Hover effect with anime-style "energy" burst */
.presentation-option:hover {
    transform: translateX(8px) scale(1.02);
    border-color: #ff9f1c;
    background: linear-gradient(135deg, #f8fbff, #fff5eb);
    box-shadow: 0 8px 30px rgba(255, 159, 28, 0.12);
}

/* 💫 Anime sparkle on option hover */
.presentation-option:hover::before {
    content: "✦";
    position: absolute;
    top: -8px;
    right: 12px;
    font-size: 20px;
    color: #ff9f1c;
    animation: sparkleTwinkle 0.6s ease-out;
}

.presentation-option i {
    color: #0d6efd;
    font-size: 24px;
    margin-bottom: 10px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.presentation-option:hover i {
    transform: rotate(-8deg) scale(1.15);
    color: #ff5f00;
}

.presentation-option h4 {
    margin: 0 0 8px;
    color: #07152f;
    transition: color 0.3s ease;
}

.presentation-option:hover h4 {
    color: #ff5f00;
}

.presentation-option p {
    margin: 0;
    color: #5a6b85;
    line-height: 1.6;
    font-size: 14px;
}

/* ========== 🎬 ANIMATIONS ========== */

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

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmerPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes iconPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05) rotate(2deg); }
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes underlineGrow {
    0% { width: 0; opacity: 0; }
    50% { width: 100%; opacity: 1; }
    100% { width: 0; opacity: 0; }
}

@keyframes sparkleTwinkle {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1.5) rotate(180deg); opacity: 1; }
    100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

/* ========================================== */
/* 🎨 RESPONSIVE MEDIA QUERIES */
/* ========================================== */

@media(max-width:992px) {
    .reg-form-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reg-form-top .form-icon {
        margin: 0 auto;
    }

    .reg-form-content {
        text-align: center;
    }

    .reg-bottom-grid {
        grid-template-columns: 1fr;
    }

    /* 🎯 Adjust animations for mobile */
    .presentation-card {
        animation: floatCard 8s ease-in-out infinite;
    }

    .presentation-card h3 {
        font-size: 24px;
    }

    .presentation-option:hover {
        transform: translateX(0) scale(1.02);
    }
}

/* 🎬 Optional: Add a subtle "breathing" background animation */
.presentation-card .anime-bg-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.04), transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.1); }
    66% { transform: translate(20px, -10px) scale(0.9); }
}

/* Regsitered paper page css */
/*==================================================
  REGISTERED PAPER PAGE
==================================================*/

.registered-hero {
    position: relative;
    min-height: 300px;
    padding: 130px 20px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    /* Background Image + Overlay */
    background:
        linear-gradient(rgba(18,33,84,.92), rgba(52,46,112,.90), rgba(80,62,90,.90)),
        url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    
}

.registered-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: registeredGridMove 20s linear infinite;
}

.registered-hero::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 180, 0, 0.18), rgba(120, 80, 255, 0.14), transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

/* Floating particles */
.registered-hero .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.6);
    animation: floatParticle 12s infinite linear;
    z-index: 2;
}

.registered-hero .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.registered-hero .particle:nth-child(2) { left: 25%; animation-delay: 2s; width: 10px; height: 10px; background: rgba(139, 92, 246, 0.5); }
.registered-hero .particle:nth-child(3) { left: 45%; animation-delay: 4s; width: 8px; height: 8px; background: rgba(255, 152, 0, 0.5); }
.registered-hero .particle:nth-child(4) { left: 65%; animation-delay: 1s; }
.registered-hero .particle:nth-child(5) { left: 80%; animation-delay: 3s; width: 12px; height: 12px; background: rgba(79, 70, 229, 0.4); }
.registered-hero .particle:nth-child(6) { left: 90%; animation-delay: 5s; }
.registered-hero .particle:nth-child(7) { left: 35%; animation-delay: 6s; width: 7px; height: 7px; background: rgba(255, 215, 0, 0.4); }
.registered-hero .particle:nth-child(8) { left: 55%; animation-delay: 7s; width: 9px; height: 9px; background: rgba(139, 92, 246, 0.3); }

.registered-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

.registered-hero-content span {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    color:  #ffd54f;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 800;
    letter-spacing: 1px;
    animation: shimmer 3s ease-in-out infinite;
}

.registered-hero-content h1 {
    margin: 25px 0 15px;
    font-size: 60px;
    font-weight: 800;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

.registered-hero-content h1::after {
    content: "";
    display: block;
    width: 230px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 20px;
    background: linear-gradient(90deg, #ffd54f, #ff9800, #8b5cf6, #4f46e5);
    background-size: 300% 100%;
    animation: gradientMove 4s ease-in-out infinite;
}

.registered-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

.registered-section {
    padding: 80px 10px;
    background:
        radial-gradient(circle at left, #eef4ff, transparent 35%),
        radial-gradient(circle at right, #fff4e5, transparent 35%),
        #fff;
    position: relative;
}

.registered-card {
    width: 98%;
    max-width: 1700px;
    margin: auto;
    background: #fff;
    border-radius: 25px;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-top: 7px solid transparent;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(90deg, #0d6efd, #7b61ff, #ff9f1c);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: fadeInUp 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registered-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.registered-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0d6efd, #003b91);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    animation: bounceIn 1s ease-out;
}

.registered-icon i {
    animation: iconSpin 8s linear infinite;
}

.registered-card h2 {
    text-align: center;
    color: #08265d;
    font-size: 36px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #08265d, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registered-card > p {
    text-align: center;
    color: #555;
    font-size: 17px;
    margin-bottom: 40px;
}

.paper-search-box,
.search-box {
    max-width: 750px;
    margin: 0 auto 45px;
    display: flex;
    gap: 15px;
}

.paper-search-box input,
.search-box input {
    flex: 1;
    padding: 18px 25px;
    border-radius: 45px;
    border: 1px solid #dce6f7;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
}

.paper-search-box input:focus,
.search-box input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.15);
    transform: scale(1.01);
}

.paper-search-box button,
.search-btn {
    padding: 18px 35px;
    border: none;
    border-radius: 45px;
    background: linear-gradient(135deg, #0d6efd, #7b61ff);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.paper-search-box button::before,
.search-btn::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);
    animation: btnShine 3s infinite;
}

.paper-search-box button:hover,
.search-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.registered-table-wrap,
.table-wrapper {
    width: 100%;
    margin-top: 35px;
    overflow-x: auto;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.registered-table {
    width: 100%;
    min-width: 1250px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    overflow: hidden;
}

/* ==========================================
   Professional Table Header
========================================== */

.registered-table thead tr{
    background:#0568da;
}

.registered-table thead th{
    background:transparent;
    color:#ffffff;
    padding:16px 18px;
    text-align:center;
    vertical-align:middle;
    font-size:17px;
    font-weight:700;
    letter-spacing:.3px;
    border:none;
    border-bottom: 4px solid #ebe7e1;
    position:relative;
    transition: background 0.3s ease;
}

.registered-table thead th:hover {
    background: rgba(255,255,255,0.05);
}

/* Vertical divider */
.registered-table thead th:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:25%;
    width:1px;
    height:50%;
    background:rgba(255,255,255,.18);
    animation: dividerPulse 2s ease-in-out infinite;
}

/* Rounded corners */
.registered-table thead th:first-child{
    border-top-left-radius:18px;
}

.registered-table thead th:last-child{
    border-top-right-radius:18px;
}

.registered-table th:nth-child(1),
.registered-table td:nth-child(1) {
    width: 12%;
}

.registered-table th:nth-child(2),
.registered-table td:nth-child(2) {
    width: 53%;
}

.registered-table th:nth-child(3),
.registered-table td:nth-child(3) {
    width: 22%;
}

.registered-table th:nth-child(4),
.registered-table td:nth-child(4) {
    width: 13%;
}

.registered-table td {
    padding: 22px 28px;
    border-bottom: 1px solid #edf2ff;
    color: #07152f;
    font-size: 16px;
    line-height: 1.5;
    vertical-align: middle;
    word-wrap: break-word;
}

.registered-table tbody tr {
    transition: all 0.3s ease;
}

.registered-table tbody tr:nth-child(even) {
    background: #f8fbff;
}

.registered-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.registered-table tbody tr:hover {
    background: #eef5ff;
    transform: scale(1.002);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.registered-table tbody tr {
    animation: slideInRow 0.5s ease-out backwards;
}

.registered-table tbody tr:nth-child(1) { animation-delay: 0.05s; }
.registered-table tbody tr:nth-child(2) { animation-delay: 0.10s; }
.registered-table tbody tr:nth-child(3) { animation-delay: 0.15s; }
.registered-table tbody tr:nth-child(4) { animation-delay: 0.20s; }
.registered-table tbody tr:nth-child(5) { animation-delay: 0.25s; }
.registered-table tbody tr:nth-child(6) { animation-delay: 0.30s; }
.registered-table tbody tr:nth-child(7) { animation-delay: 0.35s; }
.registered-table tbody tr:nth-child(8) { animation-delay: 0.40s; }
.registered-table tbody tr:nth-child(9) { animation-delay: 0.45s; }
.registered-table tbody tr:nth-child(10) { animation-delay: 0.50s; }

.status,
.status-badge {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 800;
    background: #d8f5df;
    color: #0a8f42;
    transition: all 0.3s ease;
}

.status:hover,
.status-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(10, 143, 66, 0.2);
}

.status.pending {
    background: #fff5d8;
    color: #d07d00;
}

.status.pending:hover {
    box-shadow: 0 4px 12px rgba(208, 125, 0, 0.2);
}

.success-msg,
.error-msg {
    max-width: 750px;
    margin: 15px auto;
    padding: 15px 20px;
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
    animation: shakeIn 0.6s ease-out;
}

.success-msg {
    background: #e9fff2;
    color: #0a8f43;
    animation: successPop 0.5s ease-out;
}

.error-msg {
    background: #fff1f1;
    color: #d00000;
    animation: errorShake 0.6s ease-out;
}

.highlight-row {
    background: #fff4d6 !important;
    animation: highlightPulse 1.5s ease-in-out 3;
}

.update-note {
    margin-top: 40px;
    background: #fff8e8;
    border-left: 5px solid #ff9800;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    gap: 18px;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
}

.update-note i {
    color: #ff9800;
    font-size: 28px;
    animation: iconBounce 2s ease-in-out infinite;
}

.update-note p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.registered-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 35px auto 0;
    padding: 15px 35px;
    background: linear-gradient(135deg, #0d6efd, #7b61ff);
    color: #fff;
    border-radius: 45px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.registered-btn::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);
    animation: btnShine 3s infinite;
}

.registered-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(38, 9, 204, 0.3);
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes heroPulse {
    0%, 100% { background: linear-gradient(135deg, #162447, #1f4068, #3b185f); }
    50% { background: linear-gradient(135deg, #1a2a4a, #2a4a7a, #4a2a6a); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

@keyframes registeredGridMove {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

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

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.4)); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

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

@keyframes slideInRow {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes successPop {
    0% { opacity: 0; transform: scale(0.8); }
    50% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

@keyframes shakeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes highlightPulse {
    0%, 100% { background: #fff4d6; }
    50% { background: #ffecd6; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes dividerPulse {
    0%, 100% { opacity: 0.18; }
    50% { opacity: 0.4; }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {
    .registered-card {
        padding: 35px;
    }

    .registered-hero-content h1 {
        font-size: 46px;
    }

    .registered-table {
        min-width: 1100px;
    }
}

@media (max-width: 768px) {
    .paper-search-box,
    .search-box {
        flex-direction: column;
    }

    .paper-search-box button,
    .search-btn {
        width: 100%;
    }

    .registered-card {
        width: 100%;
        padding: 25px;
    }

    .registered-hero {
        padding: 120px 20px 60px;
    }

    .registered-hero-content h1 {
        font-size: 38px;
    }

    .registered-card h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .registered-hero-content h1 {
        font-size: 32px;
    }

    .registered-hero-content p {
        font-size: 15px;
    }

    .registered-card {
        padding: 20px;
    }

    .registered-table {
        min-width: 900px;
    }

    .update-note {
        flex-direction: column;
        text-align: center;
    }
}
/* conference-venue pages */

.venue-hero {
    min-height: 360px;
    padding: 140px 20px 90px;
    /* background: linear-gradient(135deg, #162447, #1f4068, #3b185f); */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    /* animation: heroPulse 8s ease-in-out infinite; */
     /* Background Image + Overlay */
    background:
        linear-gradient(rgba(18,33,84,.92), rgba(52,46,112,.90), rgba(80,62,90,.90)),
        url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.venue-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.venue-hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 180, 0, 0.15), rgba(139, 92, 246, 0.12), transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

/* Floating Particles */
.venue-hero .v-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.5);
    animation: floatUp 15s infinite linear;
    z-index: 1;
}

.venue-hero .v-particle:nth-child(1) { left: 5%; animation-delay: 0s; width: 12px; height: 12px; background: rgba(255, 215, 0, 0.4); }
.venue-hero .v-particle:nth-child(2) { left: 15%; animation-delay: 2s; width: 6px; height: 6px; background: rgba(139, 92, 246, 0.5); }
.venue-hero .v-particle:nth-child(3) { left: 30%; animation-delay: 4s; width: 10px; height: 10px; background: rgba(255, 152, 0, 0.4); }
.venue-hero .v-particle:nth-child(4) { left: 45%; animation-delay: 1s; width: 7px; height: 7px; background: rgba(255, 215, 0, 0.5); }
.venue-hero .v-particle:nth-child(5) { left: 60%; animation-delay: 3s; width: 14px; height: 14px; background: rgba(139, 92, 246, 0.3); }
.venue-hero .v-particle:nth-child(6) { left: 75%; animation-delay: 5s; width: 9px; height: 9px; background: rgba(255, 152, 0, 0.5); }
.venue-hero .v-particle:nth-child(7) { left: 88%; animation-delay: 6s; width: 11px; height: 11px; background: rgba(255, 215, 0, 0.3); }
.venue-hero .v-particle:nth-child(8) { left: 95%; animation-delay: 7s; width: 6px; height: 6px; background: rgba(139, 92, 246, 0.4); }
.venue-hero .v-particle:nth-child(9) { left: 50%; animation-delay: 8s; width: 15px; height: 15px; background: rgba(255, 152, 0, 0.2); }
.venue-hero .v-particle:nth-child(10) { left: 20%; animation-delay: 9s; width: 5px; height: 5px; background: rgba(255, 215, 0, 0.6); }

.venue-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

.venue-hero-content span {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #ffd54f;
    font-weight: 800;
    animation: shimmer 3s ease-in-out infinite;
}

.venue-hero-content h1 {
    font-size: 68px;
    margin: 28px 0 18px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

.venue-hero-content h1::after {
    content: "";
    display: block;
    width: 240px;
    height: 5px;
    margin: 18px auto;
    border-radius: 20px;
    background: linear-gradient(90deg, #ffd54f, #ff9800, #8b5cf6, #4f46e5);
    background-size: 300% 100%;
    animation: gradientMove 4s ease-in-out infinite;
}

.venue-hero-content p {
    font-size: 20px;
    color: rgba(255,255,255,.82);
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

.venue-section {
    padding: 80px 20px 100px;
    background:
        radial-gradient(circle at left top, #f0e8ff, transparent 35%),
        radial-gradient(circle at right bottom, #fff4e5, transparent 35%),
        #fff;
    position: relative;
}

.venue-title {
    text-align: center;
    margin-bottom: 35px;
}

.venue-title h2 {
    display: inline-block;
    font-size: 42px;
    color: #6f42c1;
    font-weight: 900;
    position: relative;
    background: linear-gradient(135deg, #6f42c1, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.venue-title h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 20px;
    background: linear-gradient(90deg, #6f42c1, #ff8c00);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

.venue-location-box {
    max-width: 1150px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.venue-info-card {
    background: white;
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #6f42c1, #ff8c00, #ff1493);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.venue-info-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 60px rgba(111, 66, 193, 0.15);
}

.venue-info-card h3 {
    color: #6f42c1;
    font-size: 30px;
    margin-bottom: 24px;
}

.venue-info-card h3 i {
    color: #ff8c00;
    animation: iconBounce 2s ease-in-out infinite;
}

.venue-info-card h4 {
    color: #07152f;
    font-size: 20px;
    margin: 22px 0 8px;
}

.venue-info-card p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.venue-name {
    color: #ff1493 !important;
    font-weight: 800;
    font-size: 19px !important;
    background: linear-gradient(135deg, #ff1493, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.venue-map-btn {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 40px;
    background: linear-gradient(90deg, #6f42c1, #ff8c00);
    color: white;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.venue-map-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s infinite;
}

.venue-map-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(111, 66, 193, 0.35);
}

.venue-map {
    border-radius: 24px;
    overflow: hidden;
    min-height: 390px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.venue-map:hover {
    transform: scale(1.01);
    box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

.venue-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 390px;
}

.place-title {
    margin-top: 30px;
    margin-bottom: 45px;
}

.place-title h2 {
    color: #6f42c1;
    background: linear-gradient(135deg, #6f42c1, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite 0.5s;
}

.place-title h2::first-letter {
    color: #ff8c00;
}

.places-wrapper {
    max-width: 1150px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.place-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    transition: all 0.4s ease;
    animation: slideInRight 0.8s ease-out backwards;
    border: 2px solid transparent;
}

.place-card:nth-child(1) { animation-delay: 0.1s; }
.place-card:nth-child(2) { animation-delay: 0.2s; }
.place-card:nth-child(3) { animation-delay: 0.3s; }

.place-card:hover {
    transform: translateX(10px) scale(1.005);
    box-shadow: 0 25px 55px rgba(111, 66, 193, 0.12);
    border-color: rgba(111, 66, 193, 0.2);
}

.place-card.reverse {
    grid-template-columns: 1fr 320px;
}

.place-card.reverse:hover {
    transform: translateX(-10px) scale(1.005);
}

.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    transition: all 0.5s ease;
}

.place-card:hover img {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.place-card h3 {
    color: #6f42c1;
    font-size: 26px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #6f42c1, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Comic Sans MS;
}

.place-card p {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
    font-family: 'Times New Roman', Times, serif;
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes heroPulse {
    0%, 100% { background: linear-gradient(135deg, #162447, #1f4068, #3b185f); }
    50% { background: linear-gradient(135deg, #1a2a4a, #2a4a7a, #4a2a6a); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

@keyframes floatUp {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

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

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.5)); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes iconBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:900px) {
    .venue-location-box,
    .place-card,
    .place-card.reverse {
        grid-template-columns: 1fr;
    }

    .venue-hero-content h1 {
        font-size: 42px;
    }

    .venue-title h2 {
        font-size: 34px;
    }

    .place-card.reverse:hover {
        transform: translateX(0) scale(1.005);
    }
    
    .place-card:hover {
        transform: translateX(0) scale(1.005);
    }
}

@media(max-width:576px) {
    .venue-hero-content h1 {
        font-size: 32px;
    }
    
    .venue-hero-content p {
        font-size: 16px;
    }
    
    .venue-info-card {
        padding: 24px;
    }
    
    .place-card {
        padding: 18px;
    }
    
    .place-card img {
        height: 160px;
    }
}
/* contact page CSS */
/*==================================================
CONTACT HERO
==================================================*/

.contact-hero-alt {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    padding: 140px 20px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
   /* Background Image + Overlay */
    background:
        linear-gradient(rgba(18,33,84,.92), rgba(52,46,112,.90), rgba(80,62,90,.90)),
        url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.contact-hero-alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.contact-hero-alt::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 180, 0, 0.15), rgba(123, 97, 255, 0.12), transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

/* Floating Particles */
.contact-hero-alt .c-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.5);
    animation: floatUp 15s infinite linear;
    z-index: 1;
}

.contact-hero-alt .c-particle:nth-child(1) { left: 5%; animation-delay: 0s; width: 12px; height: 12px; background: rgba(255, 215, 0, 0.4); }
.contact-hero-alt .c-particle:nth-child(2) { left: 15%; animation-delay: 2s; width: 6px; height: 6px; background: rgba(123, 97, 255, 0.5); }
.contact-hero-alt .c-particle:nth-child(3) { left: 28%; animation-delay: 4s; width: 10px; height: 10px; background: rgba(255, 152, 0, 0.4); }
.contact-hero-alt .c-particle:nth-child(4) { left: 42%; animation-delay: 1s; width: 7px; height: 7px; background: rgba(255, 215, 0, 0.5); }
.contact-hero-alt .c-particle:nth-child(5) { left: 55%; animation-delay: 3s; width: 14px; height: 14px; background: rgba(123, 97, 255, 0.3); }
.contact-hero-alt .c-particle:nth-child(6) { left: 70%; animation-delay: 5s; width: 9px; height: 9px; background: rgba(255, 152, 0, 0.5); }
.contact-hero-alt .c-particle:nth-child(7) { left: 85%; animation-delay: 6s; width: 11px; height: 11px; background: rgba(255, 215, 0, 0.3); }
.contact-hero-alt .c-particle:nth-child(8) { left: 95%; animation-delay: 7s; width: 6px; height: 6px; background: rgba(123, 97, 255, 0.4); }
.contact-hero-alt .c-particle:nth-child(9) { left: 48%; animation-delay: 8s; width: 15px; height: 15px; background: rgba(255, 152, 0, 0.2); }
.contact-hero-alt .c-particle:nth-child(10) { left: 22%; animation-delay: 9s; width: 5px; height: 5px; background: rgba(255, 215, 0, 0.6); }

.contact-hero-alt-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

.contact-hero-alt-content span {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #ffd54f;
    font-weight: 800;
    letter-spacing: 1px;
    animation: shimmer 3s ease-in-out infinite;
}

.contact-hero-alt-content h1 {
    font-size: 60px;
    margin: 25px 0 18px;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

.contact-hero-alt-content h1::after {
    content: "";
    display: block;
    width: 220px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 30px;
    background: linear-gradient(90deg, #ffd54f, #ff9800, #7b61ff);
    background-size: 300% 100%;
    animation: gradientMove 4s ease-in-out infinite;
}

.contact-hero-alt-content p {
    font-size: 18px;
    color: #ececec;
    line-height: 1.8;
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

/*==================================================
CONTACT SECTION
==================================================*/

.contact-desk-section {
    padding: 90px 20px;
    background:
        radial-gradient(circle at left, #eef5ff, transparent 35%),
        radial-gradient(circle at right, #fff4e5, transparent 35%),
        #fff;
    position: relative;
}

/*==================================================
SUPPORT TEAM SINGLE CARD
==================================================*/

.support-card {
    max-width: 1250px;
    margin: 0 auto 60px;
    background: #fff;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 22px 65px rgba(0,0,0,.08);
    border-top: 7px solid transparent;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(90deg, #0d6efd, #7b61ff, #ff9800);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.4s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0,0,0,.12);
}

.support-header {
    text-align: center;
    margin-bottom: 45px;
}

.support-header h2 {
    font-size: 42px;
    color: #07152f;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #07152f, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-header p {
    color: #666;
    font-size: 17px;
}

/*==================================================
SUPPORT GRID
==================================================*/

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.support-column {
    padding: 20px 35px;
    animation: fadeInUp 0.8s ease-out backwards;
}

.support-column:nth-child(1) { animation-delay: 0.1s; }
.support-column:nth-child(2) { animation-delay: 0.2s; }

.support-column:first-child {
    border-right: 2px dashed #e5e7eb;
}

.support-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.support-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.support-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.support-icon.blue {
    background: linear-gradient(135deg, #0d6efd, #7b61ff);
    box-shadow: 0 12px 30px rgba(13,110,253,.22);
    animation: iconPulse 3s ease-in-out infinite;
}

.support-icon.orange {
    background: linear-gradient(135deg, #ff9800, #ff5f00);
    box-shadow: 0 12px 30px rgba(255,152,0,.25);
    animation: iconPulse 3s ease-in-out infinite 0.5s;
}

.support-title span {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.support-title h3 {
    margin-top: 6px;
    font-size: 28px;
    color: #07152f;
    background: linear-gradient(135deg, #07152f, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.designation {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

/*==================================================
SUPPORT LIST
==================================================*/

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.6;
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease-out backwards;
}

.support-list li:nth-child(1) { animation-delay: 0.1s; }
.support-list li:nth-child(2) { animation-delay: 0.2s; }
.support-list li:nth-child(3) { animation-delay: 0.3s; }
.support-list li:nth-child(4) { animation-delay: 0.4s; }
.support-list li:nth-child(5) { animation-delay: 0.5s; }

.support-list li:hover {
    transform: translateX(8px);
    color: #07152f;
}

.support-list li i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef5ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.support-list li:hover i {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.company-list li i {
    background: #fff4e5;
    color: #ff9800;
}

.company-list li:hover i {
    background: #ff9800;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.support-list a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.support-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, #7b61ff);
    transition: width 0.3s ease;
}

.support-list a:hover {
    color: #0d6efd;
}

.support-list a:hover::after {
    width: 100%;
}

/*==================================================
ACTION CARDS
==================================================*/

.full-width-actions {
    max-width: 1250px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-action-card {
    background: #fff;
    border-radius: 26px;
    padding: 35px 28px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    border: 1px solid #edf2ff;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.contact-action-card:nth-child(1) { animation-delay: 0.1s; }
.contact-action-card:nth-child(2) { animation-delay: 0.2s; }
.contact-action-card:nth-child(3) { animation-delay: 0.3s; }
.contact-action-card:nth-child(4) { animation-delay: 0.4s; }

.contact-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.contact-action-card:hover::before {
    left: 100%;
}

.contact-action-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(13,110,253,.15);
    border-color: transparent;
}

.contact-action-card i {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #7b61ff);
    transition: all 0.4s ease;
}

.contact-action-card:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
}

.contact-action-card:nth-child(2) i {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-action-card:nth-child(2):hover i {
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.contact-action-card:nth-child(3) i {
    background: linear-gradient(135deg, #ff9800, #ff5f00);
}

.contact-action-card:nth-child(3):hover i {
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.3);
}

.contact-action-card:nth-child(4) i {
    background: linear-gradient(135deg, #673ab7, #512da8);
}

.contact-action-card:nth-child(4):hover i {
    box-shadow: 0 15px 35px rgba(103, 58, 183, 0.3);
}

.contact-action-card h3 {
    color: #07152f;
    font-size: 22px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.contact-action-card:hover h3 {
    background: linear-gradient(135deg, #0d6efd, #7b61ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-action-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/*==================================================
ANIMATIONS
==================================================*/

@keyframes heroPulse {
    0%, 100% { background: linear-gradient(135deg, #162447, #1f4068, #3b185f); }
    50% { background: linear-gradient(135deg, #1a2a4a, #2a4a7a, #4a2a6a); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

@keyframes floatUp {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.5)); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px) {
    .full-width-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:900px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-column:first-child {
        border-right: none;
        border-bottom: 2px dashed #e5e7eb;
        padding-bottom: 35px;
        margin-bottom: 20px;
    }

    .support-card {
        padding: 35px 25px;
    }

    .support-header h2 {
        font-size: 34px;
    }

    .contact-hero-alt-content h1 {
        font-size: 42px;
    }
}

@media(max-width:768px) {
    .full-width-actions {
        grid-template-columns: 1fr;
    }

    .contact-hero-alt {
        padding: 120px 20px 70px;
    }

    .support-title {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:480px) {
    .contact-hero-alt-content h1 {
        font-size: 30px;
    }

    .contact-hero-alt-content p {
        font-size: 15px;
    }

    .support-header h2 {
        font-size: 28px;
    }

    .support-title h3 {
        font-size: 24px;
    }

    .support-column {
        padding: 15px 5px;
    }

    .contact-action-card {
        padding: 28px 20px;
    }
}