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

body{
    font-family:'Poppins',sans-serif;
    color:#334155;
    background:#ffffff;
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#2c5dd2;;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#334155;
    font-weight:500;
}

.nav-links a:hover{
    color:#D4AF37;
}

.btn-primary{
    text-decoration:none;
    background:#2c5dd2;;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    transition:0.3s;
}

.btn-primary:hover{
    background:#D4AF37;
    color:#0f172a;
}

.btn-secondary{
    text-decoration:none;
    border:2px solid #2c5dd2;;
    color:#2c5dd2;;
    padding:12px 24px;
    border-radius:8px;
}

.btn-secondary:hover{
    background:#2c5dd2;;
    color:white;
}

/* HERO */

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 8%;
    gap:50px;
}

.hero-content{
    flex:1;
}

.tag{
    background:#e2e8f0;
    padding:10px 18px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:20px;
}

.hero h1{
    font-size:60px;
    line-height:1.2;
    color:#2c5dd2;;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:20px;
}




/* SECTION TITLE */

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

.section-title h2{
    font-size:40px;
    color:#2c5dd2;;
}

.section-title p{
    margin-top:10px;
}

/* SERVICES */

.services{
    padding:100px 8%;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

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

.service-card h3{
    margin-bottom:15px;
    color:#0f172a;
}

/* WHY US */

.why-us{
    background:#f8fafc;
    padding:100px 8%;
}

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-box{
    background:white;
    padding:25px;
    text-align:center;
    border-radius:15px;
    font-weight:600;
}

/* CTA */

.cta{
    text-align:center;
    padding:100px 8%;
    background:#2c5dd2;
    color:white;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:30px;
}

/* FOOTER */

footer{
    text-align:center;
    padding:40px;
}

footer h3{
    color:#2c5dd2;;
    margin-bottom:10px;
}

.copyright{
    margin-top:15px;
    color:#64748b;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero{
        flex-direction:column;
    }

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

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

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

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

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }
}

/* PAGE HERO */

.page-hero{
    background:#2c5dd2;;
    color:white;
    text-align:center;
    padding:100px 8%;
}

.page-hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.page-hero p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ABOUT SECTION */

