/* =========================================
   GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8fafc;
    color:#0f172a;
    overflow-x:hidden;
    line-height:1.7;
}

/* =========================================
   COMMON
========================================= */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.section{
    padding:100px 0;
}

/* =========================================
   HEADER
========================================= */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(15,23,42,0.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

/* =========================================
   LOGO
========================================= */

.logo{
    font-size:34px;
    font-weight:800;
    color:#fff;
    letter-spacing:1px;
}

.logo span{
    color:#38bdf8;
}

/* =========================================
   MENU
========================================= */

.navbar ul{
    display:flex;
    align-items:center;
    list-style:none;
}

.navbar ul li{
    margin-left:15px;
}

.navbar ul li a{
    text-decoration:none;
    color:#fff;
    font-size:15px;
    font-weight:500;
    padding:12px 18px;
    border-radius:10px;
    transition:0.3s;
}

.navbar ul li a:hover{
    background:rgba(56,189,248,0.15);
    color:#38bdf8;
}

/* =========================================
   HERO SECTION
========================================= */

.hero{
    width:100%;
    min-height:100vh;

    background:
    linear-gradient(rgba(15,23,42,0.88),
    rgba(15,23,42,0.88)),

    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#38bdf8;
    border-radius:50%;
    filter:blur(180px);
    opacity:0.18;
    top:-120px;
    right:-100px;
}

.hero-content{
    max-width:760px;
    position:relative;
    z-index:2;
    padding-top:80px;
}

.hero-content h1{
    font-size:68px;
    line-height:1.2;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#38bdf8;
}

.hero-content p{
    font-size:20px;
    color:#cbd5e1;
    margin-bottom:40px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 36px;
    border-radius:60px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.4s;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-primary{
    background:linear-gradient(135deg,#38bdf8,#0ea5e9);
    color:#fff;
    box-shadow:0 10px 25px rgba(14,165,233,0.35);
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(14,165,233,0.45);
}

.btn-outline{
    border:2px solid rgba(255,255,255,0.4);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#0f172a;
}

/* =========================================
   FEATURES
========================================= */

.features{
    margin-top:-80px;
    position:relative;
    z-index:5;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature-box{
    background:#fff;
    padding:35px 25px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.feature-box:hover{
    transform:translateY(-10px);
}

.feature-box i{
    font-size:48px;
    color:#38bdf8;
    margin-bottom:20px;
}

.feature-box h3{
    font-size:24px;
    margin-bottom:15px;
}

.feature-box p{
    color:#64748b;
}

/* =========================================
   MODERN COURSE SECTION
========================================= */

.modern-course-section{
    padding:100px 0;
    background:#f8fafc;
}

/* TITLE */

.modern-title{
    text-align:center;
    max-width:760px;
    margin:auto;
    margin-bottom:70px;
}

.course-label{
    display:inline-block;
    background:#e0f2fe;
    color:#0284c7;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.modern-title h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:18px;
    color:#0f172a;
}

.modern-title p{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* COURSE GRID */

.modern-course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:35px;
}

/* CARD */

.modern-course-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.07);
    transition:0.4s;
}

.modern-course-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* IMAGE */

.modern-course-image{
    position:relative;
    overflow:hidden;
}

.modern-course-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.5s;
}

.modern-course-card:hover img{
    transform:scale(1.08);
}

/* BADGE */

.modern-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:linear-gradient(135deg,#0ea5e9,#38bdf8);
    color:#fff;
    padding:9px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(14,165,233,0.35);
}

/* CONTENT */

.modern-course-content{
    padding:30px;
}

.course-top-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
    font-size:14px;
    color:#475569;
    font-weight:600;
}

.course-top-info span{
    display:flex;
    align-items:center;
    gap:8px;
}

.course-top-info i{
    color:#0ea5e9;
}

.modern-course-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:#0f172a;
}

.modern-course-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:28px;
}

/* FOOTER */

.course-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* BUTTON */

