/* ===========================
   GLOBAL
=========================== */

:root{
    --primary:#005BAC;
    --secondary:#0E2F56;
    --gold:#F5B800;
    --gold-dark:#d99f00;
    --light:#F5F7FA;
    --dark:#1B2A41;
    --text:#333333;
    --white:#ffffff;
    --border:#e5e5e5;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
    
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
}

.section-padding{
    padding:80px 0;
}

.section-title{
    font-size:40px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:15px;
}

.section-subtitle{
    color:#666;
    max-width:700px;
    margin:auto;
}

/* ===========================
   TOP BAR
=========================== */

.top-bar{
    background:var(--secondary);
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-bar span{
    margin-right:20px;
}

.social-icons a{
    color:#fff;
    margin-left:12px;
}

.social-icons a:hover{
    color:var(--gold);
}

/* ===========================
   HEADER
=========================== */

.main-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.navbar{
    padding:15px 0;
}

.site-logo{
    height:60px;
}

.text-logo{
    font-size:28px;
    font-weight:700;
    color:var(--primary);
}

.nav-link{
    font-weight:500;
    margin-left:10px;
    color:var(--dark)!important;
}

.nav-link:hover{
    color:var(--primary)!important;
}

.nav-link.active{
    color:var(--primary)!important;
    font-weight:600;
}

.consultation-btn{
    background:var(--gold);
    color:#000;
    padding:10px 20px;
    border-radius:6px;
    font-weight:600;
}

.consultation-btn:hover{
    background:var(--gold-dark);
    color:#000;
}

/* ===========================
   BUTTONS
=========================== */

.btn-primary-custom{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:6px;
    font-weight:600;
}

.btn-primary-custom:hover{
    background:var(--secondary);
    color:#fff;
}



/* ===========================
   HERO SECTION
=========================== */

.hero-section{
    background:
    linear-gradient(
        135deg,
        #001D4A 0%,
        #002B63 30%,
        #004C97 65%,
        #0070D1 100%
    );
    position:relative;
    overflow:hidden;
    padding: 10px;
}
.hero-section::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(34,197,94,.12);
    border-radius:50%;
    right:-200px;
    top:-100px;
    filter:blur(80px);
}
.hero-section::after{
    content:'';
    position:absolute;
    inset:0;
    background:url('assets/images/pattern.svg');
    opacity:.04;
}
.hero-section h1{
    font-size:54px;
    font-weight:700;
    color:whitesmoke;
    line-height:1.2;
}

.hero-section p{
    font-size:18px;
    color:#f7f4f4;
    margin-top:20px;
    margin-bottom:30px;
}

.hero-image{
    text-align:center;
}
.row .hero-features{
    color: #25d366;
    font-weight: 400;

}
/* ===========================
   NOTIFICATION TICKER
=========================== */

.notification-bar{
    background:var(--primary);
    color:#fff;
    padding:12px 0;
}

.notification-bar marquee{
    font-weight:500;
}

/* ===========================
   CARDS
=========================== */

.custom-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    border:1px solid #eee;
    transition:.3s;
    height:100%;
}

.custom-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.custom-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-body-custom{
    padding:20px;
}

.card-body-custom h4{
    font-size:22px;
    font-weight:600;
    color:var(--secondary);
}

.card-body-custom p{
    color:#666;
}

/* ===========================
   WHY CHOOSE US
=========================== */

.why-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    border:1px solid #eee;
    text-align:center;
    transition:.3s;
    height:100%;
}

.why-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.why-box i{
    font-size:45px;
    color:var(--primary);
    margin-bottom:15px;
}

/* ===========================
   COUNTERS
=========================== */

.counter-section{
    background:var(--secondary);
    color:#fff;
}

.counter-box{
    text-align:center;
}

.counter-box h2{
    font-size:48px;
    font-weight:700;
    color:var(--gold);
}

.counter-box p{
    margin:0;
}

/* ===========================
   TESTIMONIALS
=========================== */

.testimonial-box{
    background:#fff;
    border-radius:15px;
    padding:25px;
    border:1px solid #eee;
    height:100%;
}

.testimonial-box img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-box h5{
    margin-top:15px;
    margin-bottom:5px;
}

.testimonial-stars{
    color:var(--gold);
}

/* ===========================
   FAQ
=========================== */

.accordion-button:not(.collapsed){
    background:var(--primary);
    color:#fff;
}

/* ===========================
   QUERY FORM
=========================== */

.query-form{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-control{
    min-height:50px;
    border-radius:6px;
}

textarea.form-control{
    min-height:150px;
}

/* ===========================
   CTA
=========================== */

.cta-section{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;
}

.cta-section h2{
    font-size:42px;
    font-weight:700;
}

/* FOOTER */

.footer-section{
    background:
    linear-gradient(
        135deg,
        #0A2E5C 0%,
        #005BAC 100%
    );
    color:#fff;
    padding-top:80px;
}

.footer-logo{
    font-size:32px;
    font-weight:800;
    margin-bottom:20px;
}

.footer-about p{
    color:rgba(255,255,255,.8);
    line-height:1.9;
}

.footer-heading{
    color:#F9C400;
    font-weight:700;
    margin-bottom:25px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#F9C400;
    padding-left:5px;
}

.footer-contact{
    list-style:none;
    padding:0;
}

.footer-contact li{
    margin-bottom:15px;
    display:flex;
    gap:10px;
    align-items:flex-start;
}

.footer-contact i{
    color:#F9C400;
    margin-top:4px;
}

.footer-social{
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.1);
    border-radius:50%;
    color:#fff;
    margin-right:10px;
    transition:.3s;
}

