/* google fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Varialbes */
:root {
    --dark-color: #000000;
    --white-color: #ffffff;
    --color-primary: #06175B;
    --color-secondary: #EC3D08;
    /* --color-tertiary: #F63837; */
    --body-color: #EDF3F7;
    --grey-bg: #ECF2FB;
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Roboto", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-optical-sizing: auto;
    background-color: var(--white-color) !important;
}

a {
    color: inherit !important;
    text-decoration: none !important;
    font-family: inherit !important;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 46px;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: 46px;
}

h5 {
    font-size: 26px;
}

h6 {
    font-size: 16px;
}

.sub-heading {
    font-family: var(--primary-font);
    color: var(--color-secondary) !important;
    /* color: #CBA266 !important; */
    font-size: 16px !important;
    /* line-height: 0px; */
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    /* letter-spacing: 0.6px; */
    opacity: 1;
}

.sub-heading1 {
    font-family: var(--primary-font);
    color: var(--color-primary) !important;
    font-size: 18px !important;
    /* line-height: 21px; */
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    /* letter-spacing: 0.6px; */
    opacity: 1;
}

.heading-font {
    font-family: var(--primary-font);
    color: var(--color-primary) !important;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    /* letter-spacing: -1px; */
    /* line-height: 1.1; */
}

.secondary-heading {
    font-family: var(--secondary-font);
    color: var(--heading-color) !important;
    font-size: 20px;
    font-weight: 700;
}

.light-color-para {
    font-family: var(--secondary-font);
    color: var(--dark-color) !important;
    font-size: 17px;
}

.regular-text-white {
    font-family: var(--secondary-font);
    color: var(--white-color) !important;
    font-size: 16px;
}

.grey-bg {
    background-color: var(--grey-bg);
}

.custom-btn {
    display: inline-block;
    background-color: var(--color-secondary);
    /* Custom orange */
    color: var(--white-color) !important;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    font-family: var(--secondary-font) !important;
    /* letter-spacing: 1px; */
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: var(--dark-color);
    /* Slightly darker orange on hover */
    /* color: #fff !important; */
    text-decoration: none;
}

.custom-btn:hover a {
    color: var(--white-color) !important;
}

.custom-btn1 {
    display: inline-block;
    background-color: var(--white-color);
    /* Custom orange */
    color: var(--color-secondary) !important;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    font-family: var(--secondary-font) !important;
    /* letter-spacing: 1px; */
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-btn1:hover {
    background-color: var(--dark-color);
    /* Slightly darker orange on hover */
    /* color: #fff !important; */
    text-decoration: none;
}

.custom-btn1:hover a {
    color: var(--white-color) !important;
}

/* default code ends here */

/* topbar section */

.top-bar-orange {
    background-color: var(--color-secondary);
}

.top-icon {
    color: var(--color-secondary);
    font-size: 20px;
}

/* navbar */

.bg-light {
    background: var(--white-color);
}

.navbar-brand img {
    width: 220px;
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 17px !important;
    font-family: var(--primary-font) !important;
    /* font-weight: 600 !important; */
    text-decoration: none;
    /* letter-spacing: 1px !important; */
    color: var(--color-primary) !important;
}

.nav-item .active {
    font-weight: 600 !important;
    color: var(--color-secondary) !important;
    /* text-decoration: underline !important; */
}

.header-wrapper {
    position: relative;
    width: 100%;
    z-index: 1050;
    background: #fff;
    transition: all 0.3s ease;
}

/* FIXED HEADER */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.35s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

/* TOPBAR */
.hide-topbar {
    display: none !important;
}

/* LOGO */
.logo-img {
    width: 220px;
    transition: all 0.3s ease;
}

.header-fixed .logo-img {
    width: 200px;
}

/* PREVENT CONTENT JUMP */
body.has-fixed-header {
    padding-top: var(--header-height);
}

/* MOBILE MENU OVERLAY FIX */
.navbar-collapse {
    background: #fff;
}

/* ANIMATION */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    }
}


/* banner */

.carousel-caption {
    bottom: 20% !important;
}

