*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:#FFF8EB;

color:#444;

}
.navbar{
    width:90%;
    max-width:1400px;
    height:80px;
    margin:0 auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:relative;
    z-index:1000;
}

.logo img{
    height:60px;
    display:block;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:600;
    padding:8px 0;
    position:relative;
    transition:.3s ease;
}

.nav-links a:hover{
    color:#f4b400;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#f4b400;
    border-radius:10px;
    transition:.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}
/* Desktop Sign Up Button */

.signup{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:13px 30px;
    background:#FFD63A;
    color:#000;
    text-decoration:none;

    font-size:15px;
    font-weight:600;

    border-radius:40px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:all .3s ease;
}

.signup:hover{
    background:#F4C400;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.12);
}
/* Hamburger Hidden on Desktop */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#6B2CA0;
}

/* Mobile View */
@media (max-width:768px){

    .navbar{
        width:92%;
        height:70px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        position:relative;
    }

    .logo img{
        height:50px;
    }

    /* Hamburger Right Corner */
    .menu-toggle{
        display:block;
        position:absolute;
        right:0;
        top:50%;
        transform:translateY(-50%);
        font-size:32px;
        cursor:pointer;
        color:#6B2CA0;
        z-index:1001;
    }

    /* ENROLL button pehle jaisa hi */
    .signup{
        margin-right:55px;   /* Hamburger ke liye space */
        padding:13px 28px;
        background:#FFD63A;
        border-radius:40px;
        text-decoration:none;
        font-weight:600;
        color:#000;
        box-shadow:0 8px 20px rgba(0,0,0,.08);
    }

    /* Dropdown Menu */
    .nav-links{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        list-style:none;
        box-shadow:0 10px 20px rgba(0,0,0,.1);
        border-radius:12px;
        overflow:hidden;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        text-align:center;
        border-bottom:1px solid #eee;
    }

    .nav-links li:last-child{
        border-bottom:none;
    }

    .nav-links li a{
        display:block;
        padding:16px;
    }

}

/* Main Section */

.refund-section{

display:flex;

justify-content:center;

}

/* Card */

.refund-box{

width:1000px;

background:#fff;

padding:50px;

border-radius:20px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

/* Heading */

.heading{

text-align:center;

margin-bottom:50px;

}

.heading h1{

font-size:42px;

color:#173B8C;

margin-bottom:15px;

}

.heading p{

font-size:17px;

line-height:30px;

color:#666;

max-width:760px;

margin:auto;

}

/* Sections */

.policy{

margin-bottom:35px;

padding-bottom:25px;

border-bottom:1px solid #eee;

}

.policy:last-child{

border:none;

margin-bottom:0;

}

/* Heading */

.policy h2{

font-size:24px;

color:#173B8C;

margin-bottom:18px;

padding-left:18px;

position:relative;

}

.policy h2::before{

content:"";

position:absolute;

left:0;

top:5px;

width:6px;

height:28px;

background:#FFD54A;

border-radius:10px;

}

/* Paragraph */

.policy p{

font-size:16px;

line-height:30px;

color:#555;

}

/* List */

.policy ul{

padding-left:28px;

margin-top:12px;

}

.policy li{

font-size:16px;

line-height:32px;

margin-bottom:8px;

color:#555;

}

/* Highlight */

.policy strong{

color:#173B8C;

}

/* Responsive */

@media(max-width:768px){

.refund-box{

padding:30px 22px;

}

.heading h1{

font-size:30px;

}

.policy h2{

font-size:20px;

}

.policy p,
.policy li{

font-size:15px;

line-height:28px;

}

}
.footer{

background:#FFF8E9;

padding:70px 8% 30px;

margin-top:100px;

}

.footer-container{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:40px;

}

.footer-logo{

width:180px;

margin-bottom:20px;

}

.footer-text{

color:#666;

font-size:17px;

line-height:1.7;

margin-bottom:25px;

}

.social-links{

display:flex;

gap:15px;

}

.social-links a{

width:45px;

height:45px;

background:#ECECEC;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:20px;

color:#222;

transition:.3s;

text-decoration:none;

}

.social-links a:hover{

background:#22A45D;

color:#fff;

}

.footer-col h3{

margin-bottom:20px;

font-size:24px;

}

.footer-col ul{

list-style:none;

}

.footer-col ul li{

margin-bottom:12px;

}

.footer-col ul li a{

text-decoration:none;

color:#444;

transition:.3s;

}

.footer-col ul li a:hover{

color:#22A45D;

padding-left:5px;

}

.footer-col p{

margin-bottom:15px;

color:#555;

}

.footer-image img{

width:220px;

}

.footer hr{

margin:40px 0 20px;

border:none;

height:1px;

background:#ddd;

}

.copyright{

text-align:center;

color:#666;

font-size:16px;

}

@media(max-width:991px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.social-links{

justify-content:center;

}

.footer-image img{

margin:auto;

}

}
html{
    scroll-behavior: smooth;
}
.footer-link{
    color:grey;
    text-decoration:none;
    font-weight:700;
    position:relative;
    transition:0.3s;
}

.footer-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    transition:0.3s;
}

.footer-link:hover{
    color:black;
}

.footer-link:hover::after{
    width:100%;
}
.enroll-float,
.whatsapp-float{
    position:fixed;
    right:25px;

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s ease;
}

.whatsapp-float{bottom:25px;background:#25D366;color:#fff;}
.enroll-float{bottom:100px;background:#FFD63A;color:#000;font-size:25px;}
.enroll-float span{position:absolute;right:72px;padding:8px 13px;border-radius:8px;background:#FFD63A;color:#000;font-size:15px;font-weight:600;line-height:1;white-space:nowrap;box-shadow:0 6px 16px rgba(0,0,0,.18);opacity:0;visibility:hidden;transform:translateX(8px);transition:.25s ease;}
.enroll-float:hover{transform:scale(1.1);background:#F4C400;}
.enroll-float:hover span,.enroll-float:focus-visible span{opacity:1;visibility:visible;transform:translateX(0);}

.whatsapp-float:hover{
    transform:scale(1.1);
    background:#1EBE5D;
}

@media (max-width:768px){
    .enroll-float,.whatsapp-float{
        width:55px;
        height:55px;
        right:18px;
    }
    .whatsapp-float{font-size:30px;
        bottom:18px;
    }
    .enroll-float{bottom:88px;font-size:23px;}
    .enroll-float span{right:65px;font-size:15px;}
}
