body{
    margin: 0;
    padding: 0;
}

.navbar{
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

#reading-progress{
    position: fixed;
    top: 0;
    left: 0;
    height: 6px;
    width: 0%;
    background: linear-gradient(90deg, #0B1F5B, #1E88FF);
    z-index: 1040;
    transition: width .15s linear;
}

.brand-title{
    font-size: 28px;
    font-weight: 800;
    color: #0B1F5B;
    letter-spacing: 2px;
    line-height: 1;
}

.brand-subtitle{
    font-size: 14px;
    letter-spacing: 4px;
    color: #1E88FF;
    font-weight: 600;
}

.nav-link{
    font-weight: 600;
    color: #0B1F5B !important;
    margin: 0 8px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active{
    color: #1E88FF !important;
}

.dropdown-menu{
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.btn-primary,
.btn-outline-primary,
.quote-btn{
    background: linear-gradient(135deg,#0B1F5B,#1E88FF) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    transition: all .3s ease !important;
}

.btn-primary:hover,
.btn-outline-primary:hover,
.quote-btn:hover{
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(30,136,255,.3) !important;
    color: #ffffff !important;
}

/* HERO SECTION */
.hero{
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #eaf4ff 50%,
        #ffffff 100%
    );
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}

/* Background Glow */
.hero::before{
    content: "";
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(30,136,255,0.08);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-decorations{
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero .container{
    position: relative;
    z-index: 2;
}

.hero-shape{
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    opacity: 0.9;
    backdrop-filter: blur(12px);
    animation: floatSlow 8s ease-in-out infinite;
}

.shape-1{
    top: 20%;
    left: 12%;
    background: rgba(11,143,255,0.15);
    box-shadow: 0 0 40px rgba(11,143,255,0.25);
}

.shape-2{
    top: 28%;
    right: 10%;
    width: 110px;
    height: 110px;
    background: rgba(15,204,255,0.16);
    box-shadow: 0 0 40px rgba(15,204,255,0.22);
    animation-delay: 1.2s;
}

.shape-3{
    bottom: 28%;
    left: 22%;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border: 2px solid rgba(11,143,255,0.4);
    box-shadow: 0 0 30px rgba(11,143,255,0.14);
    animation-delay: 2s;
}

.shape-4{
    top: 10%;
    right: 32%;
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(11,143,255,0.18);
    animation-delay: 3s;
}

.shape-5{
    bottom: 18%;
    right: 18%;
    width: 80px;
    height: 80px;
    background: rgba(11,143,255,0.1);
    box-shadow: 0 0 26px rgba(11,143,255,0.18);
    animation-delay: 1.5s;
}

.hero-image-wrap{
    position: relative;
    z-index: 2;
}

.hero-main-image{
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(11,32,85,0.12);
    transition: transform .4s ease;
}

.hero-main-image:hover{
    transform: translateY(-8px) scale(1.01);
}

.hero-sticker{
    position: absolute;
    border-radius: 22px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(11,143,255,0.16);
    box-shadow: 0 24px 56px rgba(11,32,85,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
}

.hero-sticker::after{
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(30,136,255,0.85);
    box-shadow: 0 0 24px rgba(30,136,255,0.4);
}

.sticker-1{
    top: -12%;
    left: -8%;
    width: 100px;
    height: 70px;
    transform: rotate(-10deg);
}

.sticker-2{
    bottom: 2%;
    left: 4%;
    width: 90px;
    height: 90px;
    transform: rotate(12deg);
}

.sticker-3{
    bottom: 16%;
    right: -5%;
    width: 80px;
    height: 80px;
    transform: rotate(-18deg);
}

.hero-wave{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, #f8fbff 45%, #ffffff 100%);
    clip-path: polygon(0 20%, 15% 28%, 30% 17%, 45% 27%, 60% 19%, 75% 28%, 90% 18%, 100% 26%, 100% 100%, 0 100%);
    pointer-events: none;
}

@keyframes floatSlow{
    0%{ transform: translateY(0) scale(1); }
    50%{ transform: translateY(-18px) scale(1.05); }
    100%{ transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
    .hero-decorations{
        display: none;
    }
    .hero-wave{
        height: 90px;
    }
}

/* Heading */
.hero h1{
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    color: #0B1F5B;
    margin-bottom: 25px;
}

/* Paragraph */
.hero p{
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b7a;
    margin-bottom: 35px;
}

/* Primary Button */
.hero .btn-primary{
    background: linear-gradient(
        135deg,
        #0B1F5B,
        #1E88FF
    );
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
}

.hero .btn-primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30,136,255,.3);
}

/* Outline Button */
.hero .btn-outline-primary{
    border: 2px solid #1E88FF;
    color: #1E88FF;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
}

.hero .btn-outline-primary:hover{
    background: #1E88FF;
    color: white;
}

/* Hero Image */
.hero img{
    width: 100%;
    max-width: 650px;
    animation: float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width:991px){

    .hero{
        text-align:center;
        padding:80px 0;
    }

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

    .hero p{
        font-size:16px;
    }

    .hero img{
        margin-top:40px;
    }
}

@media(max-width:576px){

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

    .hero .btn{
        display:block;
        width:100%;
        margin-bottom:15px;
    }
}


/* popup */
.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-box{
    background:#fff;
    width:500px;
    padding:40px;
    border-radius:20px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

.popup-box h2{
    color:#0B1F5B;
    font-weight:700;
}

.popup-box input,
.popup-box select{
    width:100%;
    padding:14px;
    margin-top:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.popup-box button[type="submit"]{
    width:100%;
    margin-top:20px;
    padding:14px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#0B1F5B,#1E88FF);
    color:white;
    font-weight:600;
}

.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
}

/* end */
/* ABOUT SECTION */
.about-section{
    padding:100px 0;
    background:#ffffff;
}

.about-tag{
    display:inline-block;
    padding:8px 18px;
    background:#eaf4ff;
    color:#1E88FF;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.about-section h2{
    font-size:42px;
    font-weight:800;
    color:#0B1F5B;
    line-height:1.3;
    margin-bottom:25px;
}

.about-section p{
    color:#6c757d;
    font-size:17px;
    line-height:1.9;
    margin-bottom:15px;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
    transition:.4s;
}

.about-image img:hover{
    transform:translateY(-10px);
}

.feature-box{
    background:#f8fbff;
    padding:15px;
    border-radius:12px;
    margin-bottom:15px;
    font-weight:600;
    color:#0B1F5B;
    border-left:4px solid #1E88FF;
    transition:.3s;
}

.feature-box:hover{
    transform:translateX(5px);
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.about-btn{
    background:linear-gradient(
        135deg,
        #0B1F5B,
        #1E88FF
    );
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.about-btn:hover{
    transform:translateY(-3px);
}

/* Responsive */
@media(max-width:991px){

    .about-section{
        text-align:center;
    }

    .about-section h2{
        font-size:34px;
        margin-top:30px;
    }
}

@media(max-width:576px){

    .about-section h2{
        font-size:28px;
    }
}
    
/*footer style*/
/* =========================
   FOOTER SECTION
========================= */

.footer-section{
    background: linear-gradient(
        135deg,
        #07163f,
        #0B1F5B,
        #1E88FF
    );
    color:#fff;
    padding:80px 0 25px;
    position:relative;
    overflow:hidden;
}

/* Background Glow */
.footer-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
    filter:blur(40px);
}

.footer-section::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
    filter:blur(40px);
}

/* Logo */
.footer-logo h4{
    font-weight:800;
    margin:0;
    letter-spacing:2px;
}

.footer-logo span{
    color:#a8d0ff;
    letter-spacing:3px;
    font-size:13px;
}

.footer-section p{
    color:#dce8ff;
    line-height:1.8;
}

/* Headings */
.footer-section h5{
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.footer-section h5::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:40px;
    height:3px;
    background:#ffffff;
    border-radius:10px;
}

/* Links */
.footer-section ul{
    list-style:none;
    padding:0;
}

.footer-section ul li{
    margin-bottom:12px;
}

.footer-section ul li a{
    color:#dce8ff;
    text-decoration:none;
    transition:.3s;
    display:inline-block;
}

.footer-section ul li a:hover{
    color:#fff;
    transform:translateX(8px);
}

/* Social Icons */
.social-icons{
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,.12);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:white;
    margin-right:10px;
    text-decoration:none;
    transition:.4s;
}

.social-icons a:hover{
    background:#fff;
    color:#1E88FF;
    transform:translateY(-6px) rotate(360deg);
}

/* Contact */
.contact-item{
    margin-bottom:15px;
    color:#dce8ff;
    transition:.3s;
}

.contact-item:hover{
    transform:translateX(8px);
    color:#fff;
}

/* Divider */
.footer-section hr{
    border-color:rgba(255,255,255,.2);
    margin:40px 0 20px;
}

/* Bottom */
.footer-bottom{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.footer-bottom p{
    margin:0;
    color:#dce8ff;
}

/* Animation */
.footer-section .col-lg-4,
.footer-section .col-lg-3,
.footer-section .col-lg-2{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

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

/* Tablet */
@media(max-width:991px){

    .footer-section{
        text-align:center;
    }

    .footer-section h5::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
    }

}

/* Mobile */
@media(max-width:576px){

    .footer-section{
        padding:60px 0 20px;
    }

    .footer-logo{
        justify-content:center;
    }

    .social-icons a{
        width:40px;
        height:40px;
    }

}

/* Scroll To Top Button */
#scrollTopBtn{

    position:fixed;
    right:25px;
    bottom:105px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:linear-gradient(
        135deg,
        #0B1F5B,
        #1E88FF
    );

    color:white;
    font-size:22px;

    cursor:pointer;

    display:none;

    z-index:9999;

    transition:.3s;
}

#scrollTopBtn:hover{

    transform:translateY(-5px);

}
/* end */
/* what's app button  */
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    z-index:9999;
    text-decoration:none;

    animation:pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}
/* end */

/* ai bot */
.ai-chat-btn{

    position:fixed;
    bottom:25px;
    left:25px;

    width:65px;
    height:65px;

    border-radius:50%;
    background:linear-gradient(
        135deg,
        #0B1F5B,
        #1E88FF
    );

    color:white;
    font-size:30px;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;
    z-index:9999;

    animation:pulseBot 2s infinite;
}

.chat-container{

    position:fixed;
    left:25px;
    bottom:100px;

    width:350px;
    height:500px;

    background:white;

    border-radius:20px;
    overflow:hidden;

    box-shadow:0 10px 40px rgba(0,0,0,.2);

    display:none;

    z-index:9999;
}

.chat-header{

    background:linear-gradient(
        135deg,
        #0B1F5B,
        #1E88FF
    );

    color:white;
    padding:15px;
    font-weight:600;
}

.chat-body{

    height:380px;
    overflow-y:auto;
    padding:15px;
}

.bot-message{

    background:#f1f7ff;
    padding:12px;
    border-radius:12px;
    margin-bottom:10px;
}

.user-message{

    background:#1E88FF;
    color:white;
    padding:12px;
    border-radius:12px;
    margin-bottom:10px;
    text-align:right;
}

.chat-footer{

    display:flex;
    padding:10px;
    gap:10px;
}

.chat-footer input{

    flex:1;
    border:1px solid #ddd;
    padding:10px;
    border-radius:10px;
}

.chat-footer button{

    border:none;
    background:#1E88FF;
    color:white;
    padding:10px 15px;
    border-radius:10px;
}

@keyframes pulseBot{

    0%{
        box-shadow:0 0 0 0 rgba(30,136,255,.5);
    }

    70%{
        box-shadow:0 0 0 20px rgba(30,136,255,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(30,136,255,0);
    }

}
/* end */
/*end style footer*/

/* ==========================================
   BROCHURE QR CODE SECTION
========================================== */

.brochure-qr-wrapper {
    width: 100%;
}


/* Main QR Card */

.brochure-qr-card {

    max-width: 850px;

    margin: 0 auto;

    padding: 28px 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    background: linear-gradient(
        135deg,
        #f8fbff,
        #eef6ff
    );

    border: 1px solid rgba(30, 136, 255, 0.15);

    border-radius: 22px;

    box-shadow:
        0 10px 35px rgba(11, 31, 91, 0.08);

    transition: all 0.3s ease;
}


/* Hover */

.brochure-qr-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(11, 31, 91, 0.13);

}


/* Left Content */

.brochure-qr-content {

    flex: 1;

}


.brochure-tag {

    display: inline-block;

    padding: 6px 14px;

    margin-bottom: 10px;

    background: rgba(30, 136, 255, 0.1);

    color: #1E88FF;

    border-radius: 20px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

}


.brochure-qr-content h3 {

    margin: 5px 0 10px;

    color: #0B1F5B;

    font-size: 27px;

    font-weight: 700;

}


.brochure-qr-content p {

    max-width: 560px;

    margin-bottom: 18px;

    color: #64748b;

    line-height: 1.7;

}


/* Brochure Button */

.brochure-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 20px;

    color: white;

    text-decoration: none;

    border-radius: 30px;

    background: linear-gradient(
        135deg,
        #0B1F5B,
        #1E88FF
    );

    font-weight: 600;

    transition: all 0.3s ease;

}


.brochure-btn:hover {

    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(30, 136, 255, 0.3);

}


/* ==========================================
   QR CODE
========================================== */

.brochure-qr {

    min-width: 160px;

    text-align: center;

}


.qr-box {

    width: 135px;

    height: 135px;

    padding: 8px;

    margin: 0 auto 10px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.08);

}


.qr-box img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

}


.brochure-qr span {

    display: block;

    color: #0B1F5B;

    font-size: 13px;

    font-weight: 600;

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .brochure-qr-card {

        flex-direction: column;

        text-align: center;

        padding: 25px 20px;

    }


    .brochure-qr-content p {

        margin-left: auto;

        margin-right: auto;

    }


    .brochure-qr {

        min-width: auto;

    }

}


@media (max-width: 480px) {

    .brochure-qr-card {

        border-radius: 18px;

        padding: 22px 15px;

    }


    .brochure-qr-content h3 {

        font-size: 23px;

    }


    .brochure-qr-content p {

        font-size: 14px;

    }

}