/* Custom color */
body{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.primary_bg{
    background-color: #022661;
}
.primary_txt{
    color: #022661;
}
.secondary_bg{
    background-color: #4e9619;
}
.primary_btn {
    background-color: #4e9619;
    color: #fff;
    border: 2px solid #4e9619;
    transition: all 0.3s ease;
}

.gredient_btn {
    background: linear-gradient(135deg, #4e9619 0%, #022661 100%);
    color: #fff;
    transition: all 0.3s ease;
}
.gredient_btn:hover {
    background: #4e9619;
    color: #ffff;
    border: 2px solid #022661;
}
.primary_btn:hover {
    background-color: #4e9619; 
    color: #fff;               
    border: 2px solid #fff;   
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
}
.sub_heading{
    font-size: 18px;
}
/* nav */
.navbar-nav li a {
    font-size: 22px;
    font-weight: bold;
    
}
.navbar-nav .nav-link{
    font-size: 1.25rem;
    font-weight: 600;
    color: #555;
}

.navbar-nav .nav-link:hover{
    color: #4e9619;
}
.btn-quote{
    color:#fff;
     border: 2px solid transparent;
    transition: all 0.3s ease;
    background:linear-gradient(
        270deg,
        #4e9619,
        #022661,
        #4e9619
    );
    background-size:300% 300%;
    animation:gradientMove 3s ease infinite, pulse 2s infinite;
}

@keyframes gradientMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}
.call-icon{
    display:inline-block;
    animation:ring 0.8s infinite;
    transform-origin:center;
}

@keyframes ring{
    0%{transform:rotate(0deg);}
    10%{transform:rotate(15deg);}
    20%{transform:rotate(-15deg);}
    30%{transform:rotate(15deg);}
    40%{transform:rotate(-15deg);}
    50%{transform:rotate(10deg);}
    60%{transform:rotate(-10deg);}
    70%,100%{transform:rotate(0deg);}
}
.btn-quote:hover{
    background: #4e9619;
    color: #ffff;
    border: 2px solid #022661;
}
/* Hero */
.company-pill{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 12px;
    border-radius: 60px;

    color: #fff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    border: 1.5px solid rgba(255,255,255,0.35);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.15),
        0 8px 25px rgba(0,0,0,0.25);

    transition: all .2s ease;
}
.shine-btn{
    position:relative;
    overflow:hidden;
}

.shine-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:50px;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );

    transform:skewX(-25deg);
    animation:shine 2s infinite;
}

@keyframes shine{
    100%{
        left:150%;
    }
}
.company-pill:hover{
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.2),
        0 12px 30px rgba(0,0,0,0.3);
}
.hero{
    background:#f8f9fa;
    padding:80px 0;
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pill {
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}

.pill-blue {
    background: #0d3b8e;
}

.pill-green {
    background: #3cae3c;
}

.pill-yellow {
    background: #f4c20d;
}
.section-padding{
    padding:70px 0;
}
/* form */
.quote-heading{
    font-weight: 700;
    animation: textBlink 1.5s infinite;
}

@keyframes textBlink{
    0%{
        color:#022661; /* Blue */
    }
    33%{
        color:#4e9619; /* Green */
    }
    66%{
        color:#f4c20d; /* Yellow */
    }
    100%{
        color:#022661; /* Blue */
    }
}
.finger{
    display:inline-block;
    margin-left:8px;
    animation: fingerMove 0.5s infinite alternate;
}

@keyframes fingerMove{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(8px);
    }
}
.service-card{
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
}


.mobile-bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;

    background:#fff;
    box-shadow:0 -2px 15px rgba(0,0,0,.1);

    display:flex;
    z-index:9999;
}

.mobile-bottom-nav a{
    flex:1;
    text-align:center;
    text-decoration:none;

    padding:10px 5px;

    color:#022661;
    font-size:12px;
    font-weight:600;
}

.mobile-bottom-nav i{
    display:block;
    font-size:22px;
    margin-bottom:4px;
}

.mobile-bottom-nav a:nth-child(2){
    color:#25D366; /* WhatsApp */
}

