Navbar
.custom-navbar{
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,0.08);
    padding:15px 0;
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
    color:#6C63FF !important;
}

.logo-icon{
    margin-right:8px;
}

.nav-link{
    color:#333 !important;
    font-weight:500;
    margin:0 10px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#6C63FF !important;
}

.demo-btn{
    background:#6C63FF;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.demo-btn:hover{
    background:#5548f5;
    color:#fff;
}

/* Body spacing because navbar fixed */
body{
    padding-top:90px;
}
/* 
Header css end here */

.hero{
    background: linear-gradient(135deg,#6C63FF,#8B5CF6);
    padding:140px 0;
    text-align:center;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:30px;
    font-size:14px;
    margin-bottom:25px;
}

.hero h1{
    font-size:60px;
    font-weight:700;
    max-width:900px;
    margin:auto;
    line-height:1.2;
}

.hero p{
    max-width:700px;
    margin:25px auto;
    font-size:18px;
    opacity:.95;
}

.hero-btns{
    margin-top:35px;
}

.btn-primary-custom{
    background:#fff;
    color:#6C63FF;
    text-decoration:none;
    padding:14px 30px;
    border-radius:12px;
    font-weight:600;
    margin-right:10px;
    display:inline-block;
}

.btn-primary-custom:hover{
    color:#6C63FF;
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:12px;
    font-weight:600;
    display:inline-block;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#6C63FF;
}

/* css of here sec */

.features-section{
    padding:100px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#6C63FF;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin:15px 0;
    color:#222;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.feature-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card i{
    font-size:40px;
    color:#6C63FF;
    margin-bottom:20px;
}

.feature-card h4{
    font-size:22px;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
}
.feature-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
    cursor:pointer;
}

.feature-card i{
    font-size:40px;
    color:#6C63FF;
    margin-bottom:20px;
    transition:all 0.4s ease;
}

.feature-card h4{
    color:#222;
    transition:all 0.4s ease;
}

.feature-card p{
    color:#666;
    transition:all 0.4s ease;
}

/* Hover Effect */

.feature-card:hover{
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(108,99,255,0.3);
}

.feature-card:hover i,
.feature-card:hover h4,
.feature-card:hover p{
    color:#fff;
}

.work-process{
    padding:100px 0;
    background:#f8f9ff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#6C63FF;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-top:10px;
}

/* Process Card */

.process-card{
    background:#fff;
    padding:35px 20px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all .4s ease;
    height:100%;
    position:relative;
}

.process-card span{
    width:60px;
    height:60px;
    line-height:60px;
    display:inline-block;
    border-radius:50%;
    background:#6C63FF;
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    transition:.4s;
}

.process-card h5{
    font-size:20px;
    font-weight:600;
    color:#222;
    margin:0;
    transition:.4s;
}

/* Hover Effect */

.process-card:hover{
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(108,99,255,.3);
}

.process-card:hover span{
    background:#fff;
    color:#6C63FF;
}