.footer-social a:hover{
    background:#F9C400;
    color:#1B2A41;
}

.copyright-bar{
    margin-top:60px;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.15);
    color:rgba(255,255,255,.8);
}

.floating-whatsapp,
.floating-call{
    position:fixed;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    z-index:999;
    text-decoration:none;
}

.floating-whatsapp{
    bottom:90px;
    background:#25D366;
}


.floating-call {
    bottom: 20px;
    background: #f9c400;
    color: #004698;
}
/* ===========================
   PAGE BANNER
=========================== */

.page-banner{
    background:var(--secondary);
    color:#fff;
    padding:70px 0;
    text-align:center;
}

.page-banner h1{
    font-size:42px;
    font-weight:700;
}
/* ABOUT SECTION */

.about-section{
    background:#ffffff;
}

.section-tag{
    display:inline-block;
    color:#005BAC;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.about-title{
    font-size:42px;
    font-weight:700;
    color:#1B2A41;
    margin-bottom:10px;
}

.about-designation{
    color:#666;
    margin-bottom:15px;
}

.about-divider{
    width:80px;
    height:4px;
    background:#F9C400;
    border-radius:20px;
    margin-bottom:25px;
}

.about-description{
    color:#555;
    line-height:1.9;
}

.about-image-wrapper{
    position:relative;
}

.about-main-image{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.experience-badge{
    position:absolute;
    right:-15px;
    bottom:30px;
    background:#005BAC;
    color:#fff;
    padding:18px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,91,172,.25);
}

.experience-badge .years{
    display:block;
    font-size:20px;
    font-weight:700;
}

.about-info-box{
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:15px;
    padding:25px;
    height:100%;
    transition:.3s;
}

.about-info-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.info-icon{
    width:60px;
    height:60px;
    background:#F5F7FA;
    color:#005BAC;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:15px;
}

.about-info-box h5{
    font-weight:700;
    color:#1B2A41;
}

.about-info-box p{
    color:#666;
    margin-bottom:0;
}

@media(max-width:991px){

    .about-title{
        font-size:34px;
    }

    .experience-badge{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
        display:inline-block;
    }
}
/* WHY CHOOSE US */

.why-section{
    background:#F8FAFD;
}

.why-section .section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.why-section .section-heading span{
    color:#005BAC;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.why-section .section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#1B2A41;
    margin-top:10px;
}

.why-section .section-heading p{
    color:#666;
    margin-top:20px;
}

.why-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.35s;
    border:1px solid #eef2f7;
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#F9C400;
    transform:scaleX(0);
    transition:.35s;
}

.why-card:hover::before{
    transform:scaleX(1);
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,91,172,.10);
}

.why-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#F5F8FC;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{
    font-size:34px;
    color:#005BAC;
}

.why-card h4{
    font-size:22px;
    font-weight:700;
    color:#1B2A41;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

@media(max-width:991px){

    .why-section .section-heading h2{
        font-size:34px;
    }

}
/* SERVICES SECTION */

.services-section{
    background:#ffffff;
}

.services-section .section-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.services-section .section-heading span{
    color:#005BAC;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.services-section .section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#1B2A41;
    margin-top:10px;
}

.services-section .section-heading p{
    color:#666;
    margin-top:20px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    height:100%;
    border:1px solid #eef2f7;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#F9C400;
    transform:scaleX(0);
    transition:.35s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,91,172,.10);
}

.service-icon{
    width:80px;
    height:80px;
    border-radius:18px;
    background:#F5F8FC;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    color:#005BAC;
    font-size:34px;
}

.service-card h4{
    color:#1B2A41;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.service-btn{
    color:#005BAC;
    font-weight:600;
    text-decoration:none;
}

.service-btn:hover{
    color:#F9C400;
}

@media(max-width:991px){

    .services-section .section-heading h2{
        font-size:34px;
    }

}
/* SERVICE MODAL */

.service-modal{
    border:none;
    border-radius:20px;
    overflow:hidden;
}

.service-modal .modal-header{
    background:#005BAC;
    color:#fff;
    padding:20px 25px;
}

.service-modal .btn-close{
    filter:brightness(0) invert(1);
}

.service-modal .modal-body{
    padding:30px;
}

.service-modal-description{
    color:#555;
    line-height:1.9;
    font-size:16px;
}

.service-modal .modal-footer{
    border-top:1px solid #eee;
    padding:20px 25px;
}

/* Better Service Button */

.service-btn{
    color:#005BAC;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    color:#F9C400;
}

.service-btn i{
    transition:.3s;
}

.service-btn:hover i{
    transform:translateX(5px);
}
.service-block{
    margin-top:30px;
}

.service-block h5{
    color:#1B2A41;
    font-weight:700;
    margin-bottom:15px;
}

.service-list{
    list-style:none;
    padding:0;
}

.service-list li{
    padding:8px 0;
    border-bottom:1px solid #eee;
    position:relative;
    padding-left:25px;
}

.service-list li:before{
    content:'✓';
    position:absolute;
    left:0;
    color:#28a745;
    font-weight:bold;
}
.service-block{
    margin-top:30px;
}