.modern-course-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:#0f172a;
    color:#fff;
    padding:14px 28px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.modern-course-btn:hover{
    background:#0ea5e9;
    transform:translateY(-3px);
}

/* =========================================
   ABOUT SECTION
========================================= */

.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-content h2{
    font-size:44px;
    margin-bottom:25px;
}

.about-content p{
    color:#64748b;
    margin-bottom:25px;
}

.about-list{
    list-style:none;
}

.about-list li{
    margin-bottom:15px;
    font-size:17px;
}

.about-list i{
    color:#38bdf8;
    margin-right:10px;
}

/* =========================================
   FOOTER
========================================= */

footer{
    background:#0f172a;
    color:#fff;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:50px;
}

.footer-box h3{
    font-size:26px;
    margin-bottom:20px;
}

.footer-box p{
    color:#cbd5e1;
    margin-bottom:15px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#cbd5e1;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#38bdf8;
    padding-left:5px;
}

/* SOCIAL */

.social-icons{
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#1e293b;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:#38bdf8;
    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid #334155;
    padding-top:20px;
    text-align:center;
    color:#cbd5e1;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .navbar{
        flex-direction:column;
    }

    .navbar ul{
        margin-top:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .navbar ul li{
        margin:8px;
    }

    .hero-content{
        text-align:center;
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-content h1{
        font-size:48px;
    }

    .about-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:17px;
    }

    .modern-title h2{
        font-size:36px;
    }

    .btn{
        width:100%;
    }
}

@media(max-width:480px){

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:15px;
    }

    .logo{
        font-size:28px;
    }

    .section,
    .modern-course-section{
        padding:70px 0;
    }

    .modern-title h2{
        font-size:28px;
    }

    .modern-course-content h3{
        font-size:24px;
    }
}


/* =========================================
   COURSE SECTION
========================================= */

.section{
    padding:100px 0;
    background:#f8fafc;
    position:relative;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =========================================
   SECTION TITLE
========================================= */

.section-title{
    text-align:center;
    font-size:48px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:70px;
    position:relative;
}

.section-title::after{
    content:'';
    width:100px;
    height:5px;
    background:linear-gradient(135deg,#0ea5e9,#38bdf8);
    border-radius:10px;
    position:absolute;
    bottom:-18px;
    left:50%;
    transform:translateX(-50%);
}

/* =========================================
   COURSE GRID
========================================= */

.course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;
}

/* =========================================
   COURSE CARD
========================================= */

.course-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s ease;
    position:relative;
}

.course-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 45px rgba(0,0,0,0.14);
}

/* =========================================
   IMAGE
========================================= */

.course-image{
    position:relative;
    overflow:hidden;
}

.course-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.5s;
}

.course-card:hover .course-image img{
    transform:scale(1.08);
}

/* =========================================
   TAG
========================================= */

