:root{
    --primary: #0d6efd;
    --dark: #0b1d39;
    --light: #f8f9fa;
    --text: #555;
    --white: #ffffff;
    --success: #198754;
}

GLOBAL RESET
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: var(--light);
    color: #222;
    scroll-behavior: smooth;
}

/* CONTAINER */
.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* SECTION SPACING */
section{
    padding: 80px 0;
}

/* SECTION TITLE */
.section-title{
    margin-bottom: 40px;
}

.section-title h2{
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
}

.section-title p{
    color: var(--text);
    margin-top: 10px;
}

/* FADE UP EFFECT */
@keyframes fadeUp {
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* APPLY ANIMATION */
section, .service-card, .module-card, .why-card, .benefit-card, .testimonial-card{
    animation: fadeUp 0.8s ease-in-out;
}

/* HOVER SMOOTH */
.service-card,
.module-card,
.why-card,
.benefit-card,
.testimonial-card{
    transition: all 0.3s ease;
}

button, .btn-about, .demo-form button{
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

button:hover, .btn-about:hover, .demo-form button:hover{
    background: #084cdf;
    transform: translateY(-3px);
}

.service-card,
.module-card,
.why-card,
.benefit-card,
.testimonial-card{
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HOVER LIFT EFFECT */
.service-card:hover,
.module-card:hover,
.why-card:hover,
.benefit-card:hover,
.testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@media(max-width: 768px){
    .section-title h2{
        font-size: 28px;
    }

    section{
        padding: 50px 0;
    }
}
html{
    scroll-behavior: smooth;
}
img{
    transition: 0.3s ease;
}

img:hover{
    transform: scale(1.03);
}

body{
    font-family:'Poppins',sans-serif;
}


.navbar-brand{
    font-size:28px;
    color:#0d6efd !important;
}

.nav-link{
    font-weight:500;
    margin:0 8px;
    color:#222 !important;
}

.nav-link:hover{
    color:#0d6efd !important;
}

.dropdown-menu{
    border:none;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.btn-primary{
    border-radius:50px;
    padding:10px 24px;
}

.hero{
    background:#dae9f7;
   
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.map-section h3{
    margin-bottom:10px;
    font-size:20px;
}

.map-section iframe{
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

/* <!-----collage in header-----> */
.image-collage{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 750px;
    margin: auto;
    padding: 20px;
}

/* All images */
.image-collage img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

/* Hover effect */
.image-collage img:hover{
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Featured image (big one) */
.img1{
    grid-column: span 2;
    height: 420px;
}

/* Responsive */
@media (max-width: 768px){
    .image-collage{
        grid-template-columns: repeat(2, 1fr);
    }

    .img1{
        grid-column: span 2;
        height: 250px;
    }
}

@media (max-width: 480px){
    .image-collage{
        grid-template-columns: 1fr;
    }

    .img1{
        grid-column: span 1;
        height: 220px;
    }
}

    /* services css */

    .services-section{
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-title h2{
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-title p{
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.service-card i{
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.service-card h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p{
    color: #666;
    font-size: 14px;
}

/* HOVER EFFECT */
.service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 992px){
    .services-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .services-grid{
        grid-template-columns: 1fr;
    }
}

```css
/* =========================
   ABOUT PAGE
========================= */
.about-page{
    padding:80px 0;
    background:#f8fafc;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:10px;
}

.section-title p{
    color:#64748b;
    font-size:17px;
}

/* =========================
   ABOUT TOP
========================= */
.about-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    margin-top:60px;
}

.about-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.about-text h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
    color:#0f172a;
}

.about-text p{
    color:#475569;
    line-height:1.9;
    margin-bottom:15px;
}

/* =========================
   MISSION VISION
========================= */
.mission-vision{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:80px;
}

.mv-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    border-top:5px solid #0d6efd;
}

.mv-box:hover{
    transform:translateY(-8px);
}

.mv-box h3{
    margin-bottom:20px;
    font-weight:700;
    color:#1e293b;
}

.mv-box p{
    color:#64748b;
    line-height:1.8;
}

/* =========================
   HIGHLIGHTS
========================= */
.about-highlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.highlight{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}

.highlight:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(13,110,253,.15);
}

.highlight h3{
    font-size:20px;
    font-weight:600;
    color:#0f172a;
    margin-bottom:12px;
}

.highlight p{
    color:#64748b;
    margin-bottom:0;
    line-height:1.7;
}

/* =========================
   CORE MODULES
========================= */
.row .highlight{
    padding:25px;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    text-decoration:none;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.08);
    color:#fff;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px){

    .about-top{
        grid-template-columns:1fr;
    }

    .mission-vision{
        grid-template-columns:1fr;
    }

    .about-highlights{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .about-page{
        padding:50px 0;
    }

    .section-title h2{
        font-size:32px;
    }

    .about-text h3{
        font-size:28px;
    }

    .about-highlights{
        grid-template-columns:1fr;
    }

    .mv-box,
    .highlight{
        padding:25px;
    }
}



/* module */

.modules-section{
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-title h2{
    font-size: 36px;
    font-weight: bold;
}

.section-title p{
    color: #666;
    margin-bottom: 40px;
}

.modules-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.module-card{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.module-card:hover{
    transform: translateY(-10px);
}

/* HEADER */
.module-header{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.module-header i{
    font-size: 30px;
    color: #0d6efd;
}

.module-header h3{
    font-size: 22px;
}

/* TEXT */
.module-card p{
    color: #555;
    margin-bottom: 15px;
}

/* LIST */
.module-card ul{
    list-style: none;
    padding: 0;
}

.module-card ul li{
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .modules-grid{
        grid-template-columns: 1fr;
    }
}


/* why choose us */
.why-section{
    padding: 80px 20px;
    background: #ffffff;
}

.section-title h2{
    font-size: 36px;
    font-weight: bold;
}

.section-title p{
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.why-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.why-card{
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.why-card i{
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.why-card h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p{
    font-size: 14px;
    color: #555;
}

/* HOVER */
.why-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width: 992px){
    .why-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .why-grid{
        grid-template-columns: 1fr;
    }
}

/* benefit */
.benefits-section{
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-title h2{
    font-size: 36px;
    font-weight: bold;
}

.section-title p{
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.benefits-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.benefit-card{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.benefit-card i{
    font-size: 40px;
    color: #198754;
    margin-bottom: 15px;
}

.benefit-card h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-card p{
    font-size: 14px;
    color: #555;
}

/* HOVER */
.benefit-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width: 992px){
    .benefits-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .benefits-grid{
        grid-template-columns: 1fr;
    }
}

/* request demo */
.demo-section{
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-title h2{
    font-size: 36px;
    font-weight: bold;
}

.section-title p{
    color: #666;
    margin-bottom: 40px;
}

/* WRAPPER */
.demo-wrapper{
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* FORM */
.demo-form{
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.demo-form input,
.demo-form textarea{
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.demo-form button{
    width: 100%;
    padding: 12px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.demo-form button:hover{
    background: #084cdf;
}

/* INFO */
.demo-info{
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.demo-info h3{
    margin-bottom: 15px;
}

.demo-info ul{
    list-style: none;
    padding: 0;
}

.demo-info ul li{
    margin-bottom: 10px;
    color: #333;
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .demo-wrapper{
        flex-direction: column;
    }
}

/* testimonial */
.testimonials-section{
    padding: 80px 20px;
    background: #ffffff;
}

.section-title h2{
    font-size: 36px;
    font-weight: bold;
}

.section-title p{
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.testimonials-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.testimonial-card{
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
}

.testimonial-card p{
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card h4{
    margin-bottom: 5px;
    font-size: 18px;
}

.testimonial-card span{
    color: #888;
    font-size: 14px;
}

/* HOVER */
.testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width: 992px){
    .testimonials-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .testimonials-grid{
        grid-template-columns: 1fr;
    }
}

/* stats */
..stats-section{
    padding:80px 0;
    background:#f5f7fa;
}

.stat-card{
    background:#fff;
    padding:40px 20px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h2{
    font-size:40px;
    font-weight:800;
    color:#0b1f3a;
}

.stat-card p{
    margin-top:10px;
    font-weight:600;
    color:#666;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .stats-grid{
        grid-template-columns: 1fr;
    }
}

/* footer */
.footer-section{
    background: #0b1d39;
    color: #fff;
    padding: 60px 20px 20px;
}

/* GRID */
.footer-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* BOX */
.footer-box h3{
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffffff;
}

.footer-box p{
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-box ul{
    list-style: none;
    padding: 0;
}

.footer-box ul li{
    margin-bottom: 8px;
}

.footer-box ul li a{
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover{
    color: #0d6efd;
}

/* LINE */
.footer-section hr{
    margin: 30px 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* BOTTOM */
.footer-bottom{
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .footer-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .footer-grid{
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* about page */
.about-page{
    padding: 80px 0;
    background: #f8f9fa;
}

/* TOP SECTION */
.about-top{
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.about-img img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-text h3{
    font-size: 28px;
    margin-bottom: 15px;
}

.about-text p{
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* MISSION VISION */
.mission-vision{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.mv-box{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* HIGHLIGHTS */
.about-highlights{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.highlight{
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.highlight:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width: 992px){
    .about-top{
        flex-direction: column;
    }

    .mission-vision{
        grid-template-columns: 1fr;
    }

    .about-highlights{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .about-highlights{
        grid-template-columns: 1fr;
    }
}

/* about card mission or vission */
.mission-vision{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

/* CARD STYLE */
.mv-box{
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    border-left: 5px solid #0d6efd;
}

.mv-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TEXT */
.mv-box h3{
    font-size: 24px;
    margin-bottom: 15px;
    color: #0b1d39;
}

.mv-box p{
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .mission-vision{
        grid-template-columns: 1fr;
    }
}


.blog-page{
    padding: 80px 0;
    background: #f8f9fa;
}

/* GRID */
.blog-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.blog-card{
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.blog-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENT */
.blog-card h3{
    font-size: 18px;
    margin: 15px;
    color: #0b1d39;
}

.blog-card p{
    font-size: 14px;
    color: #555;
    margin: 0 15px 15px;
}

/* LINK */
.blog-card a{
    display: inline-block;
    margin: 0 15px 20px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

/* HOVER */
.blog-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width: 992px){
    .blog-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .blog-grid{
        grid-template-columns: 1fr;
    }
} 

/* contact us */
.contact-section{
    padding: 80px 0;
    background: #f8f9fa;
}

/* WRAPPER */
.contact-wrapper{
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

/* FORM */
.contact-form{
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px 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: 8px;
    outline: none;
}

.contact-form button{
    width: 100%;
    padding: 12px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover{
    background: #084cdf;
}

/* INFO */
.contact-info{
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-info h3{
    margin-bottom: 15px;
}

.contact-info p{
    margin-bottom: 10px;
    color: #555;
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .contact-wrapper{
        flex-direction: column;
    }
}


.mega-menu{
    width: 800px;
    padding: 20px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* HEADER */
.mega-header{
    text-align: center;
    margin-bottom: 20px;
}

.mega-header h5{
    margin: 0;
    font-weight: 700;
    color: #0b1d39;
}

.mega-header p{
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* GRID */
.mega-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD STYLE */
.mega-card{
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s;
}

.mega-card:hover{
    background: #e9f2ff;
    transform: translateY(-5px);
}

.mega-card h6{
    font-weight: bold;
    margin-bottom: 10px;
    color: #0d6efd;
}

/* LIST */
.mega-card ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-card ul li{
    font-size: 14px;
    padding: 3px 0;
    color: #555;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 15px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 999;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

header{
    margin:0;
    padding:0;
}
.blog-detail{
    background:#f8f9fa;
}

.blog-content{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.blog-content h2{
    margin-top:30px;
    margin-bottom:15px;
    color:#0b1d39;
    font-weight:700;
}

.blog-content h4{
    margin-top:25px;
    color:#0d6efd;
}

.blog-content p{
    line-height:1.8;
    color:#555;
}

.blog-content ul li{
    margin-bottom:10px;
}

.blog-banner{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

@media(max-width:768px){
    .blog-banner{
        height: 250px;
    }
}

/* Blog Hero Image */
.blog-hero{
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.blog-hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s ease;
}

.blog-hero img:hover{
    transform: scale(1.05);
}

/* Mobile */
@media(max-width:768px){
    .blog-hero{
        height: 250px;
    }
}

.modal-content,
.modal-body,
.modal-title,
label{
    color:#000 !important;
}