/*******************************/
/********* General CSS *********/
/*******************************/

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
}

section {
    padding: 80px 0;   /* 🔥 key outer-template rule */
}


h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #030f27;
}

a {
    color: #666666;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #fdbe33;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    margin: 0 ;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #fdbe33;
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #fdbe33;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    transition: .3s;
}




/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    background: #00b3b3;
}

.navbar {
    padding: 12px 20px;
}

.navbar-brand {
    color: #ffffff;
}

.navbar-brand img {
    margin-right: 8px;
}

.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.45);
    transition: none;
}



.nav-bar.nav-sticky {
    position: fixed;
    background: #000000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}



.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fdbe33;
}

.navbar-dark .navbar-nav .nav-link {
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}


.nav-bar .btn {
    background: #fdbe33;
    color: #030f27;
    padding: 8px 18px;
    border-radius: 4px;
}




/*******************************/
/******** Carousel CSS *********/
/*******************************/
/* MAIN CAROUSEL WRAPPER */
.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

/* SLIDE CONTAINER */
.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

/* IMAGE */
.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

/* 🔥 PREMIUM GRADIENT OVERLAY */
.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0.25) 65%,
        rgba(0, 0, 0, 0.10) 100%
    );
}

/* CAPTION CONTAINER */
.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding-top: 90px;
    height: 100vh;
    min-height: 400px;
}

/* SMALL TOP LINE */
.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* MAIN HEADLINE */
.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* SUB HEADLINE */
.carousel .carousel-caption h2 {
    color: #f2f2f2;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 1.3;
}

/* 🔥 PREMIUM CTA BUTTON */
.carousel .carousel-caption .btn {
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #000;
    background: #f4b400;
    border: none;
    border-radius: 4px;

    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.carousel .carousel-caption .btn:hover {
    background: #d89f00;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* TABLET */
@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 42px;
    }

    .carousel .carousel-caption h2 {
        font-size: 22px;
    }

    .carousel .carousel-caption p {
        font-size: 14px;
    }

    .carousel .carousel-caption .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}


/* TRUST BADGES CONTAINER */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* EACH BADGE */
.trust-badges span {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(2px);

    transition: all 0.3s ease;
}

/* HOVER EFFECT (OPTIONAL PREMIUM) */
.trust-badges span:hover {
    background: #f4b400;
    color: #000;
    border-color: #f4b400;
}


/* MOBILE */
@media (max-width: 767.98px) {
    .trust-badges span {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 32px;
        font-weight: 700;
    }

    .carousel .carousel-caption h2 {
        font-size: 20px;
    }

    .carousel .carousel-caption p {
        font-size: 13px;
    }


/*******************************/
/******* TRUST BADGES CONTAINER  CSS *******/
/*******************************/

/* TRUST BADGES CONTAINER */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* EACH BADGE */
.trust-badges span {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(2px);

    transition: all 0.3s ease;
}

/* HOVER EFFECT (OPTIONAL PREMIUM) */
.trust-badges span:hover {
    background: #f4b400;
    color: #000;
    border-color: #f4b400;
}

@media (max-width: 767.98px) {
    .trust-badges span {
        font-size: 12px;
        padding: 6px 14px;
    }
}




/*******************************/
/********* Feature CSS *********/
/*******************************/

.feature {
    position: relative;
    margin-bottom: 45px;
}

.feature .col-md-12 {
    background: #00b3b3;
}
    
.feature .col-md-12:nth-child(2n) {
    color: #030f27;
    background: #fdbe33;
}

.feature .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-icon i {
    font-size: 44px;        /* 🔥 main fix */
    color: #00b3b3;         /* brand color */
}

@media (min-width: 992px) {
    .feature-icon i {
        font-size: 48px;
    }
}

.feature .feature-icon {
    pwidth: 64px;
    height: 64px;
    background: rgba(0, 179, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted #ffffff;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -18px;
    left: -9px;
    background: #00b3b3;
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: #fdbe33;
}

.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    color: #fdbe33;
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}

.feature .feature-icon [class^="fa-solid"]::before {
    position: relative;
    margin: 0;
    color: #fdbe33;
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: #fdbe33;
}
.feature .feature-icon [class^="fa fa-bookmark-o"]::before {
    position: relative;
    margin: 0;
    color: #fdbe33;
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}


.feature .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    color: #fdbe33;
    font-size: 25px;
    font-weight: 600;
}

.feature .feature-text p {
    margin: 0;
    color: #fdbe33;
    font-size: 18px;
    font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #00b3b3;
}
.feature .col-md-12:nth-child(2n) [class^="fa-solid"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #00b3b3;
}