.service-block h5{
    font-size:20px;
    font-weight:700;
    color:#1B2A41;
    margin-bottom:15px;
}

.service-list{
    list-style:none;
    padding:0;
    margin:0;
}

.service-list li{
    padding:10px 0;
    padding-left:30px;
    position:relative;
    border-bottom:1px solid #eee;
    color:#555;
}

.service-list li:before{
    content:'✓';
    position:absolute;
    left:0;
    top:10px;
    color:#28a745;
    font-weight:700;
}

.service-modal .modal-body{
    max-height:65vh;
    overflow-y:auto;
}

.service-modal-description{
    color:#555;
    line-height:1.9;
    font-size:16px;
}
/* SERVICES SECTION */

.services-section{
    background:
    linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef5ff 50%,
        #fff9e6 100%
    );
    position:relative;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    height:100%;
    border:1px solid #eef2f7;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,91,172,.12);
}

.service-card-tag{
    display:inline-block;
    background:#eef5ff;
    color:#005BAC;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:20px;
}

.service-icon{
    width:80px;
    height:80px;
    border-radius:18px;
    background:#f5f8fc;
    display:flex;
    align-items:center;
    justify-content:center;
    float: right;
    margin-bottom:20px;
}

.service-icon i{
    font-size:34px;
    color:#005BAC;
}

.service-card h4{
    font-size:24px;
    font-weight:700;
    color:#1B2A41;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

.service-card-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
}

.service-btn{
    color:#005BAC;
    font-weight:600;
}

.service-btn:hover{
    color:#F9C400;
}

.service-modal{
    border:none;
    border-radius:20px;
}

.service-modal .modal-header{
    background:#005BAC;
    color:#fff;
}

.service-modal .btn-close{
    filter:brightness(0) invert(1);
}

.service-banner{
    display:flex;
    gap:20px;
    align-items:center;
    margin-bottom:25px;
    background:#f8fbff;
    padding:20px;
    border-radius:15px;
}

.service-banner-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:#005BAC;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.service-modal-description{
    line-height:1.9;
    color:#555;
}

.service-block{
    margin-top:30px;
}

.service-block h5{
    font-weight:700;
    color:#1B2A41;
    margin-bottom:15px;
}

.info-box{
    background:#f8fbff;
    border-radius:15px;
    padding:20px;
    height:100%;
}

.info-box h6{
    font-weight:700;
    margin-bottom:15px;
}

.service-list{
    list-style:none;
    padding:0;
    margin:0;
}

.service-list li{
    padding:10px 0 10px 30px;
    position:relative;
    border-bottom:1px solid #eee;
}

.service-list li:before{
    content:'✓';
    position:absolute;
    left:0;
    color:#28a745;
    font-weight:bold;
}

.process-list{
    counter-reset:step;
    list-style:none;
    padding:0;
}

.process-list li{
    position:relative;
    padding-left:50px;
    margin-bottom:15px;
}

.process-list li:before{
    counter-increment:step;
    content:counter(step);
    position:absolute;
    left:0;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#005BAC;
    color:#fff;
    text-align:center;
    line-height:32px;
    font-weight:700;
}
/* COUNTER SECTION */

.stats-section{
padding:80px 0;
background:
linear-gradient(
135deg,
#005BAC 0%,
#0A2E5C 100%
);
position:relative;
overflow:hidden;
}

.stats-section:before{
content:'';
position:absolute;
width:400px;
height:400px;
background:rgba(255,255,255,.05);
border-radius:50%;
top:-200px;
right:-150px;
}

.stats-wrapper{
position:relative;
z-index:2;
}

.stat-card{
text-align:center;
background:rgba(255,255,255,.08);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,.1);
border-radius:20px;
padding:35px 20px;
transition:.4s;
height:100%;
}

.stat-card:hover{
transform:translateY(-8px);
background:rgba(255,255,255,.12);
}

.stat-icon{
width:80px;
height:80px;
margin:0 auto 20px;
border-radius:50%;
background:rgba(255,255,255,.15);
display:flex;
align-items:center;
justify-content:center;
}

.stat-icon i{
font-size:32px;
color:#F9C400;
}

.counter-number{
color:#fff;
font-size:42px;
font-weight:800;
margin-bottom:10px;
}

.counter-title{
color:#dbe7ff;
font-size:16px;
margin-bottom:0;
font-weight:500;
}

@media(max-width:768px){

.counter-number{
    font-size:30px;
}

.stat-icon{
    width:65px;
    height:65px;
}

.stat-icon i{
    font-size:26px;
}

}
/* TESTIMONIAL SECTION */

.testimonial-section{
    background:
    linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef5ff 50%,
        #fff9e6 100%
    );
    overflow:hidden;
}

.testimonial-slider{
    position:relative;
    overflow:hidden;
    margin-top:50px;
    border-radius:20px;
}

.testimonial-slider::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:80px;
    height:100%;
    z-index:5;
    background:
    linear-gradient(
        to right,
        #f8fbff,
        transparent
    );
}

.testimonial-slider::after{
    content:'';
    position:absolute;
    right:0;
    top:0;
    width:80px;
    height:100%;
    z-index:5;
    background:
    linear-gradient(
        to left,
        #fff9e6,
        transparent
    );
}

.testimonial-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:testimonialScroll 35s linear infinite;
}

.testimonial-slider:hover .testimonial-track{
    animation-play-state:paused;
}

