
html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}
::-webkit-scrollbar {
  display: none;
}
.wpcf7-response-output{
    color: #2196F3;
    text-align: center;
}
/* Firefox */
html {
  scrollbar-width: none;
}

/* IE and old Edge */
body {
  -ms-overflow-style: none;
}
body {
    margin: 0;
    font-family: "Instrument Sans", sans-serif;
    overflow-x: hidden;
    color: #222;
    background: #fff;
}
a{
    color: #34c0ff;
    text-decoration: none;
}
p{
    color: #414040
}
.form-control:focus{
    outline: 0;
    box-shadow: none;
}

.section-space{
    padding-top: 70px;
    padding-bottom: 70px;
}
.top-bar {
    background: #000000;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .top-social a {
    color: #fff;
    margin-left: 12px;
    font-size: 14px;
    opacity: 0.85;
}

.top-bar .top-social a:hover {
    opacity: 1;
}
.top-bar .nav-icons{
    display: none
}
.top-bar .top-email{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    opacity: 0.85;
}
.top-bar .top-email:hover{
    opacity: 1.85;
}
.title-img {
    width: 180px;
}
.main-h {
    color: #121212;
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: .45px;
}
.main-h span{
    color: #114a9f;
}
.main-btn{
    color: #ffffff;
    background: #114a9f;
    border: 1px solid #114a9f;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .55px;
    text-transform: uppercase;
}
.main-btn:hover, .main-btn:focus{
    background-color: #2F5FE3;
    border: 1px solid #2F5FE3;
    color: #fff;
}
.main-btn-border{
    color: #2F5FE3;
    background: #fff;
    border: 1px solid #2F5FE3;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .55px;
    text-transform: uppercase;
}
.main-btn-border:hover, .main-btn-border:focus{
    background-color: #2F5FE3;
    color: #fff;
    border: 1px solid #2F5FE3;
}
.btn-mr-top{
    margin-top: 50px
}
/* Wrapper */
.floating-contact {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Base Button */
.fc-btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* WhatsApp */
.fc-btn.whatsapp {
    background: #25D366;
}

/* CALL VERTICAL BUTTON */
.fc-btn.call-vertical {
    height: 100px;              /* taller */
    border-radius: 30px;        /* pill shape */
    background: #0b4a94;
    flex-direction: column;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Vertical Text */
.call-vertical span {
    line-height: 1;
}

/* Icon */
.call-vertical i {
    font-size: 16px;
    margin-top: 4px;
}

/* Hover */
.fc-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

/* Pulse Animation */
.fc-btn::after {
    content: "";
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse 2s infinite;
    opacity: .4;
}

/* Adjust pulse for vertical button */
.fc-btn.call-vertical::after {
    width: 54px;
    height: 120px;
    border-radius: 30px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
/* ---------------- NAVBAR ---------------- */
.navbar{
    background:#fff;
    border-bottom:1px solid #eee;
    padding: 5px 0;
    transition:transform .45s ease, box-shadow .45s ease;
    z-index:999;
}
.navbar.is-sticky {
    position: fixed;
    margin-top: 0px;
    padding-top: 3px;
    padding-bottom: 3px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.fadeIn{
    animation-name:fadeIn;
}
@keyframes fadeInDown{
    from{
        opacity:0;
        transform:translate3d(0, -100%, 0);
    }
    to{
        opacity:1;
        transform:none;
    }
}
.fadeInDown{
    animation-name:fadeInDown;
}
@keyframes fadeInDownBig{
    from{
        opacity:0;
        transform:translate3d(0, -2000px, 0);
    }
    to{
        opacity:1;
        transform:none;
    }
}
.fadeInDownBig{
    animation-name:fadeInDownBig;
}
@keyframes fadeInLeft{
    from{
        opacity:0;
        transform:translate3d(-100%, 0, 0);
    }
    to{
        opacity:1;
        transform:none;
    }
}
.navbar.is-sticky .navbar-brand img{
    width: 160px;
}
.navbar.hide{
    transition: transform .45s ease, box-shadow .45s ease;
    top: 0px
}
.navbar.show.hide{
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    top: 0px
}

.navbar-brand img{
    width: 170px;
}
.navbar-light .navbar-nav .nav-link.last{
    color: #ffffff;
    background: #114a9f;
    border-radius: 12px;
    margin-left: 2px;
    padding: 12px 8px;
    font-weight: 600;
    font-size: 13px;
}
.navbar-light .navbar-nav .nav-link.last:hover, .navbar-light .navbar-nav .nav-link.last:focus{
    background-color: #2F5FE3;
    color: #ffffff;
}
.navbar-light .nav-call{
    padding-top: 3px;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    font-size: 12px;
    margin-right: 16px;
}
.navbar-light .nav-call i{
    font-size: 23px;
    color: #114a9f;
}
.navbar-light .nav-call span{
    color: #114a9f;
    font-weight: 600;
    font-size: 13px;
}
.navbar-light .nav-call p{
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 13px;
}
/* ---------------- LINKS ---------------- */
.navbar-nav .nav-item{
    margin-left: 5px;
}
.navbar-nav .nav-link{
    font-size: 13px;
    letter-spacing: .2px;
    color:#333;
    padding: 10px 8px;
    display:flex;
    align-items:center;
    gap: 3px;
    transition:.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}
.navbar-nav .nav-link:hover{
    color: #1b3c90;
}

/* Remove default caret */
.dropdown-toggle::after{
    display:none !important;
}

/* ---------------- DROPDOWNS ---------------- */
.dropdown-menu{
    border:none;
    padding:16px 0;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    z-index:9999;
}
/* Hover open on desktop */
@media(min-width:992px){
    .dropdown-menu{
        display:block;
        opacity:0;
        transform:translateY(12px);
        pointer-events:none;
        transition:all .35s ease;
    }
    .dropdown:hover > .dropdown-menu{
        opacity:1;
        transform:translateY(0);
        pointer-events:auto;
    }
}

/* Dropdown items */
.dropdown-item{
    font-size:13px;
    padding:10px 25px;
    letter-spacing:.5px;
    text-transform: uppercase;
}
.dropdown-item:hover{
    background:none;
    color:#114a9f;
}

/* Chevron rotate */
.nav-item.dropdown:hover i{
    transform:rotate(180deg);
}
.nav-item i{
    transition:.3s ease;
}

/* ---------------- ICONS ---------------- */
.nav-icons a{
    position:relative;
    font-size:18px;
    color:#333;
    margin-right:14px;
    transition:.3s ease;
}
.nav-icons a:hover{
    color:#b89b5e;
}

/* main slider */
.slider-wrap{
    position: relative;
    height: 600px;
}
.slider-wrap .main-hero{
    height: 600px;
    display: block
}
.slider-wrap .main-hero .slider-item{
    height: 600px;
    position: relative
}
.slider-wrap .main-hero .slider-item:after{
    content: '';
    position: absolute;
    background-color: #000;
    opacity: .6;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}
.hero-content{
    padding-top: 90px;
    position: relative;
    z-index: 2;
    width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.sub-span{
    grid-column-gap: 10px;
    background-color: #f0f6ff;
    border: 1px solid #7b9bcb;
    border-radius: 50px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 6px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #114a9f;
    letter-spacing: .25px;
    display: inline-block;
    margin-bottom: 10px;
}
.main-hero .hero-title{
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0;
    font-size: 58px;
    font-weight: 600;
    line-height: 80px;
    text-decoration: none;
}
.main-hero .sub-p{
    color: #fff;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
}
.main-hero .owl-nav {
    position: absolute;
    right: 5%;
    bottom: 6%;
    display: flex;
    gap: 15px;
}

.main-hero .owl-nav button {
    position: relative;
    margin: 0;
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.main-hero .owl-nav i {
    font-size: 18px;
    color: #1B3C90;
}

.main-hero .owl-nav button:hover {
    background: #1B3C90 !important;
}

.main-hero .owl-nav button:hover i {
    color: #ffffff;
}

.main-hero .owl-nav button:focus {
    outline: none;
}

.main-hero .owl-dots {
    position: absolute;
    bottom: 7%;
    left: 45%;
    justify-content: center;
    display: flex !important;
    gap: 14px;
}

.main-hero .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    background: #a2a2a2;
    border-radius: 50%;
    display: block;
    transition: all 0.35s ease;
}
.main-hero .owl-dots .owl-dot {
    width: 26px;
    height: 26px;
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}


.main-hero .owl-dots .owl-dot:hover {
    border-color: rgba(27, 60, 144, 0.4);
}

.main-hero .owl-dots .owl-dot.active {
    border-color: #ffffff;
    transform: scale(1.1);
}

/* Active inner circle */
.main-hero .owl-dots .owl-dot.active span {
    background: #ffffff;
    width: 12px;
    height: 12px;
}
.grad-sec{
    background: radial-gradient(circle at top, #ecf3ff, #f5faff);
}
.package-sec{
    background-color: #fcfcfc
}
.full-logo{
    width: 270px;
    margin-bottom: 20px
}
.package-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.package-list > div {
    height: 100%;
    padding: 50px 20px 20px 20px;
    border: 1px solid #dedede;
    background: #114a9f;
    border-radius: 16px;
    position: relative;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
}
.package-list > div a{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 22px;
    border-radius: 50% !important;
    background: #114a9f;
    color: #ffffff;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}
.package-list div:hover  a{
    background-color: #ffffff;
    color: #114a9f;
    transform: rotate(0deg);
}
.m-gallery{
    margin-top: 50px
}
.g-box {
    position: relative;
    display: block;
    overflow: hidden;
    height: 270px;
    width:100%
}

/* Image zoom effect */
.g-box img {
    width: 100%;
    transition: transform 0.5s ease;
    height: 270px;
    object-fit: cover;
}

/* Dark overlay */
.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    height: 270px;
    width:100%;
    opacity: 0;
    transition: all 0.4s ease;
    overflow: hidden
}

/* Title */
.g-overlay h3 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

/* Hover Effects */
.g-box:hover img {
    transform: scale(1.08);
}

.g-box:hover .g-overlay {
    opacity: 1;
}

.g-box:hover .g-overlay h4 {
    transform: translateY(0);
}
.counter-div{
    background-color: #000e24;
    padding: 50px;
    margin: 0px 10px;
}
.counter-div .title-img{

}
.counter-div .main-h{
    color: #fff
}
.counter-box {
    padding: 30px 20px;
    margin-top: 60px;
    background: rgb(255 255 255 / 6%); /* light transparency */
    backdrop-filter: blur(29px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.counter {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-top: 32px;
}

.counter-box p {
    font-size: 14px;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 0px;
    letter-spacing: .5px;
    font-weight: 500;
}
.counter-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
}

.counter-icon i {
    font-size: 22px;
    color: #d9d9d9; /* accent color */
}
.row-feature{

}
.why-feature{
    padding: 15px 15px;
    margin-top: 50px;
    background: rgb(255 255 255 / 6%);
    backdrop-filter: blur(29px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 11px;
}
.why-feature .why-feature-icon{
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 24px;
}
.why-feature p{
    color: #fff;
    margin-bottom: 0px
}
.service-sec{
    overflow: hidden
}
.service-sec .main-h{
    margin-bottom: 10px;
}
.serv-left{
    position: relative;

}
.serv-left .shape-1{
    position: absolute;
    left: -100px
}
.service-box {
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin-top: 35px;
    padding: 20px;
    box-shadow: 1px 1px 10px #e6e6e6;
    border-radius: 12px;
    border-left: 5px solid #114a9f;
}

.service-box .service-icon {
    background: #114a9f;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 5px solid #e0f5ff;
}

.service-box .service-icon img {
    width: 38px;
    filter: invert(1);
}

.service-box .service-con {

}

.service-box .service-title {
    font-size: 22px;
    font-weight: 600;
    padding-top: inherit;
    margin-bottom: 5px;
}

.service-box .service-con p {
    font-size: 14px;
    margin-bottom: 0px;
}
.serv-img{
    margin-top: 40px;
    z-index: 2;
    position: relative
}
.serv-img img{
    border-radius: 0px;
    border: 6px solid #f0f6ff;
}
.serv-img.serv-img-2{
    margin-top: 150px;
}

.ub-cta-wrap {
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-image: url(../assets/img/slide-1.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    padding: 50px 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid #eef1f5;
    position: relative;
    text-align: center;
}
.ub-cta-wrap:after {
    content: '';
    position: absolute;
    background-color: #000000bd;
    opacity: .9;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.ub-cta-wrap .main-btn{
    position: relative;
    z-index: 2
}
/* Left Content */
.ub-cta-content{
    position: relative;
    z-index: 2
}
.ub-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.ub-cta-content h2 span {
    color: #ffffff;
}

.ub-cta-content p {
    font-size: 16px;
    color: #fff;
    max-width: 520px;
    line-height: 1.7;
}
.cont-sec{
    background: #000e24;
    padding: 50px
}
.cont-sec .main-h{
    color: #fff;
    margin-bottom: 30px
}
.cont-right-form .label-top{
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}
.cont-right-form .label-top sup{
    font-size: 17px;
    margin-left: 5px;
    top: -2px;
}
.cont-right-form .form-group{
    margin-bottom: 15px
}
.cont-right-form .form-control{
    padding: 4px 12px;
    height: 45px;
    font-size: 13px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
}
.cont-right-form textarea.form-control{
    height: 227px
}
.cont-right-form .main-btn{
    margin-top: 30px
}
.exp-row{
    margin-top: 50px
}
.exp-row .main-h{
    font-size: 25px;
    line-height: 1.4;
}
.exp-box{
    background: #114a9f;
    position: relative;
    right: 0;
    top: 0;
    padding: 50px 50px;
    color: #fff;
    text-align: center;
}
.exp-box .exp-big{
    display: block;
    font-size: 70px;
    font-weight: 700;
}
.exp-box .exp-small{
    font-size: 33px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
}
.exp-box p{
    margin-bottom: 0px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
    margin-top: 20px;
}
.exp-div{
    padding-left: 30px
}
.exp-div p{
    font-size: 15px;
    line-height: 1.8
}
.h-expert{
    text-transform: uppercase;
    font-size: 45px;
    font-weight: 100;
    line-height: 1.3;

}
.exp-div a{
    margin-bottom: 10px;
    padding: 10px 14px;
}
.h-expert span{
    font-weight: 700;
}
.ub-why {
    padding: 90px 0;
    background: #ffffff;
}

/* Heading */
.ub-why-head {
    margin-bottom: 55px;
}

.ub-why-head h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.ub-why-head h2 span {
    color: #114a9f;
}

.ub-why-head p {
    color: #666;
    line-height: 1.7;
}

/* Vertical Line Layout */
.why-list-wrapper{
    justify-content: center;
    display: flex
}
.ub-why-list {
    position: relative;
    padding-left: 40px;
}

.ub-why-list::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #114a9f;
    opacity: 0.2;
}

/* Each Row */
.ub-why-row {
    position: relative;
    margin-bottom: 18px;
    padding-left: 10px;
}

.ub-why-row::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #114a9f;
    border-radius: 50%;
}

/* Text */
.ub-why-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.ub-why-desc {
    color: #666;
    line-height: 1.7;
    /* max-width: 720px; */
}

/* Subtle interaction */
.ub-why-row:hover .ub-why-title {
    color: #114a9f;
}
:root{
    --primary:#114a9f;
    --hover:#2F5FE3;
}

.roadmap-section{
    background:#fff;
}
.roadmap-section .main-h{
    margin-bottom: 50px
}
/* NAV */
.roadmap-wrapper{
    position:relative;
    border-bottom:2px solid #e6eaf0;
}

.roadmap-nav{
    position:relative;
    gap: 7px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.roadmap-nav .nav-link{
    border:none;
    background:none;
    text-align:center;
    padding: 20px 10px 20px;
    color:#6b7280;
    width:100%;
    transition:.3s;
    position: relative;
}

/* Numbers */
.step-number{
    display:block;
    font-weight:700;
    color:#c1cad6;
    margin-bottom:6px;
    font-size: 22px;
    transition:.3s;
    position: absolute;
    right: 0;
    top: 0;
}

/* Icon */
.step-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#eef2f7;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:10px;
    font-size:24px;
    color: #114a9f;
    transition:.4s;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.nav-link p{
    margin:0;
    font-size: 13px;
    margin-top: 15px !important;
    font-weight: 600;
    line-height: 21px;
}

/* Active */
.nav-link.active .step-icon{
    background:var(--primary);
    color:#fff;
    transform:translateY(-6px);
}

.nav-link.active .step-number{
    color:var(--primary);
}

/* Hover */
.nav-link:hover .step-icon{
    background:var(--hover);
    color:#fff;
}

/* Sliding underline */
.roadmap-indicator{
    position:absolute;
    bottom:-2px;
    height:3px;
    width:0;
    background:var(--primary);
    transition:all .4s ease;
}

/* Content */
.roadmap-content h3{
    font-weight:700;
    color:#1f2a44;
}
.roadmap-content p{
    color:#6b7280;
    line-height:1.7;
}

.roadmap-content img{
    border-radius:10px;
    box-shadow:0 25px 45px rgba(0,0,0,.08);
}


/* footer */

.m-footer{
    padding-top: 80px;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    background: #000e24;
    position: relative
}
.m-footer .ft-logo{
    width: 200px;
}
.m-footer .ft-p{
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 0px;
    width: 80%;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #dedede;
}
.m-footer .footer-link-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.m-footer .footer-link-list li a{
    position: relative;
    color: #dedede;
    margin-right: 30px;
    font-size: 13px;
    letter-spacing: 1px;
}
.m-footer p{
    color: #1e1e1e;
    font-size: 16px;
    line-height: 24px;
}
.m-footer h6{
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 40px;
    position: relative;
    font-weight: 700;
}
.m-footer h6:after{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0px;
    height: 3px;
    background: #114a9f;
    width: 40px;
}
.footer-middle{
    padding-bottom: 60px;
}
.footer-social-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-social-list a{
    color: #fff;
    font-size: 20px;
    transition: .2s;
}
.footer-social-list a:hover{
    color: #2a2834;
}
.footer-widget .footer-link-list li a{
    padding-bottom: 0;
    margin-bottom: 20px;
    padding-left: 10px;
    display: inline-block;
}
.footer-widget .footer-link-list li a:hover{
    color: #ffffff;
}
.footer-widget{
    margin-top: 10px;
    padding-bottom: 25px;
}
.footer-bottom{
    margin-bottom: 0px;
    margin-top: 0;
    padding: 15px 0;
    width: 100%;
    background-color: #114a9f;
}
.footer-bottom p{
    margin-bottom: 0px;
    font-size: 14px;
    color: #fff
}
.footer-bar{
    border-bottom: 1px solid rgba(132,132,132,.17);
    margin-bottom: 60px;
    padding: 25px 0 22px;
}
.address-ul{
    color: #667085;
    font-size: 16px;
}
.address-ul li{
    padding-bottom: 6px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 26px;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: #dedede;
}
.address-ul li i{
    color: #ffffff;
    font-size: 16px;
    margin-right: 3px;
    position: absolute;
    left: 0;
    margin-top: -3px;
}
.m-footer .footer-link-list li a:after{
    content: "";
    transition: .2s all ease;
    position: absolute;
    left: 0;
    top: 7.5px;
    height: 6px;
    width: 6px;
    border-radius: 10px;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ccc;
}
.m-footer .footer-link-list li a:hover:after{
    background: #114a9f;
}
.footer-social-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-social-list a{
    color: #ffffff;
    font-size: 14px;
    transition: .2s;
    width: 32px;
    background: #114a9f;
    height: 32px;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}
.footer-social-list a:hover{
    color: #ffffff;
    background: #3d59e8;
}
.footer-link-list li a{
    padding-bottom: 6px;
    margin-bottom: 10px;
    padding-left: 10px;
}
.footer-link-list li a:hover{
    color: #ec3323;
}
/* faq section */
.faq-sec{
    background-color: #fcfcfc;
}
.faq-sec .accordion{
    margin-top: 50px
}
.faq-sec .accordion-item{
    border: 0px;
    margin-bottom: 15px;
    border-radius: 12px !important;
    border: 1px solid #dedede !important;
}
.faq-sec .accordion-item .accordion-header {
    background-color: #fff;
    position: relative;
    border-radius: 12px !important;
}
.faq-sec .accordion-button{
    padding: 20px;
    background-color: #fff;
    color: #114a9f;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px !important;
}
.faq-sec .accordion-button:not(.collapsed) {
    color: #114a9f;
    background-color: #fff;
    box-shadow: none;
}
.faq-sec .accordion-button:focus {
    z-index: 3;
    border-color: #FFF;
    outline: 0;
    box-shadow: none;
}
.faq-sec .accordion-body {
    padding: 1rem 1.25rem;
    line-height: 1.8;
    font-size: 15px;
    border-radius: 0px 0px 12px 12px;
}
.faq-sec .accordion-body p{
    font-weight: 400
}
.free-modal .free-left{
   
}
.free-left-div{
     background-image: url(../../assets/img/free-modal.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}
.free-left-div .free-logo{
    width: 300px;
    filter: brightness(0) invert(1);
}
.free-left-div .div-inn{
    text-align: center;
    position: relative;
    z-index: 2;
}
.free-left-div .div-inn h3{
    color: #fff;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    font-size: 34px;
    letter-spacing: .7px;
}
.free-left-div .div-inn hr{
    border-top: 1px solid #fff;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
.free-modal .free-left-div:before{
    content: '';
    position: absolute;
    background-color: #09387f;
    opacity: .9;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.free-modal .free-left:after{

}
.free-modal .modal-body{
    position: relative;
    padding: 0px
}
.free-modal .modal-body .btn-close{
    position: absolute;
    right: 10px;
    top: 10px;
}
.free-modal .free-right{
    padding: 40px
}
.free-modal .free-right .main-h{
    font-size: 25px;
    line-height: 36px;
}
.free-modal .free-right .label-top{
    color: #121212;
    margin-bottom: 4px
}
.free-modal .free-right .form-control{
    height: 40px
}
.free-modal .free-right .main-btn{
    margin-top: 20px
}
.free-modal .free-right textarea{
    height: 60px !important
}
.add-box {
    background-color: #114a9f;
    text-align: center;
    padding: 28.4px  20px;
    width: 100%;
    border-radius: 0px;
    margin-bottom: 1.6rem;
    border: 1px solid #e4e4e4;
}
.add-box i {
    font-size: 24px;
    margin-bottom: 21px;
    color: #ffffff;
    background: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    line-height: 57px;
    text-align: center;
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    /* display: flex; */
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.add-box h5 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.add-box p {
    margin-top: 0px;
    font-weight: 500;
    margin-bottom: 3px;
    color: #f3f3f3;
}
.add-box .list-inline li a{
    color: #4d4d4d;
    font-size: 18px;
    margin-top: 5px;
}
.package-sec .main-h{
    margin-bottom: 40px
}
.site-gallery-box{position:relative;overflow:hidden;border-radius: 0px;}

.site-gallery-box .site-img{width:100%;height: 380px;object-fit:cover;transition:0.4s;}
.site-gallery-box .cmp-logo{
    width: 100px !important;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 12;
}
.site-gallery-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
padding:20px;
background:linear-gradient(to top,rgba(0,0,0,0.7),transparent);
color:#fff;
}

.site-gallery-overlay h3{
font-size:16px;
margin:0;
font-weight:600;
}

.site-gallery-box:hover .site-img{
transform:scale(1.08);
}

/* arrows */
.site-gallery-carousel{
    margin-top: 40px;
}
.site-gallery-carousel .owl-nav{
right:0;
}

.site-gallery-carousel .owl-nav button{width:42px;height:42px;border-radius:50%;background:#fff !important;box-shadow:0 5px 15px rgba(0,0,0,0.1);font-size:18px;position: absolute;bottom: 44%;}
.site-gallery-carousel .owl-nav button.owl-next{
    right: 22px;
}
.site-gallery-carousel .owl-nav button.owl-prev{
    left: 22px;
}
.site-gallery-carousel .owl-nav button:hover{
background:#114a9f !important;
color:#fff;
}
/* Wrapper */
.custom-service-cards {
    margin-top: 10px;
}

/* Card Design */
.service-card-v2 {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    height: 100%;
    border: 1px solid #e6ecf5;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Top Accent Line */
.service-card-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #114a9f, #2F5FE3);
}

/* Hover */
.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(17,74,159,0.15);
}

/* Title */
.service-card-v2 h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    color: #114a9f;
}

/* List */
.service-card-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item */
.service-card-v2 ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Bootstrap Icon Check */
.service-card-v2 ul li::before {
    content: "\f26e"; /* bi-check-circle-fill */
    font-family: "bootstrap-icons";
    color: #2F5FE3;
    font-size: 16px;
    margin-top: 2px;
}

/* Last item spacing fix */
.service-card-v2 ul li:last-child {
    margin-bottom: 0;
}
/* blog box */
.blog-box {
    background: #ffffff;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 12px;
    -webkit-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.blog-box .se-content {
    padding: 14px 0px;
}
.blog-box .se-content ul li{
    font-size: 14px;
    font-weight: 500;
    color: gray;
}
.blog-box .se-content ul li i{
    color: #114a9f;
    margin-right: 4px;
}
.blog-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.blog-box:hover .icon {
    color: #ffffff;
    -webkit-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-box .icon {
    border-radius: 6px;
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-box .icon a{
    height: 220px;
    width: 100%;
    display: block;
    object-fit: cover;
}
.blog-box .icon a img{
    height: 220px;
    width: 100%;
    object-fit: cover;
}
.blog-box .icon img{
    border-radius: 6px;
}
.blog-box h3 {
        line-height: .99;
        margin-top: 10px;
}
.blog-box h3 a{
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 10px;
    letter-spacing: .5px;
    color: #1e1e1e;
    font-weight: 700;
}
.blog-box h3 a:hover{
    color: #114a9f;
}
.blog-box p {
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}
.blog-box .read-more-btn{
    color: #114a9f;
    font-weight: 500;
}
.blog-box .read-more-btn:hover{
    color: #1e1e1e;
}
.blog-box .read-more-btn:hover i{
    padding-left: 3px;
    transition: -webkit- .2s cubic-bezier(.38,.32,.36,.98) 0s;
    -o-transition: .2s cubic-bezier(.38,.32,.36,.98) 0s;
    transition: .2s cubic-bezier(.38,.32,.36,.98) 0s;
    transition: .2s cubic-bezier(.38,.32,.36,.98) 0s,-webkit-transform .2s cubic-bezier(.38,.32,.36,.98) 0s;
}

.blog-box a i{
    vertical-align: middle;
    font-size: 16px;
    margin-left: 5px;
    margin-top: 1px;
}

/* ===== Agro Breadcrumb Style ===== */
.agro-breadcrumb {
    background: #f7fcff;
    padding: 17px 0;
    border-bottom: 0px solid #e5e5e5;
    border-radius: 12px;
}

.agro-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 15px;
}

.agro-breadcrumb-list li {
    position: relative;
    color: #6c757d;
    font-weight: 500;
}

/* spacing */
.agro-breadcrumb-list li + li {
    margin-left: 28px;
}

/* arrow separator */
.agro-breadcrumb-list li + li:before {
    content: "/";
    position: absolute;
    left: -18px;
    color: #b5b5b5;
    font-size: 18px;
    top: -1px;
}

/* links */
.agro-breadcrumb-list li a {
    text-decoration: none;
    color: #4a4a4a;
    transition: all .25s ease;
}

/* hover */
.agro-breadcrumb-list li a:hover {
    color: #2f6f3e; /* agriculture green */
}

/* active page */
.agro-breadcrumb-list li.active {
    color: #114a9f;
    font-weight: 600;
}
/* blog detail */
.blog-detail{
    background-color: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}
.blog-detail .blog-heading{
    margin-top: 0rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #121212;
    font-size: 25px;
}
.blog-detail-inline .list-inline{
    margin-bottom: 3rem;
    margin-top: 0px;
}
.blog-detail-inline .list-inline li a i{
    font-size: 16px;
    color: #016552;
    vertical-align: baseline;
}
.blog-detail-inline .list-inline li a{
    font-size: 15px;
    color: #838383;
}
.blog-detail-inline .list-inline li a:hover{
    color: #c41f43;
}
.blog-detail .main-img{
    margin-bottom: 2rem
}
.blog-detail p{
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: 400;
}
.agro-icon.copy.copied {
    background: #28a745;
    color: #fff;
    transform: scale(1.1);
}
.latest-title{
    font-weight: 700;
    line-height: 1.4;
    color: #121212;
    font-size: 21px;
    margin-bottom: 30px;
}
.latest-box{
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #d0d5dd;
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.latest-box .latest-img{
    display: block;
    width: 100px;
    height: 90px;
    overflow: hidden;
    border-radius: 12px;
}
.latest-box .latest-img img{
    width: 100px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
}
.latest-box .latest-con{
    
}
.latest-box .latest-con a{
    color: #121212;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
    display: inline-block;
    font-size: 15px;
}
.latest-box:hover .latest-con a{
    color: #114a9f
}
.latest-box .latest-con ul{
    
}
.latest-box .latest-con ul li{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.latest-box .latest-con ul li i{
    color: #114a9f;
}
.cc-premium-card{
background:#fff;
border-radius:14px;
padding:40px 30px;
text-align:center;
border:1px solid #e6e6e6;
position:relative;
transition:all .35s ease;
overflow:hidden;
margin-bottom:30px;
width: 100%;
}

/* top gradient accent */

.cc-premium-card:before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#2563eb,#38bdf8);
}

/* hover */

.cc-premium-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

/* ICON */

.cc-icon{
width:72px;
height:72px;
margin:0 auto 22px;
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
background:linear-gradient(135deg,#2563eb,#38bdf8);
box-shadow:0 8px 20px rgba(37,99,235,0.25);
}

/* TITLE */

.cc-premium-card h4{
font-size:20px;
font-weight:600;
margin-bottom:14px;
margin-top: 50px;
}

/* TEXT */

.cc-premium-card p{
font-size:15px;
color:#666;
line-height:1.6;
margin-bottom:26px;
}
/* PRICING CARD */
.pricing-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:all .4s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
    border:1px solid #eef1f5;
    position:relative;
    margin-bottom: 30px;
}

.pricing-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* HEADER */
.pricing-header{
    background:linear-gradient(135deg,#114a9f,#2F5FE3);
    color:#fff;
    text-align:center;
    padding: 15px 10px;
}

.pricing-header h3{
    font-weight:600;
    margin-bottom:6px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price{
    font-size: 28px;
    font-weight:700;
    letter-spacing:.5px;
}

/* ACCORDION RESET */
.pricing-card .accordion-item{
    border:none;
    border-bottom:1px solid #eef1f5;
}

.pricing-card .accordion-button{
    background:none;
    box-shadow:none;
    padding: 11px 0;
    font-weight:500;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.pricing-card .accordion-button:focus{
    box-shadow:none;
}

.pricing-card .accordion-button::after{
    display:none !important;
}
.pricing-card .main-btn{
    padding: 14px 6px;
}
/* PLUS MINUS ICON */
.pm-toggle{
    width: 22px;
    height: 22px;
    border-radius:50%;
    border:1.5px solid #cfd6e0;
    position:relative;
    transition:.35s ease;
}

.pm-toggle span{
    position:absolute;
    background:#114a9f;
    transition:.35s ease;
}

/* horizontal */
.pm-toggle .line-h{
    width: 10px;
    height:2px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* vertical */
.pm-toggle .line-v{
    width:2px;
    height: 10px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* OPEN STATE */
.pricing-card .accordion-button.active .pm-toggle{
    border-color:#114a9f;
    background:rgba(17,74,159,.06);
}
.pricing-card .pricing-body{
    padding: 15px;
}
.pricing-card .accordion-button.active .line-v{
    height:0;
}

/* BODY */
.pricing-card .accordion-body{
    padding: 14px;
    color: #5f6b7a;
    font-size: .95rem;
    background: #f0f8ff;
}
.pricing-card .accordion-body p{
     font-size: 11.5px;
    margin-bottom: 8px;
    color: #121212;
    font-weight: 500;
}
.pricing-card .accordion-body ul{
    list-style: none;
    padding-left: 0pc;
}
.pricing-card .accordion-body ul li{
    font-size: 11.5px;
    margin-bottom: 8px;
    color: #121212;
    font-weight: 500;
    position: relative;
    padding-left: 5px;
}
.pricing-card .accordion-body ul li:before{
    content: '';
    position: absolute;
    left: -5px;
    top: 5px;
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background: #114a9f;
}
/* FOOTER BUTTON */
.pricing-footer{
    padding: 18px;
}
.cost-calculator{
    background: #000e24;
    color: #fff;
    padding-top: 150px;
    padding-bottom: 150px;
}
.cost-calculator .main-h{
    color: #fff;
}
.cost-calculator p{
    color: #fff
}
.cost-table table{
    background:#fff;
    border:1px solid #ddd;
    font-size:14px;
}

.cost-table thead{
    background:#114a9f;
    color:#fff;
}

.cost-table th{
    font-weight:600;
    padding:12px;
    background: #114a9f;
    color: #fff;
}

.cost-table td{
    padding:12px;
    vertical-align:middle;
}

.form-control-sm{
    height:34px;
}

.total-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    background:#fff;
    border:1px solid #ddd;
    border-top:none;
    font-size:16px;
    font-weight: 600;
}
.total-bar span{
    color: #000;
}
.total-bar strong{
    color:#114a9f;
    font-size:20px;
}

/* Ã¢Å“â€¦ MOBILE TRANSFORM (Table Ã¢â€ â€™ Card Style Automatically) */
@media(max-width:768px){

    .cost-table table,
    .cost-table thead,
    .cost-table tbody,
    .cost-table th,
    .cost-table td,
    .cost-table tr{
        display:block;
        width:100%;
    }

    .cost-table thead{
        display:none;
    }

    .cost-table tr{
        border-bottom:1px solid #eee;
        padding:10px 0;
    }

    .cost-table td{
        display:flex;
        justify-content:space-between;
        gap:15px;
        padding:8px 10px;
    }

    .cost-table td::before{
        font-weight:600;
        color:#666;
        width:50%;
    }

    .cost-table tr td:nth-child(1)::before{content:"Work";}
    .cost-table tr td:nth-child(2)::before{content:"Input";}
    .cost-table tr td:nth-child(3)::before{content:"Unit";}
    .cost-table tr td:nth-child(4)::before{content:"Rate";}
    .cost-table tr td:nth-child(5)::before{content:"Cost";}
}
.partner .item {
    background: #fff;
    box-shadow: 1px 1px 10px #efefef;
    padding: 28px;
    margin-top: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: 0.3s ease;
}

.partner .item img {
    opacity: 1.7;
    transition: 0.3s ease;
    width: 200px;
}

.partner .item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.partner .item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.modal-m .modal-header{
    border: 0px !important;
    padding: 40px 40px;
}
.modal-m .modal-body{
    padding: 0px 40px 40px;
}
.modal-m .form-control{
    font-size: 14px;
    height: 48px;
}
.calc-row .form-group{
margin-bottom: 15px;
}
.calc-row .form-control{
    font-size: 14px;
    height: 48px;
}
.landing-hero{
    background: #114a9f;
    
}

.landing-hero .main-h{
    color: #fff;
    font-size: 70px;
    line-height: 90px;
}
.landing-hero p{
    color: #fff;
}
.landing-hero-form{
    background: #000e24;
    padding: 30px;
    border-radius: 12px;
}
.landing-hero-form p{
    color: #fff;
}
.landing-hero-form .main-h{
    font-size: 24px;
    color: #fff;
    line-height: 30px;
}
.landing-hero-form .label-top{
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}
.landing-hero-form .label-top sup{
    font-size: 17px;
    margin-left: 5px;
    top: -2px;
}
.landing-hero-form .form-group{
    margin-bottom: 15px
}
.landing-hero-form .form-control{
    padding: 4px 12px;
    height: 45px;
    font-size: 14px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
}
.landing-hero-form textarea.form-control{
    height: 70px;
}
.landing-hero-form .main-btn{
    margin-top: 15px;
}
.testimonial-section{

}

.testimonial-title{
font-size:36px;
font-weight:700;
color:#114a9f;
}

.testimonial-sub{
color:#666;
margin-top:10px;
}

.testimonial-card{background:#fff;padding:35px 28px;border-radius:12px;box-shadow: none;text-align:center;margin:10px;transition:0.3s;}

.testimonial-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.testimonial-section .stars{color: #FFC107;font-size:18px;margin-bottom:15px;display: flex;justify-content: center;gap: 5px;}

 .testimonial-text{
font-size:15px;
color:#555;
line-height:1.7;
margin-bottom:18px;
}

.client-name{font-weight:600;margin-bottom:3px;color: #114a9f;}

.client-city{
font-size:14px;
color:#777;
}

.testimonial-section .owl-theme .owl-controls .owl-page span{
background:#114a9f;
}
/* Navigation Wrapper */
.testimonial-slider .owl-nav{
    text-align:center;
}
.testimonial-slider .owl-buttons{
text-align:center;
margin-top:30px;
}

/* Navigation Buttons */
.testimonial-slider .owl-prev,
.testimonial-slider .owl-next{display:inline-flex;align-items:center;justify-content:center;width:45px;height:45px;border-radius:50%;background: #ffffff !important;border: 1px solid #114a9f !important;color: #114a9f !important;font-size: 20px !important;margin: 20px 8px 0px;transition:0.3s;}

/* Hover Effect */
.testimonial-slider .owl-prev:hover,
.testimonial-slider.owl-next:hover{background: #114a9f !important;color: #ffffff !important;}

/* Remove default arrow text */
.testimonial-slider .owl-prev,
.testimonial-slider .owl-next{
font-size:0;
}
/* Responsive */
@media (max-width: 768px) {
    .section-space {
    padding-top: 50px;
    padding-bottom: 50px;
}
   .slider-wrap, .slider-wrap .main-hero, .main-hero .slider-item {
    height: 490px !important;
}
    .hero-content{
        width: 100%;
    }
    .main-hero .hero-title{
    font-size: 35px;
    line-height: 50px;
    }
    .hero-content {
    padding-top: 40px;
    }
    .main-hero .sub-p{
        margin-bottom: 25px;
    }
    .main-hero .owl-nav{
        display: none;
    }
    .main-hero .owl-dots{
        left: 40%;
    }
    .package-list {
    grid-template-columns: repeat(2, 1fr);
    }
    .main-h {
        font-size: 30px;
        line-height: 42px;
    }
    .ub-cta-wrap {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .ub-cta-content h2 {
        font-size: 26px;
    }
    .roadmap-nav{
        overflow-x:auto;
        flex-wrap:nowrap;
    }
    .roadmap-nav .nav-item{
        min-width:160px;
    }
    .floating-contact{
        right: 8px;
    }
    .main-btn {
    padding: 13px 12px;
    font-size: 13px;
    }
    .counter-div {
    padding: 20px;
    }
    .counter-box {
    padding: 15px;
    margin-top: 20px;
    }
    .counter-box {
    margin-top: 20px;
    }
    .serv-img-2{
        display: none;
    }
    .cont-sec {
    padding: 20px;
}
.cont-right{
    margin-top: 0px
}
.cont-sec .main-h {
    margin-bottom: 80px;
}
.cont-right-form textarea.form-control {
    height: 90px;
}
.exp-box{
    padding: 30px
}
.h-expert {
    font-size: 40px;
    margin-top: 20px;
}
.free-left-div{
    padding: 15px;
}
.free-left-div .free-logo{
    width: 135px;
}
.free-left-div .div-inn h3 {
    width: 90%;
    margin-top: 10px;
    font-size: 18px;
    letter-spacing: .7px;
}
.free-modal .free-right {
    padding: 0px;
}
.free-modal .free-right .free-right-div{
    padding: 30px;
}
.free-modal .modal-body .btn-close {
    position: absolute;
    right: 4px;
    top: 9px;
    background-color: #ffffff;
    z-index: 3;
    opacity: 1;
}
.cont-right-form .form-control{
    font-size: 14px;
}
.free-modal .free-right .main-h {
    font-size: 20px;
}
}
@media (max-width: 991px) {
    .landing-hero .main-h{
        font-size: 34px;
    line-height: 47px;
    }
    .landing-hero-form {
    padding: 15px;
}
    .navbar-light .nav-call{
        justify-content: start;
    }
    .navbar-nav .nav-link{
        display: inline-block;
    }
    .navbar-light .navbar-nav .nav-link.last{
        margin-top: 15px;
    }
    .cc-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    }
    .cc-premium-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 26px;
}
}