.carousel-caption {
    position: absolute !important;
    right: 50% !important;
    bottom: 7.5rem !important;
    left: 10% !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    /* text-align: center; */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: orange;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 10px !important;
    height: 10px !important;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 61% !important;
}

.banner-text h2 {
    font-family: var(--primary-font);
    font-size: 40px !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
}

.banner-text p {
    font-size: 18px !important;
    /* font-weight: 500 !important; */
}

/* about us */

.abt-img {
    height: auto;
    width: 85% !important;
}

@keyframes gentleBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.bounce-img {
    animation: gentleBounce 3s ease-in-out infinite !important;
}

.abt-year {
    position: relative;
    top: 72% !important;
    left: 73% !important;
}

/* service section */

.service-section {
    background-color: var(--body-color);
    background-image: url('../img/home/service-bg.png');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* height: 32vh; */
    /* Adjust the height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 50px !important; */
}

.service-icon {
    height: auto;
    width: 45px !important;
}

.service-card {
    border-bottom: 3px solid red;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-col-bg .overlay {
    background-color: rgb(0 0 0 / 76%);
    /* Semi-transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

/* quality-section */

.quality-section {
    background-color: var(--color-secondary);
}

/* testimonial section */

.testimonial-section {
    /* background-color: var(--body-color); */
    background-image: url('../img/home/testimonial-bg.webp');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* height: 32vh; */
    /* Adjust the height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-section .overlay {
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* Semi-transparent dark overlay */
    background: #08194A;
    background: linear-gradient(270deg, rgba(8, 25, 74, 1) 55%, rgba(7, 47, 95, 0.91) 70%, rgba(0, 212, 255, 0.31) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 130px 20px;
}

.testimonial-carousel .owl-nav {
    display: none !important;
}

/* client section */

.client-item {
    background-color: var(--body-color);
}

.client-item img {
    width: 180px !important;
    height: auto;
}

.client-carousel .owl-nav {
    display: none !important;
}


/* cta section */

.cta-section .container {
    background-color: var(--color-secondary);
}

/* footer-section */
.footer-section {
    background-color: #081336;
}

.foot-logo {
    width: 180px;
    height: auto;
}

.foot-contact i {
    color: var(--color-secondary);
}

.foot-contact a:hover {
    color: var(--color-secondary) !important;
}

.footer-list a:hover {
    display: inline-block;
    transform: translateX(5px) !important;
    transition: 0.2s ease-in;
    color: var(--color-secondary) !important;

}

.footer-social i {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--white-color);
}

.footer-social i:hover {
    transition: 0.2s ease-in;
    background-color: var(--white-color);
    color: var(--color-secondary) !important;
}

/* animation code starts here */

/* Default hidden state */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.5s ease-out;
}

/* When active, show and animate */
.animate-on-scroll.active {
    opacity: 1 !important;
}

/* Slide Right Animation */
.slide-right.active {
    animation: slideRight 0.5s ease-out forwards;
}

@keyframes slideRight {
    from {
        transform: translateX(-100px);
    }

    to {
        transform: translateX(0);
    }
}

/* Slide Left Animation */
.slide-left.active {
    animation: slideLeft 0.5s ease-out forwards;
}

@keyframes slideLeft {
    from {
        transform: translateX(100px);
    }

    to {
        transform: translateX(0);
    }
}

/* Slide up Animation */
.slide-up.active {
    animation: slideup 0.5s ease-out forwards;
}

@keyframes slideup {
    from {
        transform: translateY(100px);
    }

    to {
        transform: translateX(0);
    }
}

/* Slide up Animation */
.slide-down.active {
    animation: slidedown 1s ease-out forwards;
}

@keyframes slidedown {
    from {
        transform: translateY(-100px);
    }

    to {
        transform: translateX(0);
    }
}

/* about page */

.about-banner {
    background-image: url('../img/home/about-banner.webp');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 35vh;
    /* Adjust the height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay h1 {
    /* font-family: var(--primary-font); */
    /* padding-top: 130px !important; */
}

.about-banner .overlay {
    background-color: rgba(0, 0, 0, 60%);
    /* Semi-transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.outline-text {
    color: transparent;
    /* Makes the inside of the letters clear */
    -webkit-text-stroke: 0.5px #ffffff;
    /* Thickness and color of the border */
    font-weight: 800;
    /* Works best with thicker/bolder fonts */
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Optional: adds a slight shadow to help it pop against bright parts of images */
    /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); */
}