.process-card:hover h5{
    color:#fff;
}
@media(max-width:768px){

    .work-process{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .process-card{
        margin-bottom:20px;
    }

}

.why-choose{
    padding:100px 0;
    background:#fff;
}

.choose-item{
    display:flex;
    gap:20px;
    padding:25px;
    margin-bottom:25px;
    border-radius:15px;
    background:#f8f9ff;
    transition:.4s;
}

.choose-item i{
    font-size:28px;
    color:#6C63FF;
    margin-top:5px;
    transition:.4s;
}

.choose-item h5{
    font-weight:600;
    margin-bottom:8px;
}

.choose-item p{
    margin:0;
    color:#666;
}

.choose-item:hover{
    background:#6C63FF;
    transform:translateX(10px);
}

.choose-item:hover i,
.choose-item:hover h5,
.choose-item:hover p{
    color:#fff;
}
.counter-section{
    padding:100px 0;
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
}

.counter-box{
    padding:30px 20px;
}

.counter-box h2{
    font-size:55px;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
}

.counter-box p{
    color:#fff;
    font-size:18px;
    margin:0;
    opacity:.9;
}
.cta-section{
    padding:100px 0;
    background:#fff;
}

.cta-content{
    text-align:center;
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    padding:80px 50px;
    border-radius:25px;
}

.cta-content span{
    color:#fff;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.cta-content h2{
    color:#fff;
    font-size:45px;
    font-weight:700;
    margin:20px 0;
}

.cta-content p{
    color:#fff;
    max-width:700px;
    margin:0 auto 30px;
    opacity:.9;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#6C63FF;
    padding:15px 35px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    color:#6C63FF;
}
.faq-section{
    padding:100px 0;
    background:#f8f9ff;
}

.faq-title{
    text-align:center;
    margin-bottom:50px;
}

.faq-title span{
    color:#6C63FF;
    font-weight:600;
    text-transform:uppercase;
}

.faq-title h2{
    font-size:42px;
    font-weight:700;
    margin:10px 0;
    color:#222;
}

.faq-title p{
    color:#666;
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.custom-faq .accordion-button{
    background:#fff;
    color:#222;
    font-size:18px;
    font-weight:600;
    padding:22px;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#6C63FF;
    color:#fff;
}

.custom-faq .accordion-body{
    padding:22px;
    color:#666;
    line-height:1.8;
    background:#fff;
}

.footer{
    background:#1B1535;
    color:#fff;
    padding:80px 0 20px;
}

.footer-logo{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.footer p{
    color:#d1d5db;
    line-height:1.8;
}

.footer h5{
    margin-bottom:25px;
    font-weight:600;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    text-decoration:none;
    color:#d1d5db;
    transition:.3s;
}

.footer-links a:hover{
    color:#8B5CF6;
    padding-left:5px;
}

.social-links{
    margin-top:20px;
}

.social-links a{
    width:42px;
    height:42px;
    line-height:42px;
    text-align:center;
    display:inline-block;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    color:#fff;
    margin-right:10px;
    transition:.3s;
}

.social-links a:hover{
    background:#6C63FF;
    transform:translateY(-3px);
}

.footer-contact p{
    margin-bottom:18px;
}

.footer-contact i{
    color:#8B5CF6;
    margin-right:10px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#9ca3af;
}
.about-hero{
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    padding:130px 0;
    color:#fff;
    text-align:center;
}

.about-hero h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:10px;
}

.about-hero p{
    font-size:18px;
    opacity:.9;
}

.about-intro{
    padding:90px 0;
}

.about-intro h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
}

.about-intro p{
    color:#666;
    line-height:1.8;
}

.about-box{
    background:#f8f9ff;
    padding:30px;
    border-radius:20px;
    border-left:5px solid #6C63FF;
}

.about-box h3{
    color:#6C63FF;
    margin-top:15px;
}

.why-about{
    padding:80px 0;
    background:#f8f9ff;
}

.why-about h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
}
.about-services{
    padding:90px 0;
    background:#f8f9ff;
}

.about-services h2{
    font-size:36px;
    font-weight:700;
}

.service-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    text-align:center;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    background:#6C63FF;
    color:#fff;
}

.service-card h4{
    margin-bottom:10px;
}

.about-cta{
    padding:100px 0;
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    color:#fff;
}

.about-cta h2{
    font-size:40px;
    font-weight:700;
}

.about-cta p{
    opacity:.9;
    margin:20px 0;
}

.cta-btn{
    background:#fff;
    color:#6C63FF;
    padding:14px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}
.blog-hero{
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    padding:120px 0;
    color:#fff;
    text-align:center;
}

.blog-hero h1{
    font-size:50px;
    font-weight:700;
}

.blog-hero p{
    opacity:.9;
}

.blog-section{
    padding:90px 0;
    background:#f8f9ff;
}

