/********** Template CSS **********/

:root {
    --primary: #1abc9c;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #333;
     scroll-behavior: smooth;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
/* ===========================
   NAVBAR
=========================== */

.navbar-dark{
    transition:all .35s ease;
}

/* Logo */

.main-logo{
    height:80px;
    width:auto;
    transition:all .35s ease;
}

/* Navigation Links */

.navbar-dark .navbar-nav .nav-link{
    position:relative;
    margin-left:28px;
    padding:35px 0;
    color:#fff;
    font-size:18px;
    font-weight:600;
    font-family:'Nunito',sans-serif;
    transition:.35s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active{
    color:#fff;
}

.navbar-dark .navbar-toggler{
    border-color:var(--primary);
    color:var(--primary);
}

.navbar-toggler:focus{
    box-shadow:none;
}

/* Sticky Navbar */

.sticky-top.navbar-dark{
    position:fixed;
    background:#2c3e50;
    backdrop-filter:blur(10px);
}

.sticky-top.navbar-dark .navbar-nav .nav-link{
    padding:20px 0;
}

/* ===========================
   DESKTOP
=========================== */

@media (min-width:992px){

.navbar-dark{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:transparent;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.navbar-dark .navbar-nav .nav-link::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:-2px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.35s;
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before{
    left:0;
    width:100%;
}

}

/* ===========================
   TABLET & MOBILE
=========================== */

@media (max-width:991.98px){

.navbar-dark{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(44,62,80,.92);
    padding:10px 18px !important;
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* Smaller Logo */

.main-logo{
    height:56px;
}

/* Hamburger */

.navbar-toggler{
    padding:6px 10px;
}

/* Mobile Menu */

#navbarCollapse{
    margin-top:12px;
    padding:15px;
    border-radius:14px;
    background:#2c3e50;
}

/* Mobile Links */

.navbar-dark .navbar-nav .nav-link{
    margin-left:0;
    padding:12px 0;
    font-size:17px;
    color:#fff;
    text-align:center;
}

.navbar-dark .navbar-nav .nav-link::before{
    display:none;
}

/* Hero Content */

.carousel-caption{
    padding-top:90px;
}

}

/* ===========================
   SMALL PHONES
=========================== */

@media (max-width:576px){

.main-logo{
    height:48px;
}

.navbar-dark{
    padding:8px 15px !important;
}

.carousel-caption{
    padding-top:75px;
}

}

/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background: rgba(44, 62, 80, 0.7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@keyframes section-title-run {
    0%   { left: 0; }
    50%  { left: 145px; }
    100% { left: 0; }
}

@keyframes section-title-run-center {
    0%   { left: 50%; margin-left: -75px; }
    50%  { left: 50%; margin-left: 45px; }
    100% { left: 50%; margin-left: -75px; }
}

@keyframes section-title-run-sm {
    0%   { left: 0; }
    50%  { left: 85px; }
    100% { left: 0; }
}

/*** Service ***/



/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: 0 !important;
    }
}

/* Our Goal Section */
.our-goal {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.our-goal h2 {
    color: white;
}

.our-goal h2:after {
    background-color: white;
}

.our-goal p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}


.vendor-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
}

.vendor-carousel img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

/* =========================================
   MOBILE RESPONSIVE FIXES
========================================= */

@media (max-width: 768px) {

    .carousel-item{
        min-height:650px;
    }

    .carousel-item img{
        height:650px;
        object-fit:cover;
    }

    .carousel-caption{
        display:flex !important;
        align-items:center;
        justify-content:center;
        text-align:center;
        padding:20px;
    }

    .carousel-caption .p-3{
        width:100%;
        max-width:100% !important;
        padding:0 !important;
    }

    .carousel-caption h5{
        font-size:16px !important;
        line-height:1.5;
    }

    .carousel-caption h1{
        font-size:36px !important;
        line-height:1.2;
        margin-bottom:15px;
    }

    .carousel-caption p{
        font-size:18px !important;
        line-height:1.7;
        margin-bottom:20px;
    }

    .carousel-control-prev,
    .carousel-control-next{
        width:12%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width:28px;
        height:28px;
    }

    .navbar-brand img{
        height:55px;
    }
}
/* ========= HERO MOBILE FIX ========= */

.hero-title{
    font-size:70px;
    font-weight:700;
}

.hero-text{
    font-size:20px;
    line-height:1.7;
}

.carousel-image{
    height:100vh;
    object-fit:cover;
}

@media (max-width:768px){

    .carousel-image{
        height:700px;
    }

    .carousel-caption{
        padding:20px;
    }

    .hero-title{
        font-size:38px;
        line-height:1.2;
    }

    .hero-text{
        font-size:17px;
        line-height:1.6;
    }

    .carousel-caption h5{
        font-size:15px;
    }

    .carousel-caption .btn{
        display:block;
        width:100%;
        margin:10px auto;
    }

    .carousel-control-prev,
    .carousel-control-next{
        width:8%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width:24px;
        height:24px;
    }
}
/* ===== About Feature List ===== */

.feature-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-item i{
    flex: 0 0 28px;      /* Fixed width for check icon */
    margin-top: 5px;
    font-size: 18px;
}

.feature-item span{
    line-height: 1.4;
}

/* Mobile */
@media (max-width:768px){

    .feature-item{
        margin-bottom:15px;
    }

    .feature-item span{
        font-size:16px;
    }

}
/* ===========================
   PREMIUM FOOTER
=========================== */

.footer-link{
    display:block;
    color:#d6d6d6;
    margin-bottom:18px;
    text-decoration:none;
    transition:.3s;
    }
    
    .footer-link:hover{
    color:#1abc9c;
    padding-left:8px;
    }
    
    .bg-dark h4{
    position:relative;
    padding-bottom:12px;
    margin-bottom:25px;
    }
    
    .bg-dark h4:after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:3px;
    background:#1abc9c;
    }
    
    .bg-dark{
    background:#13273b!important;
    }
    
    .bg-dark p{
    line-height:1.9;
    }
    
    hr.border-secondary{
    opacity:.15;
    }
    
    @media(max-width:991px){
    
    .bg-dark{
    text-align:center;
    }
    
    .bg-dark h4:after{
    left:50%;
    transform:translateX(-50%);
    }
    
    }
    /* ===========================
   SERVICE SECTION
=========================== */

