:root{
    --primary-color:#0A2E63;
    --secondary-color:#67B321;
    --white:#ffffff;
    --dark:#111111;
    --gray:#6c757d;

    --heading-font:'Playfair Display', serif;
    --body-font:'Poppins', sans-serif;

    --transition:all .4s ease;
}

:root{
    --primary:#0A2E63;
    --secondary:#67B321;
    --white:#fff;
}

.custom-navbar{
    padding:15px 0;
    transition:.4s;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(15px);
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.custom-navbar.scrolled{
    padding:10px 0;
    background:#fff;
}

.navbar-brand img{
    height:75px;
    transition:.3s;
}

.nav-link{
    color:var(--primary);
    font-weight:600;
    margin:0 10px;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:3px;
    background:var(--secondary);
    left:0;
    bottom:-8px;
    transition:.4s;
    border-radius:50px;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-link:hover{
    color:var(--secondary);
}

.contact-btn{
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.contact-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

.navbar-toggler{
    border:none;
    font-size:34px;
    color:var(--primary);
}

.offcanvas{
    width:300px;
    background:#fff;
}

.mobile-nav{
    list-style:none;
    padding:0;
}

.mobile-nav li{
    margin-bottom:15px;
}

.mobile-nav a{
    text-decoration:none;
    color:var(--primary);
    font-size:18px;
    font-weight:600;
    display:block;
    padding:12px;
    border-radius:10px;
    transition:.3s;
}

.mobile-nav a:hover{
    background:#f5f8ff;
    color:var(--secondary);
}

.mobile-btn{
    display:block;
    text-align:center;
    background:var(--primary);
    color:#fff;
    padding:15px;
    border-radius:50px;
    text-decoration:none;
    margin-top:20px;
}


.hero-section{
    position:relative;
}

.carousel-item{
    height:100vh;
    min-height:700px;
}

.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.35)
    );
}
.carousel-caption{
    position:absolute;
    left:10%;
    right:auto;
    bottom:50%;
    transform:translateY(50%);
    text-align:left;
    max-width:700px;
    z-index:2;
}

.carousel-caption span{
    color:#67B321;
    font-weight:600;
    letter-spacing:2px;
}

.carousel-caption h1{
    font-size:72px;
    font-weight:800;
    margin:20px 0;
    color:#fff;
}

.carousel-caption p{
    font-size:18px;
    color:#fff;
    max-width:600px;
}

.hero-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 35px;
    background:#67B321;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
    height:60px;
    top:auto;
    bottom:50px;
    opacity:1;
}

.carousel-control-prev{
    left:auto;
    right:130px;
}

.carousel-control-next{
    right:50px;
}

.carousel-control-prev i,
.carousel-control-next i{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#0A2E63;
    border-radius:50%;
    font-size:22px;
}

.carousel-indicators{
    bottom:50px;
    left:50%;
}

.carousel-indicators button{
    width:14px !important;
    height:14px !important;
    border-radius:50%;
    background:#fff !important;
}

.carousel-indicators .active{
    background:#67B321 !important;
}

@media(max-width:768px){

    .carousel-item{
        height:85vh;
    }

    .carousel-caption{
        left:20px;
        right:20px;
    }

    .carousel-caption h1{
        font-size:36px;
    }

    .carousel-caption p{
        font-size:15px;
    }

    .carousel-control-prev{
        right:90px;
    }

    .carousel-control-next{
        right:20px;
    }

    .carousel-control-prev i,
    .carousel-control-next i{
        width:50px;
        height:50px;
    }
}


.about-section{
    background:#fff;
    overflow:hidden;
}

.section-tag{
    color:#67B321;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:48px;
    font-weight:700;
    color:#0A2E63;
    margin:15px 0 20px;
    line-height:1.3;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}

