*,
*::after,
*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color Variable */
:root{
    --color-main:#25aae2;
    --color-secondary:#243491;
    --color-white:#ffffff;
    --color-black:#000000;

}

::selection {
    color: var(--color-main);
    background: var(--color-secondary);
}
html{
    scroll-behavior: smooth;
}


body{
    font-size: 16px;
    color: var(--color-black);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a,
svg {
    text-decoration: none;
    display: inline-block;
}
ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Outfit", sans-serif;
    margin-bottom: 0;
}

h2{
    font-size: 40px;
    font-weight: 700;
}
/* ===================   Component Start ================= */
.siteBtn{
    padding: 10px 30px;
    font-weight: 700;
    font-size: 20px;
}



.colorBgBtn {
    color: var(--color-white);
    background-color: var(--color-secondary);
    transition: background 0.5s ease;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.colorBgBtn::after {
  content: '';
    position: absolute;
    left: -100%;
    top: 0;
    background-color: var(--color-main);
    height: 100%;
    width: 100%;
    z-index: -1;
}

.colorBgBtn:hover::after{
    left: 0;
    transition: all 0.3s ease-in-out;
}



/* Heading */

.subheading {
    color: var(--color-secondary);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.mainheading {
    font-weight: 600;
    font-size: 48px;
}


/* ===================Component End   ===================== */



/* =====================    HEADER SECTION OPEN  ========================= */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    transition: all .5s ease-in-out;
}
 .navbar .navbar-brand  img {
     max-width: 170px;
     transition: all 0.5s linear;
 }

 .navbar-toggler-icon2 {
     max-width: 40px;
 }
.navbar .navbar-toggler {
    border: 0;
}

.navbar.scrollNav{
    margin-top: 0;
    background-color: var(--color-white);
    box-shadow: -3px 6px 25px 1px rgba(0,0,0,0.47);
    -webkit-box-shadow: -3px 6px 25px 1px rgba(0,0,0,0.47);
    -moz-box-shadow: -3px 6px 25px 1px rgba(0,0,0,0.47);
}

.navbar.scrollNav .navbar-brand  img {
    max-width: 140px;
}


.navbar .navbar-toggler:focus {
    box-shadow: unset;
}

.navbar .nav-item .nav-link {
    color:var(--color-white);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 2.5;
    padding-left: 30px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    transition: all 0.5s ease-in-out;
}

.navbar .nav-item .nav-link:hover{
    color: var(--color-main);
}


.navbar.scrollNav  .nav-item .nav-link {
    color: var(--color-secondary);
}



 /* =====================    HEADER SECTION CLOSE  ========================= */

/* =====================    TOP SECTION CLOSE  ========================= */

/*   =====================    HERO SECTION OPEN  =========================  */
.heroWrap {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height:100vh;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
}

.heroWrap .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);

}


.swiperSlideCaption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}


.heroWrap .swiper-slide img {
    width: 100%;
    height:100vh;
    object-fit: cover;
}



.heroWrap .hero__caption {
    margin-top: 120px;
}

.heroWrap .hero__caption p {
    color: var(--color-white);
    font-size: 23px;
}
.heroWrap .hero__caption h1{
    color: var(--color-white);
    font-size: 74px;
    font-weight:700;
}
.heroWrap .hero__caption h1 > span {
    color: var(--color-main);

}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-main);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 5px;
    stroke: var(--color-white);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}
/*   =====================    HERO SECTION CLOSE  =========================  */



/*   =====================    WELCOME SECTION OPEN  =========================  */


.welcome {
    margin-top: 70px;
}


.welcome .welcome__right p {
    padding-block: 22px;
    font-size: 20px;
}

.welcome__left {
    position: relative;
}

.welcome__left .welcome__backImage img {
    width: 100%;
    min-height: 450px;
    max-height: 450px;
    object-fit: cover;
}
.welcome__left .welcome__frontImage img {
    position: absolute;
    right: -50px;
    bottom: -80px;
    width: 100%;
    max-width: 300px;
    min-height: 180px;
    max-height: 180px;
    object-fit: cover;
}

/*   =====================    WELCOME SECTION CLOSE  =========================  */

/*   =====================    SERVICES SECTION OPEN  ========================= */
.servicesWrap {
    margin-top: 150px;
}
.servicesWrap .headings {
    text-align: center;
}


.servicesWrap__card {
    position: relative;
    width: 100%;
    min-height: 350px;
    max-height: 350px;
}
.servicesWrap__card .cardBox__image {
    position: relative;
    width: 100%;
    min-height: 350px;
    max-height: 350px;
    overflow: hidden;
}
.servicesWrap__card .cardBox__image::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
}

.servicesWrap__card .cardBox__image:hover::after {
    opacity: 1;
    left: 130%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;

}
.servicesWrap__card .card-image{
    width: 100%;
    min-height: 350px;
    max-height: 350px;
    object-fit: cover;
    transition: all 2s linear;
}