/* CARD DESIGN */
.blog-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    height:100%;
    transition:.3s;
}

/* HOVER EFFECT */
.blog-card:hover{
    transform:translateY(-8px);
    background:#6C63FF;
    color:#fff;
}

/* TEXT */
.blog-card h3{
    font-size:20px;
    margin-bottom:12px;
    font-weight:600;
}

.blog-card p{
    font-size:14px;
    line-height:1.6;
    color:#666;
}

/* hover text fix */
.blog-card:hover p,
.blog-card:hover h3{
    color:#fff;
}
.contact-hero{
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    padding:120px 0;
    color:#fff;
    text-align:center;
}

.contact-hero h1{
    font-size:50px;
    font-weight:700;
}

.contact-section{
    padding:90px 0;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.contact-form button{
    background:#6C63FF;
    color:#fff;
    padding:12px 25px;
    border:none;
    border-radius:10px;
}

.contact-info-box{
    background:#f8f9ff;
    padding:40px;
    border-radius:20px;
}

.whatsapp-btn{
    display:inline-block;
    background:#25D366;
    color:#fff;
    padding:12px 20px;
    border-radius:10px;
    text-decoration:none;
    margin-top:10px;
}

.map-section{
    padding-bottom:80px;
}
.modules-hero{
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    padding:120px 0;
    color:#fff;
}

.modules-hero h1{
    font-size:50px;
    font-weight:700;
}

.module-cards{
    padding:90px 0;
    background:#f8f9ff;
}

.module-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.3s;
    height:100%;
}

.module-card:hover{
    transform:translateY(-10px);
    background:#6C63FF;
    color:#fff;
}

.module-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.module-card p{
    font-size:14px;
    line-height:1.7;
    color:#666;
}

.module-card:hover p,
.module-card:hover h3{
    color:#fff;
}

.module-card.big{
    padding:40px;
}
/* BUTTON */
.demo-btn{
    background:#6C63FF;
    color:#fff;
    padding:12px 25px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

/* MODAL BACKGROUND */
.modal-overlay,
.thank-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999;
}

/* MODAL BOX */
.modal-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    width:400px;
    position:relative;
    animation:pop .3s ease;
}

/* THANK YOU BOX */
.thank-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    text-align:center;
    width:350px;
    animation:pop .3s ease;
}

.thank-box h1{
    color:#6C63FF;
}

/* CLOSE BUTTON */
.close-btn{
    position:absolute;
    right:15px;
    top:10px;
    font-size:25px;
    cursor:pointer;
}

/* INPUT */
.modal-box input{
    width:100%;
    padding:10px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:8px;
}

/* BUTTON */
.modal-box button,
.thank-box button{
    background:#6C63FF;
    color:#fff;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
    margin-top:10px;
}