.about-section{
    display:flex;
    align-items:center;
    gap:60px;
    padding:100px 8%;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.about-content{
    flex:1;
}

.section-tag{
    color:#D4AF37;
    font-weight:600;
}

.about-content h2{
    font-size:40px;
    margin:15px 0;
    color:#2c5dd2;;
}

.about-content p{
    margin-bottom:20px;
    line-height:1.8;
}

/* MISSION VISION */

.mission-vision{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    padding:0 8% 100px;
}

.mission-card{
    background:#f8fafc;
    padding:40px;
    border-radius:20px;
}

.mission-card h3{
    color:#0f172a;
    margin-bottom:15px;
}

/* VALUES */

.values-section{
    padding:100px 8%;
    background:#f8fafc;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.value-card h3{
    color:#2c5dd2;;
    margin-bottom:10px;
}

/* TRUST SECTION */

.trust-section{
    padding:100px 8%;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.trust-box{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.trust-box h3{
    color:#2c5dd2;;
    margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .about-section{
        flex-direction:column;
    }

    .mission-vision{
        grid-template-columns:1fr;
    }

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

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

    .page-hero h1{
        font-size:40px;
    }
}



/* SERVICES PAGE */

.service-detail{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 8%;
}

.service-detail.reverse{
    flex-direction: row-reverse;
    background: #f8fafc;
}

.service-text{
    flex: 0 0 38%;
}

.service-text h2{
    font-size: 52px;
    color: #2c5dd2;
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-text p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-text ul{
    padding-left: 25px;
    margin-bottom: 30px;
}

.service-text li{
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
}

.service-img{
    flex: 0 0 58%;
}

.service-img img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: block;
}

/* MOBILE RESPONSIVE */

@media (max-width: 992px){

    .service-detail,
    .service-detail.reverse{
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .service-text,
    .service-img{
        flex: 1 1 100%;
        width: 100%;
    }

    .service-text h2{
        font-size: 38px;
    }

    .service-img img{
        height: auto;
    }

    .service-text ul{
        text-align: left;
        display: inline-block;
    }
}
/* DSA PARTNER PAGE */

.partner-benefits{
    padding:100px 8%;
}

.partner-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.partner-card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

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

.partner-card h3{
    color:#2c5dd2;;
    margin-bottom:10px;
}

/* PROCESS */

.partner-process{
    background:#f8fafc;
    padding:100px 8%;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-box{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.process-box span{
    display:inline-block;
    width:60px;
    height:60px;
    line-height:60px;
    border-radius:50%;
    background:#D4AF37;
    color:#2c5dd2;;
    font-weight:700;
    margin-bottom:15px;
}

/* FORM */

.partner-form-section{
    padding:100px 8%;
}

.partner-form{
    max-width:800px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.partner-form input,
.partner-form textarea{
    padding:15px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-family:'Poppins',sans-serif;
}

.partner-form textarea{
    height:150px;
    resize:none;
}

.partner-form button{
    border:none;
    cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:992px){

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

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

/* CONTACT INFO */

.contact-info{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:80px 8%;
}

.contact-card{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.contact-card h3{
    margin-bottom:15px;
    color:#2c5dd2;
}

/* CONTACT SECTION */

.contact-section{
    display:flex;
    gap:60px;
    padding:100px 8%;
    background:#f8fafc;
}

.contact-left{
    flex:1;
}

.contact-left h2{
    font-size:42px;
    color:#2c5dd2;;
    margin-bottom:20px;
}

.contact-left p{
    line-height:1.8;
    margin-bottom:20px;
}

.contact-left ul{
    list-style:none;
}

.contact-left li{
    margin-bottom:15px;
}

.contact-right{
    flex:1;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-family:'Poppins',sans-serif;
}

.contact-form textarea{
    height:150px;
    resize:none;
}

.contact-form button{
    border:none;
    cursor:pointer;
}



/* FAQ */

.faq-section{
    background:#f8fafc;
    padding:100px 8%;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-box{
    background:white;
    padding:25px;
    border-radius:15px;
    margin-bottom:20px;
}

.faq-box h3{
    color:#2c5dd2;;
    margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .contact-info{
        grid-template-columns:1fr;
    }

    .contact-section{
        flex-direction:column;
    }
}

.logo a{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img{
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo span{
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5dd2;
    letter-spacing: 0.5px;
}

.contact-intro{
    padding: 60px 8% 20px;
    text-align: center;
}

.contact-intro h2{
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c5dd2;
}

.contact-intro p{
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
}

.footer-social {
    margin: 25px 0;
    text-align: center;
}

.footer-social h4 {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-links a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ffffff;
    color: #2c5dd2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.chatbot-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

#chat-toggle {
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    background: #2c5dd2;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.chatbox {
    display: none;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    margin-bottom: 15px;
}

.chat-header {
    background: #2c5dd2;
    color: white;
    padding: 18px;
    font-size: 20px;
    font-weight: 600;
}

.chat-messages {
    height: 370px;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #f7f8fc;
}

.bot-message {
    max-width: 75%;
    background: #ececf8;
    padding: 12px 15px;
    border-radius: 15px;
    align-self: flex-start;
    line-height: 1.5;
}

.user-message {
    max-width: 75%;
    background: #2c5dd2;
    color: white;
    padding: 12px 15px;
    border-radius: 15px;
    align-self: flex-end;
    line-height: 1.5;
}

.chat-input-area {
    display: flex;
    padding: 12px;
    background: white;
    border-top: 1px solid #ddd;
}

.chat-input-area input {
    flex: 1;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

.chat-input-area button {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    border: none;
    border-radius: 50%;
    background: #2c5dd2;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.help-bubble {
    background: white;
    color: #2c5dd2;
    padding: 10px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    animation: floatBubble 2s infinite ease-in-out;
}

@keyframes floatBubble {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c5dd2;
    color: white;
    padding: 18px;
    font-size: 20px;
    font-weight: 600;
}

#close-chat {
    background: transparent;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}