:root {
    --bg-color: #effaff;
    --bg-color2: rgb(216, 216, 216);
    --theme-color: rgb(244, 36, 115);
    --primary-color: rgb(7, 132, 166);
    --white-color: #fff;
    --black-color: #000;
}

body {
    font-family: "Poppins", serif;
    font-size: 16px;
    line-height: 22px;
}

a {
    text-decoration: none;
    color: inherit;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.bg-primary {
    background-color: #132d8e !important;
}

.text-primary {
    color: #132d8e !important;
}

.title span {
    position: relative;
    color: var(--theme-color);
    padding-bottom: 0.5rem;
    background: url(../images/divider.svg) no-repeat;
    background-position: center bottom;
}

.bg-gray {
    background-color: #f1f1f1;
}

.btnMan {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* border: 2px solid var(--primary-color); */
    transition: color 0.5s;
    z-index: 1;
    border-radius: 3rem;
    font-weight: 500;
    color: var(--white-color);
    background: var(--primary-color);
}

.btnMan:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #000;
    height: 150px;
    width: 250px;
    border-radius: 50%;
}

.btnMan:hover {
    color: #fff;
}

.btnMan:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btnMan:hover:before {
    top: -30px;
    left: -30px;
}

.btnMan:active:before {
    background: var(--theme-color);
    transition: background 0s;
}

.btnMan2 {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* border: 2px solid var(--primary-color); */
    transition: color 0.5s;
    z-index: 1;
    border-radius: 3rem;
    font-weight: 500;
    color: var(--white-color);
    background: var(--theme-color);
}

.btnMan2:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #000;
    height: 150px;
    width: 250px;
    border-radius: 50%;
}

.btnMan2:hover {
    color: #fff;
}

.btnMan2:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btnMan2:hover:before {
    top: -30px;
    left: -30px;
}

.btnMan2:active:before {
    background: var(--primary-color);
    transition: background 0s;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.slick-slide {
    margin: 0 1rem;
}

.slick-prev,
.slick-next {
    background-color: var(--theme-color);
    border-radius: 100%;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: var(--black-color);
}
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.bg-warning-soft {
    background-color: rgba(248, 184, 31, 0.1);
}

.bg-danger-soft {
    background-color: rgba(238, 74, 98, 0.1);
}

.bg-success-soft {
    background-color: rgba(26, 182, 157, 0.1);
}

.bg-primary-soft {
    background-color: rgba(26, 65, 182, 0.1);
}

.bg-info-soft {
    background-color: rgba(4, 121, 255, 0.1);
}
/* ================================ 
  Navbar Section
  ===================================*/
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar .navbar-brand>img {
    height: 80px;
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu-end a i {
        background-color: var(--bs-gray-500);
        font-size: 0.6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: 0.5rem;
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        /* transform: translateY(20px); */
        transition: all .3s ease-in;
        visibility: hidden;
        /* min-height: 50vh; */
        box-shadow: 0 5px 20px rgba(197, 208, 216, 0.15);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 8px;
        border: 0;
        min-width: 16rem;
        border-radius: 0;
        box-shadow: 0 5px 20px rgba(15, 39, 125, 0.4);
    }

    .dropdown-toggle::after {
        position: absolute;
        top: 46%;
    }

    .navbar .nav-link {
        padding: 10px 20px !important;
        text-decoration: none;
        color: var(--balck-color);
        font-weight: 500;
        letter-spacing: 1px;
        /*text-transform: uppercase;*/
    }

    .navbar .nav-item:hover .nav-link {
        color: var(--primary-color);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -52px;
        box-shadow: 0 10px 10px rgba(15, 39, 125, 0.14);
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: #101010;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1.5rem;
        text-decoration: none;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--theme-color);
        background: var(--bg-light);
    }
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

.scroll-on .nav-link {
    color: #121212;
}

.navbar .navbar-toggler i {
    color: var(--black-color);
}

.scroll-on .navbar-toggler i {
    color: #121212;
}


/* Banner Panel */
/* ======================================== */
.hero-section {
    position: relative;
    min-height: 700px;
    /* height: 100%; */
    overflow: hidden;
}

.hero-section:before {
    width: 75%;
    height: 100%;
    background: linear-gradient(270deg, rgba(33, 36, 49, 0) 0%, rgb(43 71 79 / 85%) 100%);
    opacity: 1;
    left: 0;
    top: 0;
    content: '';
    position: absolute;
    z-index: 1;
}

.heroImgSection {
    margin: 0;
    position: absolute;
    width: 100vw;
    left: 50%;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    overflow: hidden;
    height: auto;
}

.heroImgSection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.heroContent {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 200px;
}

.heroContent h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
}

.heroContent p {
    line-height: 1.4;
    font-weight: 300;
    color: #fff;
    margin-bottom: 2rem;
}



/* About Panel */
/* ================================== */
.aboutPanel {
    padding: 3rem 0;
    position: relative;
}
.aboutPanel h2{
    font-size: 2rem;
    font-weight: 600;
}
.exprienceBox{
    background-color: var(--white-color);
    padding: 1.5rem;
    text-align: center;
    border-radius: 0 2rem 0 1.5rem;
    bottom: 0;
    left: 0;
    color: var(--white-color);
}
.exprienceBox::before{
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/curve_vec.svg) no-repeat;
    background-size: contain;
    left: 12px;
    top: -30px;
}
.exprienceBox::after{
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/curve_vec.svg) no-repeat;
    background-size: contain;
    right: -30px;
    bottom: -1px;
}


/* ================================ 
Services Section 
=================================== */
.services {
    background-color: #f1f4ffe8;
    padding: 3rem 0;
    position: relative;
    text-align: center;
}

.services .inner-contain {
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.05);
}
.services .img-fluid {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.services .inner-contain h4 {
    font-size: 20px;
}

.services .inner-contain .read-more {
    font-size: 14px;
}

.serviceLink span{
    display: inline-block;
    border: 1px solid var(--white-color);
    padding: 0.4rem 0.85rem 0.3rem;
    border-radius: var(--bs-border-radius-lg);
    border: 1px solid #ddd;
    background: var(--white-color);
    margin-right: 0.15rem;
    margin-bottom: 0.35rem;
    /* box-shadow: 3px 3px 0 #655e70; */
    font-size: 14px;
    transition: 0.2s;
    color: var(--font-color);
}

.offer ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer ul li {
    /* width: calc(50% - 30px); */
    padding-left: 30px;
    margin: 0.35rem 0;
    position: relative;
    color: var(--white-color);
}

.offer ul li:before {
    position: absolute;
    content: '\EA6B';
    font-family: "remixicon";
    font-size: 1rem;
    color: var(--white-color);
    left: 0;
    top: 0;
}

.offer ul li b{
    color: #fbff00;
}

.ctaOption {
    background: #e8f0f5 url(../images/ct-bg.webp) no-repeat center;
    background-size: cover;
    padding: 270px 0 0;
    position: relative;
    margin-bottom: 50px;
    min-height: 400px;
}

.ctaOption:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 50px;
    background-color: var(--white-color);
    left: 0;
    bottom: 0;
}

.ctaOptionBox {
    background: var(--theme-color);
    padding: 2rem;
    position: relative;
    min-height: 100px;
    border-radius: 1.5rem;
    color: var(--white-color);
}