@keyframes testimonialScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

.testimonial-item{
    width:350px;
    flex-shrink:0;
}

.testimonial-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    border:1px solid #eef2f7;
    position:relative;
    height:100%;
    transition:.4s;
}

.testimonial-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:
    linear-gradient(
        90deg,
        #005BAC,
        #F9C400
    );
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 40px rgba(0,91,172,.12);
}

.testimonial-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.rating-stars i{
    color:#F9C400;
    margin-right:2px;
}

.quote-icon{
    font-size:36px;
    color:#005BAC;
    opacity:.15;
}

.testimonial-message{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
    min-height:130px;
}

.testimonial-user{
    display:flex;
    align-items:center;
}

.testimonial-user img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
    border:4px solid #eef5ff;
}

.testimonial-avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#005BAC;
    color:#fff;
    font-size:24px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
}

.testimonial-user h6{
    margin:0;
    font-weight:700;
    color:#1B2A41;
}

.testimonial-user span{
    color:#888;
    font-size:14px;
}

@media(max-width:768px){

    .testimonial-item{
        width:280px;
    }

    .testimonial-message{
        min-height:auto;
    }

}
.testimonial-section .section-heading span{
    color:#005BAC;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.testimonial-section .section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#1B2A41;
    margin-top:10px;
}

.testimonial-section .section-heading p{
    color:#666;
    margin-top:20px;
}
.testimonial-section .section-heading{
    text-align: center;
}
/* NEWS SECTION */

.news-section{
    background:#fff;
}

.news-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #eef2f7;
    transition:.4s;
    height:100%;
}

.news-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 40px rgba(0,91,172,.12);
}

.news-image-wrapper{
    position:relative;
    overflow:hidden;
}

.news-image{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.news-card:hover .news-image{
    transform:scale(1.08);
}


.news-date {
    position: relative;
    top: 30px;
    left: 30px;
    background: #005BAC;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    width: max-content;
    z-index: 3;
}

.news-content{
    padding:25px;
}

.news-content h5{
    color:#1B2A41;
    font-weight:700;
    line-height:1.5;
    margin-bottom:15px;
}

.news-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.news-btn{
    color:#005BAC;
    font-weight:600;
    text-decoration:none;
}

.news-btn:hover{
    color:#F9C400;
}

@media(max-width:768px){

    .news-image{
        height:220px;
    }

}
.news-section .section-heading span{
    color:#005BAC;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.news-section .section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#1B2A41;
    margin-top:10px;
}

.news-section .section-heading p{
    color:#666;
    margin-top:20px;
}
.news-section .section-heading{
    text-align: center;
}
/* FAQ SECTION */

.faq-section{
    background:
    linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef5ff 50%,
        #fff 100%
    );
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:18px !important;
    overflow:hidden;
    box-shadow:
    0 10px 25px rgba(0,91,172,.06);
}

.custom-faq .accordion-button{
    background:#fff;
    color:#1B2A41;
    font-weight:600;
    font-size:17px;
    padding:22px 25px;
    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#005BAC;
    color:#fff;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-body{
    background:#fff;
    padding:25px;
    color:#666;
    line-height:1.9;
}

.faq-number{
    min-width:45px;
    height:45px;
    border-radius:50%;
    background:#F9C400;
    color:#1B2A41;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
}

.custom-faq .accordion-button:not(.collapsed) .faq-number{
    background:#fff;
    color:#005BAC;
}

.custom-faq .accordion-button::after{
    filter:none;
}

.custom-faq .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

@media(max-width:768px){

    .custom-faq .accordion-button{
        font-size:15px;
        padding:18px;
    }

    .faq-number{
        min-width:38px;
        height:38px;
        margin-right:10px;
        font-size:14px;
    }

}
.faq-section .section-heading span{
    color:#005BAC;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.faq-section .section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#1B2A41;
    margin-top:10px;
}

.faq-section .section-heading p{
    color:#666;
    margin-top:20px;
}
.faq-section .section-heading{
    text-align: center;
}
/* CTA SECTION */

.cta-section{
    padding:100px 0;
    background:
    linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef5ff 100%
    );
}

.cta-box{
    background:
    linear-gradient(
        135deg,
        #005BAC 0%,
        #0A2E5C 100%
    );
    border-radius:30px;
    padding:60px;
    position:relative;
    overflow:hidden;
}

.cta-box::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:
    rgba(255,255,255,.05);
    top:-150px;
    right:-120px;
}

.cta-tag{
    display:inline-block;
    background:#F9C400;
    color:#1B2A41;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-box h2{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-box p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.8;
    max-width:700px;
}

.cta-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
}



.btn-whatsapp{
    background:#25D366;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
}

.btn-whatsapp:hover{
    color:#fff;
}

@media(max-width:768px){

    .cta-box{
        padding:35px;
    }

    .cta-box h2{
        font-size:30px;
    }

    .cta-box p{
        font-size:16px;
    }

}
.main-header{
    background:#fff;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.header-top{
    padding:12px 0;
    background:#fff;
}

.site-logo{
    max-height:70px;
    width:auto;
}

.text-logo{
    font-size:32px;
    font-weight:700;
    color:#005BAC;
}

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-phone{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#1B2A41;
}

.header-phone i{
    width:45px;
    height:45px;
    line-height:45px;
    text-align:center;
    border-radius:50%;
    background:#005BAC;
    color:#fff;
}