.mobile-bottom-nav a:hover{
    color:#4e9619;
}

/* Hide on Desktop */
@media (min-width:768px){
    .mobile-bottom-nav{
        display:none;
    }
}

/* service */
.services-section{
    background:#f8fafc;
}

.sub_heading{
    max-width:850px;
    margin:auto;
    color:#6c757d;
    font-size:18px;
}

/* ===== SERVICE CARD ===== */

.service-card{
    background:#fff;
    border:none;
    border-radius:20px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:all .4s ease;
}

.service-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 20px 40px rgba(2,38,97,.15),
    0 15px 35px rgba(78,150,25,.15);
}

.service-card img{
   
    object-fit:cover;
}

.service-card h5{
    color:#022661;
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#6c757d;
    min-height:72px;
}

/* ===== ICON ===== */

.service-icon{
    width:80px;
    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
    color:#fff;

    background:linear-gradient(
    135deg,
    #022661,
    #4e9619
    );

    transition:.4s;
}

.service-card:hover .service-icon{
    transform:rotate(15deg) scale(1.1);
}

/* ===== MOST POPULAR BADGE ===== */

.popular-badge{
    position:absolute;
    top:18px;
    right:-38px;

    background:#f4c20d;
    color:#222;

    padding:8px 45px;

    font-size:12px;
    font-weight:700;

    transform:rotate(45deg);

    z-index:2;
}

/* ===== BUTTON ===== */

.service-btn{
    position:relative;
    overflow:hidden;

    display:inline-block;

    padding:12px 28px;

    border:none;
    border-radius:50px;

    font-weight:700;

    color:#fff !important;

    background:linear-gradient(
    135deg,
    #022661 0%,
    #4e9619 100%
    );

    box-shadow:
    0 0 12px rgba(78,150,25,.5),
    0 0 25px rgba(2,38,97,.3);

    animation:buttonPulse 1.5s infinite;

    transition:.3s;
}

/* Shining snow effect */

.service-btn::before{
    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:50%;
    height:100%;

    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.8),
    transparent
    );

    transform:skewX(-25deg);

    animation:snowGlow 2s linear infinite;
}

/* Hover */

.service-btn:hover{
    color:#fff !important;

    transform:translateY(-3px);

    box-shadow:
    0 0 15px rgba(255,215,0,.8),
    0 0 35px rgba(78,150,25,.6);
}

/* ===== BUTTON GROW EFFECT ===== */

@keyframes buttonPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

}
.service-image{
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-image img{
    transition:.4s ease;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .service-card{
        margin-bottom:10px;
    }

    .service-card p{
        min-height:auto;
    }

    .display-5{
        font-size:2rem;
    }

    .sub_heading{
        font-size:16px;
    }

    .service-btn{
        width:100%;
    }

}
/* choose section */
.why-us-section{
    background:#fff;
}

.why-features{
    margin-top:30px;
}

.why-item{
    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:18px;

    padding:15px 20px;

    border-radius:12px;

    background:#f8f9fa;

    transition:.3s;
}

.why-item:hover{
    transform:translateX(8px);

    background:linear-gradient(
        135deg,
        #022661,
        #4e9619
    );

    color:#fff;
}

.why-item i{
    font-size:22px;
    color:#4e9619;
    min-width:30px;
}

.why-item:hover i{
    color:#fff;
}

.section-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    color:#fff;
    font-weight:600;

    background:linear-gradient(
        135deg,
        #022661,
        #4e9619
    );
}
/* company */
.brands-slider .card{
    transition:.3s;
}

.brands-slider .card:hover{
    transform:translateY(-6px);
}
.gradient-btn{
    background: linear-gradient(135deg,#4e9619,#022661);
    min-width:350px;
}

.gradient-btn:hover{
    color:#fff;
}
/* testimonial */
.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    min-height:250px;
}

.testimonial-card p{
    font-size:16px;
    line-height:1.8;
    margin:20px 0;
}

.testimonial-card h6{
    color:#022661;
    font-weight:700;
}