.main-img{
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:#67B321;
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.experience-box h2{
    font-size:36px;
    margin:0;
    font-weight:700;
}

.feature-box{
    display:flex;
    gap:15px;
    align-items:flex-start;
    margin-bottom:20px;
}

.feature-box i{
    width:60px;
    height:60px;
    background:#0A2E63;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.feature-box h5{
    color:#0A2E63;
    margin-bottom:5px;
    font-weight:600;
}

.feature-box p{
    margin:0;
}

.about-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 35px;
    background:#0A2E63;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    background:#67B321;
    color:#fff;
    transform:translateY(-4px);
}

@media(max-width:768px){

    .about-content h2{
        font-size:32px;
    }

    .experience-box{
        right:10px;
        bottom:10px;
        padding:15px;
    }

    .experience-box h2{
        font-size:24px;
    }

}

.product-section{
    background:#f8fbff;
}

.section-title span{
    color:#67B321;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    color:#0A2E63;
    font-size:42px;
    font-weight:700;
    margin:10px 0 15px;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
}

.product-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    border:1px solid #eef2f7;
    transition:.4s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.product-img{
    height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.product-img img{
    max-width:100%;
    max-height:510px;
    object-fit:contain;
    transition:.4s;
}

.product-card:hover .product-img img{
    transform:scale(1.08);
}

.product-card h5{
    color:#0A2E63;
    font-size:22px;
    font-weight:700;
    margin:0;
}

/* Tablet */

@media (max-width:991px){

    .product-img{
        height:200px;
    }

    .product-img img{
        max-height:170px;
    }

}

/* Mobile */

@media (max-width:767px){

    .section-title h2{
        font-size:32px;
    }

    .product-card{
        max-width:380px;
        margin:auto;
        padding:25px;
    }

    .product-img{
        height:220px;
    }

    .product-img img{
        max-height:580px;
    }

    .product-card h5{
        font-size:18px;
    }

}


.why-choose{
    background:#ffffff;
}

.choose-card{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    border-top:4px solid transparent;
}

.choose-card:hover{
    transform:translateY(-10px);
    border-color:#67B321;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.choose-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#0A2E63,#67B321);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.choose-icon i{
    color:#fff;
    font-size:38px;
}

.choose-card h4{
    color:#0A2E63;
    font-weight:700;
    margin-bottom:15px;
}

.choose-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

@media(max-width:767px){

    .choose-card{
        max-width:380px;
        margin:auto;
    }

}

.cta-section{
    position:relative;
    padding:90px 0;
    background:url('./img/bg.jpg') center center/cover no-repeat;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(10,46,99,.82);
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-content span{
    color:#67B321;
    font-size:18px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.cta-content h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin:15px 0;
}

.cta-content p{
    color:#f2f2f2;
    font-size:17px;
    line-height:1.8;
    max-width:700px;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 40px;
    background:#67B321;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.cta-btn:hover{
    background:#fff;
    color:#0A2E63;
}

.cta-btn i{
    transition:.3s;
}

.cta-btn:hover i{
    transform:translateX(5px);
}

@media(max-width:768px){

    .cta-section{
        text-align:center;
        padding:70px 0;
    }

    .cta-content h2{
        font-size:32px;
    }

}

.product-details{
    background:#fff;
}

.product-image{
    background:#f8fbff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.product-image img{
    width:100%;
    transition:.4s;
}

.product-image:hover img{
    transform:scale(1.05);
}

.product-tag{
    display:inline-block;
    background:#e9f7ec;
    color:#67B321;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.product-details h2{
    color:#0A2E63;
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.product-details p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.product-features{
    margin:30px 0;
}

.feature{
    display:flex;
    align-items:center;
    margin-bottom:15px;
    color:#333;
    font-weight:500;
}

.feature i{
    color:#67B321;
    margin-right:12px;
    font-size:18px;
}

.product-btn{
    display:inline-block;
    background:#0A2E63;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.product-btn:hover{
    background:#67B321;
    color:#fff;
}

.enquiry-section{

    position:relative;

    background:url('./img/s2.png') center center/cover fixed;

    padding:120px 0;

    overflow:hidden;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.70);

}

.enquiry-section .container{

    position:relative;

    z-index:2;

}

.sub-title{

    color:#67B321;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:600;

}

.enquiry-content h2{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin:15px 0;

}

.enquiry-content p{

    color:#eee;

    line-height:1.9;

    margin-bottom:35px;

}

.contact-item{

    color:#fff;

    margin-bottom:18px;

    font-size:18px;

}

.contact-item i{

    color:#67B321;

    margin-right:12px;

}

.enquiry-form{

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(18px);

    padding:40px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.25);

}

.enquiry-form h3{

    color:#fff;

    margin-bottom:25px;

    font-weight:700;

}

.enquiry-form .form-control,

.enquiry-form .form-select{

    height:55px;

    border:none;

    border-radius:12px;

    margin-bottom:18px;

}

.enquiry-form textarea{

    height:140px !important;

}

.send-btn{

    width:100%;

    background:#25D366;

    color:#fff;

    border:none;

    padding:16px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.4s;

}

.send-btn:hover{

    background:#1ebc59;

    transform:translateY(-3px);

}

.send-btn i{

    margin-right:10px;

}

@media(max-width:768px){

    .enquiry-section{

        padding:70px 0;

        background-attachment:scroll;

    }

    .enquiry-content{

        text-align:center;

    }

    .enquiry-content h2{

        font-size:32px;

    }

    .enquiry-form{

        padding:25px;

    }

}

.testimonial-section{
    background:#f8fbff;
}

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
    border:4px solid #67B321;
}