.header-phone small{
    display:block;
    font-size:12px;
    color:#777;
}

.header-phone strong{
    display:block;
    color:#1B2A41;
}

.consultation-btn{
    background:#F9C400;
    color:#000;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:700;
}

.consultation-btn:hover{
    background:#e4b300;
    color:#000;
}

.menu-bar{
    background:#005BAC;
}

.menu-bar .nav-link{
    color:#fff !important;
    padding:16px 18px !important;
    font-weight:600;
}

.menu-bar .nav-link:hover,
.menu-bar .nav-link.active{
    color:#F9C400 !important;
}

.dropdown-menu{
    border:none;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.dropdown-item{
    padding:10px 15px;
}

.dropdown-item:hover{
    background:#F4F8FF;
    color:#005BAC;
}

@media(min-width:992px){

    .dropdown:hover .dropdown-menu{
        display:block;
    }

}

@media(max-width:991px){
.hero-image-wrap{
    margin-top: 10px;
}
    .header-top{
        padding:10px 0;
    }

    .header-top .d-flex{
        flex-direction:row !important;
        align-items:center;
        justify-content:space-between;
    }

    .site-logo{
        max-height:50px;
    }

    .header-phone{
        display:none;
    }

    .consultation-btn{
        display:none;
    }

    .navbar-toggler{
        border:none;
        padding:8px 12px;
        background:#005BAC;
        color:#fff;
        border-radius:6px;
    }

    .navbar-collapse{
        margin-top:10px;
        background:#fff;
        padding:15px;
        border-radius:10px;
        box-shadow:0 5px 20px rgba(0,0,0,.08);
    }

    .menu-bar .nav-link{
        color:#1B2A41 !important;
        padding:12px 0 !important;
        border-bottom:1px solid #eee;
    }

}
.hero-image{
    position:relative;
    overflow:hidden;
}

.hero-image::after{
    content:'';
    position:absolute;
    bottom:-120px;
    right:-50px;

    width:700px;
    height:300px;

    background:#005BAC;

    border-radius:100% 0 0 0;

    transform:rotate(-8deg);
}.hero-image::before{
    content:'';
    position:absolute;

    bottom:-80px;
    right:-30px;

    width:720px;
    height:280px;

    border-top:6px solid #F9C400;

    border-radius:100% 0 0 0;

    transform:rotate(-8deg);

    z-index:2;
}
.hero-buttons .btn{
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    font-size:15px;
    transition:all .3s ease;
}

/* Primary Button */



/* Secondary Button */

.btn-outline-hero{
    background:transparent;
    color:#ffffff;
    border:2px solid rgba(255,255,255,.4);
}

.btn-outline-hero:hover{
    background:#ffffff;
    color:#005BAC;
    border-color:#ffffff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,255,255,.20);
}

/* Mobile */

@media(max-width:768px){

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .hero-buttons .btn{
        width:100%;
    }

}
.btn-gold{
    background:#F9C400 !important;
    color:#1B2A41 !important;
    border:2px solid #F9C400 !important;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:all .3s ease !important;
}

.btn-gold:hover{
    background:#e5b300 !important;
    border-color:#e5b300 !important;
    color:#1B2A41 !important;
    transform:translateY(-5px) !important;
    box-shadow:0 15px 30px rgba(249,196,0,.40) !important;
}
.google-map-section{
    margin:0;
    padding:0;
}

.google-map-section iframe{
    width:100% !important;
    height:450px !important;
    border:0 !important;
    display:block;
}
.contact-info-box{
    padding:10px;
}

.contact-title{
    font-weight:700;
    margin-bottom:30px;
    color:#0A2E5C;
}

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    align-items:flex-start;
}

.contact-icon{
    width:55px;
    height:55px;
    min-width:55px;
    background:#005BAC;
    color:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-icon.whatsapp{
    background:#25D366;
}

.contact-item h6{
    margin-bottom:5px;
    font-weight:700;
    color:#1B2A41;
}

.contact-item a{
    color:#555;
    text-decoration:none;
}

.contact-item a:hover{
    color:#005BAC;
}

.contact-item p{
    color:#555;
    line-height:1.7;
}
.card{
    border:none !important;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08) !important;
}

.form-control{
    border-radius:10px;
    min-height:50px;
}

textarea.form-control{
    min-height:140px;
}

.btn-primary{
    background:#005BAC;
    border-color:#005BAC;
    padding:12px 28px;
    border-radius:8px;
    font-weight:600;
}

.btn-primary:hover{
    background:#0A2E5C;
    border-color:#0A2E5C;
}
.google-map-wrapper{
    background:#F8FBFF;
}

.map-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.map-header{
    padding:40px;
    text-align:center;
}

.map-badge{
    display:inline-block;
    background:#EAF3FF;
    color:#005BAC;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.map-badge i{
    margin-right:6px;
}

.map-header h2{
    color:#0A2E5C;
    font-size:32px;
    font-weight:800;
    margin-bottom:12px;
}

.map-header p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.map-container iframe{
    width:100% !important;
    height:500px !important;
    border:0 !important;
    display:block;
}

@media(max-width:768px){

    .map-header{
        padding:25px;
    }

    .map-header h2{
        font-size:24px;
    }

    .map-container iframe{
        height:350px !important;
    }

}.about-banner{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:
    radial-gradient(circle at 80% 20%, rgba(249,196,0,.15), transparent 25%),
    linear-gradient(
        135deg,
        #001D4A 0%,
        #003B8E 50%,
        #005BAC 100%
    );
}