.servicesWrap__card .cardBox__image:hover .card-image{
   transform: scale(1.2);

}

.card__footerInfo {
    position: absolute;
    bottom: -30px;
    right: 0;
    padding-inline: 20px;
    background-color: var(--color-secondary);
    width: calc(100% - 50px);
    padding-block: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    -webkit-box-shadow: -1px 0px 13px 3px rgba(0,0,0,0.34);
    -moz-box-shadow: -1px 0px 13px 3px rgba(0,0,0,0.34);
    box-shadow: -1px 0px 13px 3px rgba(0,0,0,0.34);

}

.card__footerInfo__left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card__footerInfo a, .card__footerInfo h3{
    color: var(--color-white);
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s linear;
}

.card__footerInfo:hover  h3 {
    color: var(--color-main);
}

.card__footerInfo .card-icon {
  max-width: 45px;
    transition: all 0.3s linear;
}

.card__footerInfo:hover .card-icon  {
    transform: rotate(360deg);
}

/*   =====================    SERVICES SECTION CLOSE  ========================= */



/* =====================    KEY BENEFIT SECTION OPEN  ========================= */

.benefit {
    position: relative;
    margin-top: 120px;
    background: url("../images/benefit-bg.jpg") center fixed;
    background-size: cover;
    padding-block: 120px;
}

.benefit .headings {
    text-align: center;
}

.benefit__card {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.benefit__card .benefit__card__info {
    flex: 1 0 55%;
}

.benefit__card .benefit__card__icon  {
    background-color: var(--color-white);
    height: 100px;
    width: 100px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.benefit__card .benefit__card__icon img {
    max-width: 60px;
}

.benefit__card__info h4{
    color: var(--color-black);
    font-size: 20px;
}


/* =====================    KEY BENEFIT SECTION CLOSE  ========================= */







/*  ======================= NEWS SECTION OPEN   =======================  */
.newsWrapper {
    margin-top: 80px;
    position: relative;
}

.newsWrapper .newsWrapper__news {
    padding-top: 50px;
}

.newsWrapper .newsWrapper__box {
    background-color: var(--color-white);
    -webkit-box-shadow: -1px 0px 13px 3px rgba(0,0,0,0.20);
    -moz-box-shadow: -1px 0px 13px 3px rgba(0,0,0,0.20);
    box-shadow: -1px 0px 13px 3px rgba(0,0,0,0.20);
    transition: all 0.5s ease-in-out;
}

.newsWrapper  .newsWrapper__box .newsWrapper__des {
    padding: 20px;
}


.newsWrapper  .newsWrapper__box .newsWrapper__des h3{
    font-size: 25px;
    margin-bottom: 20px;
}

.newsWrapper .newsWrapper__box:hover {
    margin-top: -15px;
    box-shadow: unset;
}

.newsWrapper .newsWrapper__box .news__thumb {
    width: 100%;
    min-height: 300px;
    max-height: 300px;
    object-fit: cover;
}




/*  ======================= NEWS SECTION CLOSE   =======================  */





/* ==================== FOOTER SECTION OPEN ================================ */

.footer {
    position: relative;
    background-color: var(--color-black);
    padding-block: 100px;
    margin-top: 70px;
    isolation: isolate;
    overflow: hidden;
}

.footer::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: url(../images/footer-bg.png) no-repeat;
    width:60%;
    height: 350px;
    opacity: 0.3;
    z-index: -1;
}

.footer__logo img {
    max-width: 200px;
}

.footer__menu ul li{
    line-height: 2.5;
}
.footer__menu ul li a{
    color: var(--color-white);
    font-weight: 600;
    transition: all 0.3s linear;
}

.footer__menu ul li a:hover{
    transform: translateX(7px);
    color: var(--color-main);

}

.footer__contact .address, .footer__contact .contactSec a {
    color: var(--color-white);
    margin-bottom: 0;
    line-height: 2;
    transition: all 0.3s linear;
}
.footer__contact .contactSec a:hover{
    color: var(--color-main);
}
.footer__contact .footer__social {
    margin-top: 20px;
    display: flex;
    gap: 30px;

}
.footer__contact h3{
    color: var(--color-main);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer__contact .footer__social li a {
    height: 40px;
    width: 40px;
    background-color: var(--color-main);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--color-white);
    transition: all 0.3s linear;
}

.footer__contact .footer__social li:hover a{
    transform: rotate(360deg);
    border-radius: 0 25px 0 25px;
}

.footerbar p{
    margin-bottom: 0;
    padding-block: 8px;
    color: var(--color-lightBlack);
    font-weight: var(--fw-extraLight);
}
.footerbar p a{
    color: var(--color-lightBlack);
    font-weight: var(--fw-regular);
    transition: all 0.3s linear;
}
.footerbar p a:hover{
    text-decoration: underline;
}
/* ==================== FOOTER SECTION CLOSE ================================ */