.testimonial-card h5{
    color:#0A2E63;
    margin-bottom:5px;
    font-weight:700;
}

.testimonial-card small{
    color:#67B321;
    font-weight:600;
}

.testimonial-card p{
    color:#666;
    margin:20px 0;
    line-height:1.8;
}

.stars{
    color:#ffc107;
}

.swiper{
    padding-bottom:60px;
}

.swiper-button-next,
.swiper-button-prev{
    color:#0A2E63;
    width:45px;
    height:45px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.swiper-pagination-bullet-active{
    background:#67B321;
}

.faq-section{

    background:#f8fbff;

}

.section-subtitle{

    color:#67B321;

    text-transform:uppercase;

    font-weight:600;

    letter-spacing:2px;

}

.faq-section h2{

    color:#0A2E63;

    font-size:46px;

    font-weight:700;

    margin:20px 0;

}

.faq-section p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.faq-img{

    max-width:85%;

    animation:float 4s ease-in-out infinite;

}

.custom-faq .accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:15px !important;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.custom-faq .accordion-button{

    background:#fff;

    color:#0A2E63;

    font-weight:600;

    padding:22px;

    font-size:18px;

    box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

    background:#0A2E63;

    color:#fff;

}

.custom-faq .accordion-button::after{

    filter:brightness(0);

}

.custom-faq .accordion-button:not(.collapsed)::after{

    filter:brightness(10);

}

.custom-faq .accordion-body{

    background:#fff;

    color:#666;

    line-height:1.8;

    padding:20px 25px;

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

@media(max-width:768px){

    .faq-section h2{

        font-size:32px;

    }

    .faq-img{

        max-width:100%;

        margin-bottom:40px;

    }

}

.footer{

    position:relative;

    background:linear-gradient(135deg,#061b3a,#0A2E63);

    color:#fff;

    padding:80px 0 0;

    overflow:hidden;

}

.footer::before{

    content:'';

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(103,179,33,.12);

    border-radius:50%;

    top:-150px;

    right:-100px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

    background:#fff;

    padding:10px;

    border-radius:12px;

}

.footer-about{

    color:#d9d9d9;

    line-height:1.9;

    margin-bottom:25px;

}

.footer h4{

    color:#fff;

    font-size:22px;

    margin-bottom:25px;

    position:relative;

}

.footer h4::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    background:#67B321;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#67B321;

    padding-left:8px;

}

.footer-contact p{

    color:#ddd;

    margin-bottom:18px;

}

.footer-contact i{

    color:#67B321;

    margin-right:10px;

}

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    color:#fff;

    transition:.4s;

}

.footer-social a:hover{

    background:#67B321;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    padding:20px 0;

    border-top:1px solid rgba(255,255,255,.1);

    color:#ddd;

}

.footer-bottom a{

    color:#67B321;

    text-decoration:none;

    font-weight:600;

}

@media(max-width:768px){

    .footer{

        text-align:center;

    }

    .footer h4::after{

        left:50%;

        transform:translateX(-50%);

    }

    .footer-social{

        justify-content:center;

    }

}



.page-header{

    position:relative;

    background:url('./img/s2.png') center center/cover no-repeat;

    height:520px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.header-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.65),
        rgba(10,46,99,.55)
    );

}