.about-banner::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-150px;
    top:-150px;
}

.page-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:14px;
    margin-bottom:20px;
}

.about-banner h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.about-banner h1 span{
    color:#F9C400;
}

.about-banner p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

.breadcrumb-custom{
    margin-top:25px;
    color:#fff;
}

.breadcrumb-custom a{
    color:#F9C400;
    text-decoration:none;
}

.breadcrumb-custom span{
    margin:0 10px;
    opacity:.7;
}

@media(max-width:768px){

    .about-banner{
        padding:70px 0;
    }

    .about-banner h1{
        font-size:38px;
    }

    .about-banner p{
        font-size:16px;
    }

}
.contact-banner{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:
    radial-gradient(circle at 80% 20%, rgba(249,196,0,.15), transparent 25%),
    linear-gradient(
        135deg,
        #001D4A 0%,
        #003B8E 50%,
        #005BAC 100%
    );
}

.contact-banner::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-150px;
    top:-150px;
}

.contact-banner h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.contact-banner h1 span{
    color:#F9C400;
}

.contact-banner p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

@media(max-width:768px){

    .contact-banner{
        padding:70px 0;
    }

    .contact-banner h1{
        font-size:38px;
    }

    .contact-banner p{
        font-size:16px;
    }

}
.hero-section{
    position:relative;
    overflow:hidden;
    padding:100px 0;

    background:
    radial-gradient(circle at 80% 20%, rgba(249,196,0,.15), transparent 25%),
    linear-gradient(
        135deg,
        #001D4A 0%,
        #003B8E 50%,
        #005BAC 100%
    );
}

.hero-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-150px;
    top:-150px;
    z-index:1;
}

.hero-section .container{
    position:relative;
    z-index:2;
}
.gallery-banner{
    position:relative;
    overflow:hidden;
    padding:100px 0;

    background:
    radial-gradient(circle at 80% 20%, rgba(249,196,0,.15), transparent 25%),
    linear-gradient(
        135deg,
        #001D4A 0%,
        #003B8E 50%,
        #005BAC 100%
    );
}

.gallery-banner::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-150px;
    top:-150px;
}

.gallery-banner h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.gallery-banner h1 span{
    color:#F9C400;
}

.gallery-banner p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

@media(max-width:768px){

    .gallery-banner{
        padding:70px 0;
    }

    .gallery-banner h1{
        font-size:38px;
    }

    .gallery-banner p{
        font-size:16px;
    }

}
.testimonial-banner{
    position:relative;
    overflow:hidden;
    padding:100px 0;

    background:
    radial-gradient(circle at 80% 20%, rgba(249,196,0,.15), transparent 25%),
    linear-gradient(
        135deg,
        #001D4A 0%,
        #003B8E 50%,
        #005BAC 100%
    );
}

.testimonial-banner::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-150px;
    top:-150px;
}

.testimonial-banner h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.testimonial-banner h1 span{
    color:#F9C400;
}

.testimonial-banner p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

@media(max-width:768px){

    .testimonial-banner{
        padding:70px 0;
    }

    .testimonial-banner h1{
        font-size:38px;
    }

    .testimonial-banner p{
        font-size:16px;
    }

}.news-banner{
    position:relative;
    overflow:hidden;
    padding:100px 0;

    background:
    radial-gradient(circle at 80% 20%, rgba(249,196,0,.15), transparent 25%),
    linear-gradient(
        135deg,
        #001D4A 0%,
        #003B8E 50%,
        #005BAC 100%
    );
}

.news-banner::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-150px;
    top:-150px;
}

.news-banner h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.news-banner h1 span{
    color:#F9C400;
}

.news-banner p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

@media(max-width:768px){

    .news-banner{
        padding:70px 0;
    }

    .news-banner h1{
        font-size:38px;
    }

    .news-banner p{
        font-size:16px;
    }

}.products-banner{
    position:relative;
    overflow:hidden;
    padding:100px 0;

    background:
    radial-gradient(circle at 80% 20%, rgba(249,196,0,.15), transparent 25%),
    linear-gradient(
        135deg,
        #001D4A 0%,
        #003B8E 50%,
        #005BAC 100%
    );
}

.products-banner::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-150px;
    top:-150px;
}

.products-banner h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.products-banner h1 span{
    color:#F9C400;
}

.products-banner p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

@media(max-width:768px){

    .products-banner{
        padding:70px 0;
    }

    .products-banner h1{
        font-size:38px;
    }

    .products-banner p{
        font-size:16px;
    }

}.services-banner{
    position:relative;
    overflow:hidden;
    padding:100px 0;

    background:
    radial-gradient(circle at 80% 20%, rgba(249,196,0,.15), transparent 25%),
    linear-gradient(
        135deg,
        #001D4A 0%,
        #003B8E 50%,
        #005BAC 100%
    );
}

.services-banner::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-150px;
    top:-150px;
}

.services-banner h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.services-banner h1 span{
    color:#F9C400;
}

.services-banner p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

@media(max-width:768px){

    .services-banner{
        padding:70px 0;
    }

    .services-banner h1{
        font-size:38px;
    }

    .services-banner p{
        font-size:16px;
    }

}
.about-advisor-section{
    background:#fff;
    padding:100px 0;
}