.service-item{

    background:#ffffff;

    border-radius:18px;

    padding:24px;

    transition:.35s;

    height:100%;

    display:flex;

    flex-direction:column;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    border:1px solid #edf2f7;

}
    
.service-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#1abc9c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:28px;
    box-shadow:0 8px 20px rgba(26,188,156,.25);
    transition:.3s ease;
    transform:none;
}

.service-item:hover .service-icon{
    transform:scale(1.08);
    background:#159d85;
}

.service-icon i{
    transform:none;
}
    .service-title{
        font-size:24px;
        font-weight:700;
        line-height:1.3;
        color:#222;
        text-align:center;
        margin:18px 0 15px;
    }
    
    .service-desc{
        font-size:15px;
        line-height:1.7;
        color:#666;
        text-align:center;
        margin-bottom:18px;
        max-width:95%;
        margin-left:auto;
        margin-right:auto;
    }
    
    .service-list{
    
    list-style:none;
    
    padding-left:0;
    
    margin:0;
    
    }
    
    .service-list li{
    
    position:relative;
    
    padding-left:24px;
    
    margin-bottom:12px;
    
    font-size:16px;
    
    line-height:1.6;
    
    color:#555;
    
    }
    
    .service-list li::before{
    
    content:"›";
    
    position:absolute;
    
    left:0;
    
    color:#18b89a;
    
    font-weight:bold;
    
    font-size:20px;
    
    }
    
    /* MOBILE */
    
    @media (max-width:991px){
    
    .service-item{
    
    margin-bottom:30px;
    
    }
    
    }
    
    @media (max-width:768px){
    
    .service-title{
    
    font-size:30px;
    
    text-align:center;
    
    }
    
    .service-desc{
    
    text-align:center;
    
    font-size:16px;
    
    }
    
    .service-list li{
    
    font-size:15px;
    
    }
    
    .service-icon{
    
    width:75px;
    
    height:75px;
    
    font-size:28px;
    
    }
    
    }
    
    @media (max-width:576px){
    
    .service-item{
    
    padding:25px;
    
    }
    
    .service-title{
    
    font-size:25px;
    
    }
    
    .service-desc{
    
    font-size:15px;
    
    }
    
    .service-list li{
    
    font-size:14px;
    
    }
    
    }
    .feature-box{
        display:flex;
        align-items:flex-start;
        gap:18px;
    }
    
    .feature-icon{
        font-size:32px;
        min-width:32px;
        margin-top:6px;
    }
    
    .feature-box h5{
        margin:0;
        font-size:28px;
        line-height:1.3;
        font-weight:700;
    }
    
    .feature-box small{
        display:block;
        margin-top:6px;
        font-size:15px;
    }
    
    @media (max-width:768px){
    
    .feature-box{
        gap:15px;
    }
    
    .feature-icon{
        font-size:28px;
    }
    
    .feature-box h5{
        font-size:20px;
    }
    
    .feature-box small{
        font-size:14px;
    }
    
    }
   /* Entire consultant block */
.consultant-block{
    padding:80px 0;
    border-bottom:1px solid #ececec;
}

/* Badge */
.consultant-block .badge{
    font-size:16px;
    font-weight:600;
    padding:10px 18px;
    border-radius:8px;
    letter-spacing:.5px;
}

/* Consultant Name */
.consultant-block h2{
    font-size:36px;
    font-weight:800;
    margin:18px 0 35px;
    color:#1b1b1b;
    line-height:1.1;
}

/* Core Expertise Heading */
.consultant-block h5{
    font-size:28px;
    font-weight:700;
    margin-top:45px;
    margin-bottom:18px;
}

/* Paragraph */
.consultant-block p{
    font-size:21px;
    line-height:2;
    color:#555;
    margin-bottom:25px;
}