.page-header-content{

    position:relative;

    z-index:2;

    text-align:center;

}

.page-subtitle{

    display:inline-block;

    color:#67B321;

    font-size:18px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.page-header h1{

    color:#fff;

    font-size:60px;

    font-weight:700;

    margin-bottom:20px;

}

.breadcrumb{

    background:rgba(255,255,255,.15);

    display:inline-flex;

    padding:12px 25px;

    border-radius:50px;

    backdrop-filter:blur(10px);

}

.breadcrumb-item a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

}

.breadcrumb-item.active{

    color:#67B321;

    font-weight:600;

}

.breadcrumb-item + .breadcrumb-item::before{

    color:#fff;

}

@media(max-width:991px){

    .page-header{

        height:320px;

    }

    .page-header h1{

        font-size:42px;

    }

}

@media(max-width:576px){

    .page-header{

        height:560px;

    }

    .page-header h1{

        font-size:34px;

    }

    .page-subtitle{

        font-size:14px;

    }

    .breadcrumb{

        padding:10px 18px;

        font-size:14px;

    }

}


.about-company{
    background:#fff;
}

.about-images{
    position:relative;
    padding-right:60px;
}

.about-main{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-small{
    position:absolute;
    right:0;
    bottom:40px;
    width:230px;
    border-radius:20px;
    border:8px solid #fff;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.experience-box{
    position:absolute;
    left:-20px;
    bottom:30px;
    background:linear-gradient(135deg,#0A2E63,#67B321);
    color:#fff;
    padding:20px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.experience-box h2{
    font-size:32px;
    font-weight:700;
    margin:0;
}

.experience-box span{
    font-size:15px;
}

.section-subtitle{
    color:#67B321;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content h2{
    font-size:46px;
    color:#0A2E63;
    font-weight:700;
    margin:18px 0;
    line-height:1.3;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.about-feature{
    display:flex;
    align-items:center;
    margin-bottom:18px;
    font-weight:600;
}

.about-feature i{
    color:#67B321;
    margin-right:12px;
    font-size:20px;
}

@media(max-width:991px){

    .about-images{
        padding-right:0;
    }

    .about-small{
        display:none;
    }

    .experience-box{
        left:20px;
        bottom:20px;
    }

}

@media(max-width:768px){

    .about-content h2{
        font-size:34px;
    }

    .experience-box{
        padding:15px 20px;
    }

    .experience-box h2{
        font-size:24px;
    }

}

.vision-mission{
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.vision-mission::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(103,179,33,.08);
    border-radius:50%;
    top:-150px;
    right:-120px;
}

.vm-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.vm-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#0A2E63,#67B321);
}

.vm-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.vm-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#0A2E63,#67B321);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.vm-icon i{
    color:#fff;
    font-size:38px;
}

.vm-card h3{
    color:#0A2E63;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.vm-card p{
    color:#666;
    line-height:1.9;
    margin:0;
}

.center-icon{
    width:120px;
    height:120px;
    margin:auto;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    border:8px solid #67B321;
}

.center-icon i{
    font-size:50px;
    color:#0A2E63;
}

@media(max-width:991px){

    .center-icon{
        margin:20px auto;
        width:90px;
        height:90px;
    }

    .center-icon i{
        font-size:38px;
    }

}

@media(max-width:768px){

    .vm-card{
        padding:30px 25px;
    }

    .vm-card h3{
        font-size:26px;
    }

}


.services-section{
    background:#f8fbff;
}

.service-card{

    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    height:100%;
    border:1px solid #eef2f7;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.service-card:hover{

    transform:translateY(-12px);
    border-color:#67B321;
    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.service-icon{

    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#0A2E63,#67B321);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;

}

.service-icon i{

    color:#fff;
    font-size:40px;

}

.service-card h4{

    color:#0A2E63;
    margin-bottom:18px;
    font-weight:700;

}

.service-card p{

    color:#666;
    line-height:1.8;
    margin:0;

}

@media(max-width:768px){

    .service-card{

        padding:30px 20px;

    }

}


.contact-info-section{

    background:#f8fbff;

}

.contact-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    height:100%;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.contact-card:hover{

    transform:translateY(-10px);

}

.contact-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#0A2E63,#67B321);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.contact-icon i{

    color:#fff;

    font-size:36px;

}

.contact-card h4{

    color:#0A2E63;

    margin-bottom:10px;

}

.contact-card h5{

    color:#67B321;

    font-size:18px;

    margin-bottom:20px;

}

.contact-card p{

    color:#666;

    line-height:1.8;

}

.contact-card a{

    display:block;

    text-decoration:none;

    color:#444;

    margin-top:12px;

    transition:.3s;

}

.contact-card a:hover{

    color:#67B321;

}

.contact-card i{

    margin-right:10px;

}

.cfa-card{

    background:linear-gradient(135deg,#0A2E63,#123f82);

    border-radius:20px;

    padding:40px;

    color:#fff;

}

.cfa-icon{

    font-size:70px;

    color:#67B321;

}

.cfa-card h3{

    margin-bottom:15px;

}

.cfa-card p{

    margin:0;

    line-height:1.9;

}

@media(max-width:768px){

    .contact-card{

        padding:25px;

    }

    .cfa-card{

        text-align:center;

    }

}


.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#fff;

    font-size:34px;

    box-shadow:0 10px 30px rgba(37,211,102,.45);

    z-index:9999;

    transition:.4s;

    animation:whatsappPulse 2s infinite;

}

.whatsapp-float:hover{

    width:220px;

    color:#fff;

}

.whatsapp-text{

    white-space:nowrap;

    max-width:0;

    overflow:hidden;

    transition:.4s;

    font-size:16px;

    font-weight:600;

}

.whatsapp-float:hover .whatsapp-text{

    max-width:160px;

    margin-left:20px;

}

.whatsapp-float i{

    flex-shrink:0;

}

@keyframes whatsappPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.7);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

@media(max-width:768px){

    .whatsapp-float{

        width:60px;

        height:60px;

        right:15px;

        bottom:15px;

        font-size:30px;

    }

    .whatsapp-float:hover{

        width:60px;

    }

    .whatsapp-text{

        display:none;

    }

}


/* ===========================
   Scroll To Top Button
=========================== */

#scrollTop{

    position:fixed;

    right:25px;

    bottom:100px;

    width:58px;

    height:58px;

    border:none;

    outline:none;

    border-radius:50%;

    background:linear-gradient(135deg,#0A2E63,#67B321);

    color:#fff;

    font-size:24px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 30px rgba(10,46,99,.35);

    transition:.4s;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    z-index:999;

}

#scrollTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

#scrollTop:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(10,46,99,.45);

}

#scrollTop i{

    transition:.3s;

}

#scrollTop:hover i{

    transform:translateY(-3px);

}

@media(max-width:768px){

    #scrollTop{

        width:50px;

        height:50px;

        right:15px;

        bottom:85px;

        font-size:20px;

    }

}