.advisor-image-wrapper{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.advisor-image{
    width:100%;
    display:block;
}

.experience-badge{
    position:absolute;
    bottom:20px;
    left:20px;

    background:#F9C400;
    color:#000;

    padding:12px 18px;
    border-radius:10px;

    font-weight:700;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.experience-badge i{
    margin-right:8px;
}

.section-subtitle{
    display:inline-block;
    background:#EAF3FF;
    color:#005BAC;

    padding:8px 16px;
    border-radius:50px;

    font-weight:600;
    margin-bottom:15px;
}

.advisor-name{
    font-size:46px;
    font-weight:800;
    color:#0A2E5C;
    margin-bottom:10px;
}

.advisor-designation{
    color:#005BAC;
    font-weight:600;
    margin-bottom:20px;
}

.advisor-divider{
    width:80px;
    height:4px;
    background:#F9C400;
    margin-bottom:25px;
}

.advisor-description{
    color:#555;
    line-height:1.9;
    font-size:17px;
}

.advisor-highlights{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.highlight-item{
    color:#1B2A41;
    font-weight:500;
}

.highlight-item i{
    color:#28a745;
    margin-right:8px;
}

@media(max-width:768px){

    .advisor-name{
        font-size:32px;
    }

    .advisor-highlights{
        grid-template-columns:1fr;
    }

    .experience-badge{
        position:static;
        margin-top:15px;
        display:inline-block;
    }

}.mission-vision-section{
    background:#F8FBFF;
    padding:100px 0;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:#0A2E5C;
    margin-bottom:15px;
}

.section-description{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.mission-card,
.vision-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    height:100%;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.mission-card:hover,
.vision-card:hover{
    transform:translateY(-8px);
}

.mission-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#005BAC;
}

.vision-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#F9C400;
}

.mission-icon,
.vision-icon{
    width:80px;
    height:80px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    margin-bottom:25px;
}

.mission-icon{
    background:#EAF3FF;
    color:#005BAC;
}

.vision-icon{
    background:#FFF6D8;
    color:#D39A00;
}

.mission-card h3,
.vision-card h3{
    font-size:28px;
    font-weight:700;
    color:#0A2E5C;
    margin-bottom:20px;
}

.mission-card p,
.vision-card p{
    color:#555;
    line-height:1.9;
    margin-bottom:0;
}

@media(max-width:768px){

    .mission-card,
    .vision-card{
        padding:30px;
    }

    .section-title{
        font-size:32px;
    }

}.services-section{
    background:#fff;
}

.service-card{
    background:#fff;
    height:100%;
    border-radius:24px;
    padding:35px;
    position:relative;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s ease;
    overflow:hidden;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #005BAC,
        #F9C400
    );
}

.service-icon{
    width:80px;
    height:80px;

    border-radius:20px;

    background:#EAF3FF;

    color:#005BAC;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    margin-bottom:25px;
}

.service-card h4{
    font-size:24px;
    font-weight:700;
    color:#0A2E5C;
    margin-bottom:15px;
}

.service-short{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.service-divider{
    height:1px;
    background:#E8E8E8;
    margin:20px 0;
}

.service-description{
    color:#666;
    line-height:1.8;
}

.service-footer{
    margin-top:25px;
}

.service-footer a{
    color:#005BAC;
    text-decoration:none;
    font-weight:600;
}

.service-footer i{
    margin-left:8px;
    transition:.3s;
}

.service-footer a:hover i{
    transform:translateX(5px);
}

@media(max-width:768px){

    .service-card{
        padding:25px;
    }

    .service-card h4{
        font-size:22px;
    }

}.gallery-section{
    background:#fff;
}

.gallery-card{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s ease;
    height:100%;
}

.gallery-card:hover{
    transform:translateY(-8px);
}

.gallery-image{
    position:relative;
    overflow:hidden;
}

.gallery-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:20px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );

    color:#fff;
}

.gallery-overlay h5{
    margin:0;
    font-size:18px;
    font-weight:600;
}

@media(max-width:768px){

    .gallery-image img{
        height:240px;
    }

}
.testimonial-section{
    background:#F8FBFF;
}

.testimonial-card{
    background:#fff;
    height:100%;

    padding:35px;
    border-radius:24px;

    position:relative;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #005BAC,
        #F9C400
    );
}

.quote-icon{
    position:absolute;
    right:25px;
    top:25px;

    font-size:40px;
    color:#EAF3FF;
}

.testimonial-rating{
    color:#F9C400;
    margin-bottom:20px;
}

.testimonial-text{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:65px;
    height:65px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #EAF3FF;
}

.testimonial-avatar{
    width:65px;
    height:65px;

    border-radius:50%;

    background:#005BAC;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    font-weight:700;
}

.testimonial-user h6{
    margin:0;
    font-weight:700;
    color:#0A2E5C;
}

.testimonial-user span{
    color:#777;
    font-size:14px;
}
.custom-pagination{
    gap:10px;
}

.custom-pagination .page-link{
    width:45px;
    height:45px;
    border:none;
    border-radius:12px !important;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    color:#005BAC;

    font-weight:600;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;
}

.custom-pagination .page-link:hover{
    background:#F9C400;
    color:#000;
}

.custom-pagination .page-item.active .page-link{
    background:#005BAC;
    color:#fff;
}