.course-tag{
    position:absolute;
    top:18px;
    left:18px;
    background:linear-gradient(135deg,#0ea5e9,#38bdf8);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    box-shadow:0 6px 15px rgba(14,165,233,0.35);
}

/* =========================================
   CONTENT
========================================= */

.course-content{
    padding:30px;
}

.course-content h2{
    font-size:28px;
    color:#0f172a;
    margin-bottom:22px;
    line-height:1.3;
}

/* =========================================
   COURSE INFO
========================================= */

.course-info{
    background:#f8fafc;
    border-radius:18px;
    padding:20px;
    margin-bottom:22px;
}

.course-info p{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    color:#334155;
    font-size:15px;
    line-height:1.6;
}

.course-info p:last-child{
    margin-bottom:0;
}

.course-info i{
    width:38px;
    height:38px;
    background:#e0f2fe;
    color:#0284c7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    flex-shrink:0;
}

.course-info strong{
    color:#0f172a;
}

/* =========================================
   SHORT DESCRIPTION
========================================= */

.short-description{
    color:#64748b;
    font-size:15px;
    line-height:1.9;
    margin-bottom:28px;
}

/* =========================================
   BUTTON GROUP
========================================= */

.btn-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* =========================================
   BUTTONS
========================================= */

.btn{
    flex:1;
    text-align:center;
    padding:15px 20px;
    border-radius:14px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

/* PRIMARY BUTTON */

.btn-primary{
    background:linear-gradient(135deg,#0ea5e9,#38bdf8);
    color:#fff;
    box-shadow:0 8px 18px rgba(14,165,233,0.25);
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(14,165,233,0.35);
}

/* DARK BUTTON */

.btn-dark{
    background:#0f172a;
    color:#fff;
}

.btn-dark:hover{
    background:#1e293b;
    transform:translateY(-3px);
}

/* =========================================
   FEATURES SECTION
========================================= */

.features{
    margin-top:90px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* =========================================
   FEATURE BOX
========================================= */

.feature-box{
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.4s;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 16px 35px rgba(0,0,0,0.10);
}

.feature-box i{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:22px;
    background:linear-gradient(135deg,#0ea5e9,#38bdf8);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    box-shadow:0 10px 25px rgba(14,165,233,0.28);
}

.feature-box h3{
    font-size:24px;
    color:#0f172a;
    margin-bottom:15px;
}

.feature-box p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .section-title{
        font-size:40px;
    }

    .course-grid{
        grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    }

}

@media(max-width:768px){

    .section{
        padding:80px 0;
    }

    .section-title{
        font-size:32px;
        margin-bottom:50px;
    }

    .course-content{
        padding:24px;
    }

    .course-content h2{
        font-size:24px;
    }

    .btn-group{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

}

@media(max-width:480px){

    .course-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:28px;
    }

    .course-content h2{
        font-size:22px;
    }

    .course-image img{
        height:220px;
    }

}


/* =========================================
   GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f1f5f9;
    color:#0f172a;
    overflow-x:hidden;
}

/* =========================================
   CONTAINER
========================================= */

.container{
    width:90%;
    max-width:1250px;
    margin:auto;
}

/* =========================================
   HEADER
========================================= */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(15,23,42,0.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:34px;
    font-weight:800;
    color:#fff;
}

.logo span{
    color:#38bdf8;
}

/* =========================================
   MENU
========================================= */

.navbar ul{
    display:flex;
    list-style:none;
}

.navbar ul li{
    margin-left:15px;
}

.navbar ul li a{
    text-decoration:none;
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.navbar ul li a:hover{
    background:#38bdf8;
    color:#fff;
}

/* =========================================
   HERO
========================================= */

.hero{
    width:100%;
    min-height:100vh;

    background:
    linear-gradient(rgba(15,23,42,0.85),
    rgba(15,23,42,0.88)),

    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#38bdf8;
    filter:blur(180px);
    opacity:0.15;
    border-radius:50%;
    top:-150px;
    right:-100px;
}

.hero-content{
    max-width:700px;
    position:relative;
    z-index:2;
    padding-top:80px;
}

.hero-content h1{
    font-size:65px;
    line-height:1.2;
    color:#fff;
    font-weight:800;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#38bdf8;
}

.hero-content p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
    display:inline-block;
}

.btn-primary{
    background:linear-gradient(135deg,#0ea5e9,#38bdf8);
    color:#fff;
    box-shadow:0 10px 25px rgba(14,165,233,0.35);
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid rgba(255,255,255,0.4);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#0f172a;
}

/* =========================================
   REGISTRATION SECTION
========================================= */

.main-section{
    width:100%;
    padding:100px 15px;
    margin-top:-50px;
    position:relative;
    z-index:5;
}

.registration-box{
    max-width:1000px;
    margin:auto;
    background:#fff;
    border-radius:30px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* =========================================
   TITLE
========================================= */

.title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:10px;
}

.sub-title{
    text-align:center;
    color:#64748b;
    margin-bottom:35px;
    font-size:16px;
}

/* =========================================
   SUCCESS MESSAGE
========================================= */

.success-msg{
    background:#dcfce7;
    color:#166534;
    padding:16px;
    border-radius:14px;
    margin-bottom:25px;
    text-align:center;
    font-weight:600;
    border-left:5px solid #22c55e;
}

/* =========================================
   FORM GRID
========================================= */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* =========================================
   FORM GROUP
========================================= */

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    font-weight:600;
    color:#0f172a;
}

/* =========================================
   INPUTS
========================================= */

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #dbe2ea;
    border-radius:14px;
    background:#f8fafc;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#38bdf8;
    background:#fff;
    box-shadow:0 0 12px rgba(56,189,248,0.2);
}

textarea{
    resize:none;
    height:120px;
}

#courseFee{
    background:#e2e8f0;
    font-weight:700;
}

/* =========================================
   BUTTON
========================================= */

.register-btn{
    width:100%;
    border:none;
    padding:17px;
    border-radius:16px;
    background:linear-gradient(135deg,#0ea5e9,#38bdf8);
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    margin-top:10px;
}

.register-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(14,165,233,0.3);
}

/* =========================================
   FOOTER TEXT
========================================= */

.footer-text{
    text-align:center;
    margin-top:30px;
    color:#64748b;
    font-size:14px;
}

/* =========================================
   FEATURES
========================================= */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:60px;
}

.feature-box{
    background:#fff;
    padding:35px 25px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    font-size:48px;
    color:#38bdf8;
    margin-bottom:20px;
}

.feature-box h3{
    font-size:24px;
    margin-bottom:12px;
}

.feature-box p{
    color:#64748b;
    line-height:1.7;
}

/* =========================================
   FOOTER
========================================= */

footer{
    background:#0f172a;
    color:#fff;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer-box h3{
    margin-bottom:20px;
    font-size:24px;
}

.footer-box p,
.footer-box ul li{
    color:#cbd5e1;
    margin-bottom:12px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li a{
    text-decoration:none;
    color:#cbd5e1;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#38bdf8;
    padding-left:5px;
}

.social-icons{
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#1e293b;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:#38bdf8;
    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid #334155;
    padding-top:20px;
    text-align:center;
    color:#cbd5e1;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .navbar{
        flex-direction:column;
    }

    .navbar ul{
        margin-top:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content{
        text-align:center;
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-content h1{
        font-size:50px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }

    .registration-box{
        padding:25px;
    }

    .title{
        font-size:30px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

}

@media(max-width:480px){

    .hero-content h1{
        font-size:30px;
    }

    .logo{
        font-size:28px;
    }

    .navbar ul li{
        margin:5px;
    }

    .navbar ul li a{
        padding:10px 14px;
        font-size:14px;
    }

    .title{
        font-size:24px;
    }

}


/* ===================================
   ADMIN MENU
=================================== */

.admin-menu{
    width:100%;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    padding:18px 30px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    margin-bottom:35px;
    position:relative;
    overflow:hidden;
}

/* GLOW EFFECT */

.admin-menu::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:#38bdf8;
    filter:blur(120px);
    opacity:0.15;
    top:-100px;
    right:-80px;
}

/* MENU LINKS */

.admin-menu a{
    position:relative;
    z-index:2;
    text-decoration:none;
    color:#fff;
    padding:14px 28px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(8px);
    transition:0.35s;
    display:flex;
    align-items:center;
    gap:10px;
}

/* HOVER EFFECT */

.admin-menu a:hover{
    background:linear-gradient(135deg,#0ea5e9,#38bdf8);
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(14,165,233,0.35);
}

/* ACTIVE BUTTON */

.admin-menu a.active{
    background:linear-gradient(135deg,#0ea5e9,#38bdf8);
    box-shadow:0 8px 20px rgba(14,165,233,0.35);
}

/* ICON STYLE */

.admin-menu a i{
    font-size:16px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:768px){

    .admin-menu{
        padding:20px;
        gap:15px;
    }

    .admin-menu a{
        width:100%;
        justify-content:center;
    }

}

@media(max-width:480px){

    .admin-menu{
        border-radius:16px;
    }

    .admin-menu a{
        padding:13px 18px;
        font-size:14px;
    }

}