/* ANIMATION */
@keyframes pop{
    from{transform:scale(0.7);opacity:0;}
    to{transform:scale(1);opacity:1;}
}
/* DEMO BUTTON STYLE */
.demo-button{
    background: linear-gradient(135deg,#ff63ef,#f65c9a);
    color:#fff;
    padding:12px 25px;
    border:none;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 8px 20px rgba(108,99,255,0.3);
}

/* HOVER EFFECT */
.demo-button:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(108,99,255,0.5);
    background:linear-gradient(135deg,#574fd6,#6C63FF);
}

.modal-overlay{
    position: fixed;
    z-index: 99999; /* VERY IMPORTANT */
}
.thank-overlay{
    position: fixed;
    z-index: 99999;
}
.navbar,
.navbar-collapse,
.mobile-menu{
    z-index: 999;
}
.mobile-menu{
    z-index: 1000;
}
.modal-overlay{
    top:0;
    left:0;
}
.testimonial-section{
    padding:90px 0;
    background:#f8f9ff;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    height:100%;
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    background:#6C63FF;
    color:#fff;
}

.testimonial-card p{
    font-size:14px;
    line-height:1.7;
    color:#666;
}

.testimonial-card h5{
    margin-top:15px;
    font-weight:600;
}

.testimonial-card span{
    font-size:13px;
    color:#888;
}

/* hover fix */
.testimonial-card:hover p,
.testimonial-card:hover h5,
.testimonial-card:hover span{
    color:#fff;
}

/* =========================
   GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    overflow-x:hidden;
    background:#fff;
    padding-top:90px;
    scroll-behavior:smooth;
}

/* smooth fade base */
.reveal{
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   NAVBAR
========================= */

.custom-navbar{
    background:rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    box-shadow:0 2px 20px rgba(0,0,0,0.08);
    padding:15px 0;
    transition:.3s;
    z-index:999;
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
    color:#6C63FF !important;
}

.nav-link{
    color:#333 !important;
    font-weight:500;
    margin:0 10px;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#6C63FF !important;
}

/* =========================
   BUTTONS
========================= */

.demo-btn,
.demo-button{
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    color:#fff;
    padding:12px 25px;
    border:none;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 8px 20px rgba(108,99,255,0.3);
    position:relative;
    overflow:hidden;
}

.demo-button{
    animation:floatBtn 3s ease-in-out infinite;
}

.demo-btn:hover,
.demo-button:hover{
    transform:translateY(-3px);
}

/* float animation */
@keyframes floatBtn{
    0%{transform:translateY(0)}
    50%{transform:translateY(-5px)}
    100%{transform:translateY(0)}
}

/* shimmer effect */
.demo-button::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.3);
    transition:.5s;
}

.demo-button:hover::after{
    left:100%;
}

/* =========================
   HERO
========================= */