/* On hover effect (Optional but looks great) */
.outline-text:hover {
    /* color: #ffffff; */
    /* transition: 0.4s ease-in-out; */
}

/* service page */

/* about page */

.service-banner {
    background-image: url('../img/home/service-banner.webp');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 35vh;
    /* Adjust the height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay h1 {
    /* font-family: var(--primary-font); */
    /* padding-top: 130px !important; */
}

.service-banner .overlay {
    background-color: rgba(0, 0, 0, 60%);
    /* Semi-transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.service-icon1 {
    color: var(--color-secondary);
    font-size: 30px;
}

/* contact banner */

.contact-banner {
    background-image: url('../img/home/contact-banner.webp');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 35vh;
    /* Adjust the height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner .overlay {
    background-color: rgba(0, 0, 0, 62%);
    /* Semi-transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.contact-box {
    /* background: #f3f3f3; */
    /* padding: 40px 20px; */
    border-bottom: 4px solid var(--color-secondary) !important;
}



/* scroll-up button */

#scrollUpBtn {
    position: fixed;
    bottom: 35px;
    right: 15px;
    height: 35px;
    width: 35px;
    padding: 10px;
    border-radius: 3px;
    border: none;
    z-index: 999;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-self: center;

}

/* scrollup-btn */

#scrollUpBtn i {
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-self: center;
}

/* scrollup-btn ends here */

/* whatsapp icon */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.whatsapp-float {
    animation: float 2s ease-in-out infinite;
}

/* Media Quiries */

@media only screen and (max-width: 768px) {

    .sub-heading {
        font-size: 18px;
        /* line-height: 15px; */
        margin-bottom: 2px;
    }

    .container {
        padding: 0px 20px !important;
    }

    .heading-font {
        font-size: 20px;
        text-align: center;
        font-weight: 600;
    }

    .navbar-brand img {
        height: auto;
        width: 180px;
    }

    .overlay h1 {
        /* padding-top: 90px !important; */
    }

    .carousel-item img {
        height: 275px !important;
        width: max-content !important;
        /* object-fit: cover !important; */
    }

    .carousel-caption {
        position: absolute !important;
        right: 8% !important;
        bottom: 50px !important;
        left: 12% !important;
        padding-top: 0.25rem !important;
    }

    .banner-text h2 {
        /* font-family: var(--primary-font); */
        font-size: 18px !important;
        font-weight: 400 !important;
        letter-spacing: 1px;
    }

    .image-overlay img {
        width: auto;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .sub-heading {
        text-align: center;
        font-size: 16px !important;
    }

    .heading-box h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .align-btn {
        text-align: center;
    }

    .abt-year {
        position: relative;
        top: 65% !important;
        left: 50% !important;
    }

    .testimonial-section .overlay {
        background: linear-gradient(360deg, rgba(8, 25, 74, 1) 55%, rgba(7, 47, 95, 0.91) 70%, rgba(0, 212, 255, 0.31) 100%);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 40px 10px;
    }

    .abt-img {
        height: auto;
        width: 100% !important;
    }

    .border-secondary {
        --bs-border-opacity: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .carousel-caption {
        position: absolute !important;
        right: 21% !important;
        bottom: 35px !important;
        left: 10% !important;
        padding-top: 0.25rem !important;
    }

    .navbar-brand img {
        height: auto;
        width: 340px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .carousel-caption {
        position: absolute !important;
        right: 25% !important;
        bottom: 1.5rem !important;
        left: 10% !important;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .carousel-caption {
        position: absolute !important;
        right: 35% !important;
        bottom: 7.5rem !important;
        left: 10% !important;
    }
}

@media (min-width: 1441px) and (max-width: 1996px) {
    .carousel-caption {
        position: absolute !important;
        right: 50% !important;
        bottom: 7.5rem !important;
        left: 10% !important;
    }
}