.custom-pagination .page-item.active .page-link:hover{
    background:#005BAC;
    color:#fff;
}
.news-section{
    background:#fff;
}

.news-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s ease;
    height:100%;
}

.news-card:hover{
    transform:translateY(-8px);
}

.news-image{
    overflow:hidden;
}

.news-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;

    transition:.5s ease;
}

.news-card:hover .news-image img{
    transform:scale(1.08);
}

.news-content{
    padding:30px;
}



.news-date i{
    margin-right:6px;
}

.news-content h4{
    color:#0A2E5C;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;

    line-height:1.4;
}

.news-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.news-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    color:#005BAC;
    font-weight:600;

    text-decoration:none;
}

.news-btn i{
    transition:.3s;
}

.news-btn:hover i{
    transform:translateX(5px);
}

.news-btn.disabled{
    pointer-events:none;
    opacity:.6;
}

@media(max-width:768px){

    .news-image img{
        height:220px;
    }

    .news-content{
        padding:25px;
    }

    .news-content h4{
        font-size:20px;
    }

}
.custom-pagination{
    gap:10px;
}

.custom-pagination .page-link{
    width:45px;
    height:45px;
    border:none;
    border-radius:12px !important;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#005BAC;

    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.custom-pagination .page-item.active .page-link{
    background:#005BAC;
    color:#fff;
}

.back-news-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#005BAC;
    font-weight:600;

    text-decoration:none;

    margin-bottom:25px;
}

.news-detail-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.news-detail-image{
    width:100%;
    max-height:500px;
    object-fit:cover;
}

.news-detail-content{
    padding:40px;
}

.news-detail-content h2{
    color:#0A2E5C;
    font-weight:800;
    margin:20px 0;
}

.news-detail-text{
    line-height:2;
    color:#555;
}
.products-section{
    background:#fff;
}

.product-card{
    background:#fff;
    height:100%;

    border-radius:24px;
    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s ease;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-image{
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:240px;
    object-fit:cover;

    transition:.5s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-content{
    padding:30px;
}

.product-tag{
    display:inline-block;

    background:#EAF3FF;
    color:#005BAC;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;
    font-weight:600;

    margin-bottom:15px;
}

.product-content h4{
    color:#0A2E5C;

    font-size:24px;
    font-weight:700;

    margin-bottom:15px;
}

.product-content p{
    color:#666;
    line-height:1.8;

    margin-bottom:25px;
}

.product-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    color:#005BAC;
    font-weight:600;

    text-decoration:none;
}

.product-btn i{
    transition:.3s;
}

.product-btn:hover i{
    transform:translateX(5px);
}

.product-btn:hover{
    color:#F9C400;
}

@media(max-width:768px){

    .product-image img{
        height:220px;
    }

    .product-content{
        padding:25px;
    }

}
.service-detail-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.service-header{
    display:flex;
    gap:25px;
    align-items:center;
    margin-bottom:30px;
}

.service-icon-large{
    width:90px;
    height:90px;

    border-radius:20px;

    background:#EAF3FF;
    color:#005BAC;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:36px;
}

.detail-box{
    background:#fff;
    padding:30px;
    margin-top:25px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.detail-box h3{
    color:#005BAC;
    margin-bottom:15px;
}

.back-service-btn{
    display:inline-flex;
    gap:10px;
    margin-bottom:25px;

    text-decoration:none;
    font-weight:600;

    color:#005BAC;
}
.nav-link i{
    font-size:13px;
    opacity:.85;
}

.nav-link{
    display:flex;
    align-items:center;
    gap:6px;
}
.hero-badge{
    color: #f9c400;
    font-weight: bold;
}
.page-section{
    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #eef5ff 100%
        );
}

.page-section .card{
    border-radius:30px !important;
    overflow:hidden;
    position:relative;

    background:#ffffff;

    box-shadow:
        0 20px 60px rgba(0,91,172,.10);
}

.page-section .card::before{
    content:'';

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
        rgba(0,91,172,.05);

    top:-120px;
    right:-120px;
}

.page-section .card::after{
    content:'';

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
        rgba(249,196,0,.10);

    bottom:-80px;
    left:-80px;
}

.page-section .card > *{
    position:relative;
    z-index:2;
}

.page-section .fa-shield-alt{
    color:#F9C400 !important;

    width:130px;
    height:130px;

    line-height:130px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            rgba(249,196,0,.15),
            rgba(249,196,0,.05)
        );

    box-shadow:
        0 10px 30px rgba(249,196,0,.20);
}

.page-section .display-1{
    font-size:110px;
    font-weight:800;

    color:#005BAC !important;

    line-height:1;
}

.page-section h2{
    color:#0A2E5C;
}

.page-section p{
    max-width:600px;
    margin:auto;

    font-size:16px;
    line-height:1.8;
}

.page-section .btn-primary{
    background:#005BAC;
    border-color:#005BAC;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.page-section .btn-primary:hover{
    background:#0A2E5C;
    border-color:#0A2E5C;

    transform:translateY(-2px);
}

.page-section .btn-outline-primary{
    border:2px solid #005BAC;

    color:#005BAC;

    border-radius:12px;

    font-weight:600;
}

.page-section .btn-outline-primary:hover{
    background:#005BAC;
    color:#fff;

    transform:translateY(-2px);
}

@media(max-width:768px){

    .page-section .display-1{
        font-size:80px;
    }

    .page-section .card{
        padding:35px 25px !important;
    }

}