.hero,
.about-hero,
.blog-hero,
.contact-hero,
.modules-hero{
    background: linear-gradient(-45deg,#6C63FF,#8B5CF6,#4f46e5,#a855f7);
    background-size: 300% 300%;
    animation: gradientMove 8s ease infinite;
    padding:140px 0;
    text-align:center;
    color:#fff;
}

@keyframes gradientMove{
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.hero h1{
    font-size:60px;
    font-weight:700;
    max-width:900px;
    margin:auto;
    line-height:1.2;
}

.hero p{
    max-width:700px;
    margin:25px auto;
    font-size:18px;
    opacity:.95;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:30px;
    font-size:14px;
    margin-bottom:25px;
}

/* =========================
   SECTION TITLE
========================= */

.section-title,
.faq-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span,
.faq-title span{
    display:inline-block;
    background:rgba(108,99,255,0.1);
    color:#6C63FF;
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
    letter-spacing:1px;
    font-weight:600;
}

.section-title h2,
.faq-title h2{
    font-size:42px;
    font-weight:700;
    margin:15px 0;
    color:#222;
    position:relative;
}

.section-title h2::after{
    content:"";
    width:60px;
    height:4px;
    background:#6C63FF;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
    border-radius:10px;
}

/* =========================
   FEATURE CARDS
========================= */

.feature-card,
.module-card,
.blog-card,
.testimonial-card,
.process-card,
.choose-item,
.contact-form,
.contact-info-box{
    transition:.4s;
    border-radius:18px;
}

.feature-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.feature-card i{
    font-size:40px;
    color:#6C63FF;
    margin-bottom:20px;
}

.feature-card:hover{
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    transform:translateY(-12px) scale(1.02);
    color:#fff;
    box-shadow:0 25px 50px rgba(108,99,255,0.25);
}

.feature-card:hover i,
.feature-card:hover h4,
.feature-card:hover p{
    color:#fff;
}

/* =========================
   MODULE / BLOG / TESTIMONIAL CARDS
========================= */

.module-card,
.blog-card,
.testimonial-card{
    background:#fff;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    height:100%;
    position:relative;
    overflow:hidden;
}

.module-card:hover,
.blog-card:hover,
.testimonial-card:hover{
    background:#6C63FF;
    color:#fff;
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 50px rgba(108,99,255,0.25);
}

.module-card p,
.blog-card p,
.testimonial-card p{
    color:#666;
}

.module-card:hover p,
.blog-card:hover p,
.testimonial-card:hover p{
    color:#fff;
}

/* =========================
   PROCESS
========================= */

.process-card{
    background:#fff;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.process-card span{
    width:60px;
    height:60px;
    line-height:60px;
    display:inline-block;
    border-radius:50%;
    background:#6C63FF;
    color:#fff;
    font-weight:700;
}

.process-card:hover{
    background:#6C63FF;
    color:#fff;
    transform:translateY(-10px);
}

/* =========================
   WHY CHOOSE
========================= */

.choose-item{
    display:flex;
    gap:20px;
    padding:25px;
    background:#f8f9ff;
}

.choose-item:hover{
    background:#6C63FF;
    color:#fff;
    transform:translateX(10px);
}

/* =========================
   COUNTER
========================= */

.counter-section{
    padding:100px 0;
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    color:#fff;
    text-align:center;
}

/* =========================
   CTA
========================= */

.cta-content{
    background:linear-gradient(135deg,#6C63FF,#8B5CF6);
    padding:80px;
    border-radius:25px;
    text-align:center;
    color:#fff;
}

/* =========================
   FAQ
========================= */

.custom-faq .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.custom-faq .accordion-button:not(.collapsed){
    background:#6C63FF;
    color:#fff;
}

/* =========================
   CONTACT
========================= */

.contact-form{
    background:#fff;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-info-box{
    background:#f8f9ff;
    padding:40px;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#1B1535;
    color:#fff;
    padding:80px 0 20px;
}

/* =========================
   MODAL
========================= */

.modal-overlay,
.thank-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.modal-box,
.thank-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    animation:popup .3s ease;
}

@keyframes popup{
    from{transform:scale(0.8);opacity:0}
    to{transform:scale(1);opacity:1}
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){
    .hero h1{
        font-size:32px;
    }

    .section-title h2{
        font-size:28px;
    }
}
@media (max-width: 768px){

    .feature-card,
    .module-card,
    .blog-card,
    .testimonial-card,
    .process-card{
        margin-bottom:20px;
    }

}
.row{
    margin-left:-10px;
    margin-right:-10px;
}

.row > [class*="col-"]{
    padding-left:10px;
    padding-right:10px;
}
.service-card{
    margin-bottom:20px;
}
.whatsapp-icon{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.whatsapp-icon i{
    font-size: 32px;
}

.whatsapp-icon:hover{
    color: #fff;
    transform: scale(1.1);
    transition: .3s;
}
.counter-box h2{
    font-size: 50px;
    font-weight: 700;
    color: #025554;
}
.section-tag{
    display:inline-block;
    background:#025554;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.about-intro{
    padding:90px 0;
}

.about-intro h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
    color:#222;
}

.about-intro p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.experience-badge{
    background:linear-gradient(135deg,#fff7d6,#ffd54f);
    border:3px solid #d4af37;
    border-radius:25px;
    text-align:center;
    padding:40px 30px;
    box-shadow:0 15px 40px rgba(212,175,55,.20);
}

.exp-tag{
    display:inline-block;
    background:#025554;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:20px;
}

.experience-badge h2{
    font-size:90px;
    font-weight:800;
    color:#025554;
    line-height:1;
    margin:0;
}

.experience-badge h4{
    font-size:26px;
    font-weight:700;
    margin:10px 0;
}

.experience-badge p{
    margin:0;
    color:#555;
}

.mission-section{
    padding:80px 0;
    background:#f8f9fa;
}

.info-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-8px);
}

.info-card h3{
    color:#025554;
    margin-bottom:15px;
    font-weight:700;
}

.info-card p{
    color:#666;
    line-height:1.8;
}