.stars{
    color:#f4c20d;
    font-size:22px;
    letter-spacing:3px;
}

.accordion-item{
    border:none;
    margin-bottom:12px;
    border-radius:12px !important;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.accordion-button{
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:linear-gradient(
        135deg,
        #022661,
        #4e9619
    );
    color:#fff;
}
/* About */
.breadcrumb-section{
    background:
    linear-gradient(rgba(2,38,97,.75), rgba(2,38,97,.75)),
    url('../images/breadcrumb.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before{
    color: rgba(255,255,255,.7);
}

.breadcrumb-section .breadcrumb-item a:hover{
    color: #f4c20d !important;
}

/* Footer */
/* Footer */
.whatsapp-float{
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 60px;
    height: 60px;

    border-radius: 50%;
    background: #25D366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    text-decoration: none;

    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
}

.whatsapp-float::before{
    content: '';
    position: absolute;
    inset: 0;

    border-radius: 50%;
    background: #25D366;

    z-index: -1;
    animation: whatsappPulse 1.8s infinite;
}

.whatsapp-float i{
    display: inline-block;
    animation: whatsappShake 2s infinite;
}

.call-float{
    position: fixed;
    left: 20px;
    bottom: 20px;

    width: 60px;
    height: 60px;

    border-radius: 50%;
      background: linear-gradient(135deg, #4e9619 0%, #022661 100%);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    text-decoration: none;

    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
}

.call-float::before{
    content: '';
    position: absolute;
    inset: 0;

    border-radius: 50%;
    background: linear-gradient(135deg, #4e9619 0%, #022661 100%);

    z-index: -1;
    animation: callPulse 1.8s infinite;
}

.call-float i{
    display: inline-block;
    animation: phoneBounce 1s infinite;
}

@keyframes whatsappPulse{
    0%{
        transform: scale(1);
        opacity: .8;
    }
    100%{
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes callPulse{
    0%{
        transform: scale(1);
        opacity: .8;
    }
    100%{
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes whatsappShake{
    0%,100%{
        transform: rotate(0deg);
    }

    10%{
        transform: rotate(-15deg);
    }

    20%{
        transform: rotate(15deg);
    }

    30%{
        transform: rotate(-15deg);
    }

    40%{
        transform: rotate(15deg);
    }

    50%{
        transform: rotate(0deg);
    }
}
@keyframes phoneBounce{
    0%,20%,50%,80%,100%{
        transform: translateY(0);
    }

    40%{
        transform: translateY(-8px);
    }

    60%{
        transform: translateY(-4px);
    }
}
.whatsapp-float:hover,
.call-float:hover{
    color: #fff;
    text-decoration: none;
    transform: scale(1.08);
    transition: all .3s ease;
}
@media (max-width: 768px){

    .whatsapp-float,
    .call-float{
        display: none !important;
    }

}
.footer-section{
    background:linear-gradient(
        135deg,
        #022661,
        #4e9619
    );
}
.footer-logo{
    max-height:70px;
    width:auto;
}

.footer-title{
    font-weight:700;
    margin-bottom:20px;
    position:relative;
}

.footer-title::after{
    content:'';
    width:50px;
    height:3px;
    background:#f4c20d;
    display:block;
    margin-top:8px;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-contact li{
    margin-bottom:12px;
}

.footer-links a,
.footer-contact a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#f4c20d;
    padding-left:5px;
}

.footer-contact i{
    color:#f4c20d;
    width:25px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    margin-right:10px;
    transition:.3s;
}

.footer-social a:hover{
    background-color:#f4c20d;
    color:#fff !important;
    transform:translateY(-3px);
}

.footer-social a:hover i{
    color:#fff !important;
}

.footer-divider{
    border-color:rgba(255,255,255,.2);
    margin:30px 0 20px;
}

.footer-section a{
    color:#fff;
    text-decoration:none;
}

.footer-section a:hover{
    color:#f4c20d;
}

@media(max-width:768px){

    .footer-title{
        margin-top:20px;
    }

    .footer-logo{
        max-height:60px;
    }
}