/* Image */
.consultant-image{
    width:100%;
    max-width:460px;
    height:600px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

/* Stat cards */
.stat-card{
    background:#f8f9fa;
    border-radius:16px;
    padding:28px 15px;
    text-align:center;
    height:100%;
    transition:.3s;
}

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

.stat-card h3{
    font-size:48px;
    color:#18b89a;
    font-weight:800;
    margin-bottom:8px;
}

.stat-card small{
    font-size:18px;
    color:#666;
}

/* Expertise List */
.expertise-list{
    list-style:none;
    padding:0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px 35px;
}

.expertise-list li{
    position:relative;
    padding-left:30px;
    font-size:19px;
    color:#444;
}

.expertise-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#18b89a;
    font-size:18px;
    font-weight:700;
}

/* Responsive */
/* ===========================
   TABLET
=========================== */

@media (max-width:991px){

    .consultant-block{
        padding:60px 0;
        text-align:left;
    }
    
    .consultant-block h2{
        font-size:22px;
        margin-bottom:25px;
    }
    
    .consultant-block p{
        font-size:18px;
        line-height:1.8;
    }
    
    .consultant-image{
        max-width:340px;
        height:430px;
        margin:40px auto 0;
    }
    
    .expertise-list{
        grid-template-columns:1fr;
        gap:10px;
    }
    
    .expertise-list li{
        font-size:17px;
    }
    
    .stat-card{
        padding:20px 10px;
    }
    
    .stat-card h3{
        font-size:34px;
    }
    
    .stat-card small{
        font-size:15px;
    }
    
    }
    
    
    /* ===========================
       MOBILE
    =========================== */
    
    @media (max-width:576px){
    
    .consultant-block{
        padding:45px 0;
        text-align:left;
    }
    
    .consultant-block .badge{
        font-size:13px;
        padding:8px 14px;
    }
    
    .consultant-block h2{
        font-size:22px;
        margin:15px 0 25px;
        line-height:1.2;
    }
    
    .consultant-block h5{
        font-size:22px;
        margin-top:30px;
    }
    
    .consultant-block p{
        font-size:16px;
        line-height:1.8;
        text-align:left;
    }
    
    .consultant-image{
        width:100%;
        max-width:300px;
        height:360px;
        margin:35px auto 0;
    }
    
    /* Stat Cards */
    
    .stat-card{
        padding:15px 8px;
        border-radius:12px;
    }
    
    .stat-card h3{
        font-size:28px;
        margin-bottom:6px;
    }
    
    .stat-card small{
        font-size:13px;
        line-height:1.3;
        display:block;
    }
    
    /* Make all cards same height */
    
    .row.g-3>.col-4{
        display:flex;
    }
    
    .row.g-3>.col-4 .stat-card{
        width:100%;
    }
    
    /* Expertise */
    
    .expertise-list{
        display:grid;
        grid-template-columns:1fr;
        gap:8px;
    }
    
    .expertise-list li{
        font-size:16px;
        padding-left:24px;
    }
    
    }*/
    /* ===========================
   CLIENT LOGO SLIDER
=========================== */

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    width: calc(220px * 30);
    animation: scroll 35s linear infinite;
}

.logo-track img {
    width: 150px;
    height: 80px;
    object-fit: contain;
    margin: 0 35px;
    filter: grayscale(100%);
    opacity: .75;
    transition: .3s;
}

.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* Pause when mouse over */

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

@keyframes scroll {

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(calc(-220px * 15));
    }

}

/* Mobile */

@media(max-width:768px){

.logo-track img{

    width:100px;
    height:60px;
    margin:0 20px;

}

.logo-track{

    width:calc(140px * 30);

}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(calc(-140px * 15));
}

}

}
/* ===========================
      OUR GOAL SECTION
=========================== */

.goal-section{

    background:linear-gradient(135deg,#f7fffd,#e9fffb);

}

.goal-icon{

    width:90px;
    height:90px;
    margin:auto;
    background:#14c2a3;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    box-shadow:0 10px 25px rgba(20,194,163,.25);

}

.goal-text{

    max-width:900px;
    margin:auto;
    color:#5f6675;
    font-size:1.15rem;
    line-height:1.9;

}

.goal-quote{

    background:#fff;
    padding:35px;
    border-left:5px solid #14c2a3;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.goal-quote i{

    font-size:40px;
    color:#14c2a3;
    margin-bottom:15px;

}

.goal-quote p{

    margin:0;
    font-size:1.1rem;
    line-height:1.8;
    color:#555;

}

.goal-card{

    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    transition:.35s;
    height:100%;
    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.goal-card:hover{

    transform:translateY(-10px);

}

.goal-card i{

    font-size:45px;
    color:#14c2a3;
    margin-bottom:20px;

}

.goal-card h4{

    font-weight:700;
    margin-bottom:15px;

}

.goal-card p{

    color:#666;
    margin:0;
    line-height:1.7;

}

@media(max-width:768px){

.goal-text{

font-size:1rem;

}

.goal-quote{

padding:25px;

}

.goal-card{

margin-bottom:20px;

}

}
html,
body{
    width:100%;
    overflow-x:hidden;
}

.container-fluid{
    overflow:hidden;
}

.row{
    margin-left:0;
    margin-right:0;
}