/*----------------------------------------  Import Goole Fonts   ---------------------- ------------*/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/*---------------------------------------------------- Color------------------------- ------------*/
:root {
    --color_white: #fff;
    --color_background: #efefef;
    --color_grey: #787878;
    --color_black: #0f0d1d;
    --primary_color: #3c72fc;
    --secondry_color: #a9baff;
    --color_orange: #fea232;
}

/*---------------------------------------------------- Text Selection------------------------- ------------*/
::-moz-selection {
    /* Code for Firefox */
    background-color: var(--color_black);
    color: var(--color_white);
}

::selection {
    background-color: var(--color_black);
    color: var(--color_white);
}

/*---------------------------------------------------- Universal selector ------------------------- ------------*/
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color_white);
    color: var(--color_grey);
}

* {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    /* font-family: "Inter", sans-serif; */
    scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--color_background);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--secondry_color);
}

a {
    text-decoration: none !important;
    font-family: "Roboto", sans-serif;
}

button {
    cursor: pointer;
    font-family: "Roboto", sans-serif;
}

.conSection {
    display: flex;
    justify-content: center;
}

.containerFull {
    width: 88vw;
}

.container {
    width: 82vw;
}

.btnCommon {
    background-color: var(--primary_color);
    padding: 20px 24px;
    color: var(--color_white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 8px;
    border: none;
    transition: all 0.4s ease-in-out;
}

.btnCommon i {
    font-size: 11px;
}

.btnCommon:hover {
    background-color: var(--color_black);
}

/*---------------------------------------------------- Top Header ------------------------- ------------*/

.topHearder {
    background-color: var(--color_black);
    color: var(--color_white);
    padding: 16px 0;
}

.topHearder .flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topHearder .flex .left {
    display: flex;
    column-gap: 32px;
    align-items: center;
}

.topHearder .flex .left p {
    display: flex;
    align-items: center;
    column-gap: 12px;
    font-size: 14px;
}

.topHearder a {
    color: var(--color_white);
    transition: all 0.2s ease-in-out;
    font-size: 14px;
}

.topHearder a:hover {
    color: var(--secondry_color);
}

.topHearder .flex .right {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.pilDesign {
    position: relative;
    border: 1px solid var(--primary_color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    width: 54px;
}

.pilDesign span {
    display: inline-block;
    background-color: var(--primary_color);
    border-radius: 20px;
    height: 10px;
    width: 30px;
    margin: 0 !important;
}

.titleTop {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.titleTop h5 {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: var(--primary_color);
    text-transform: uppercase;
}

.titleMain h2 {
    font-size: 48px;
    color: var(--color_black);
    margin-top: 10px;
    font-family: "Inter", sans-serif;
    line-height: 53px;
}

/*---------------------------------------------------- Main Header ------------------------- ------------*/

/* Default header visible */
header {
    position: relative;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: top 0.8s ease-in-out;
    /* Animation for slide-down */
}

/* Sticky header - initially behaves as a regular header */
.sticky {
    position: relative;
}

/* When scrolled 400px down, the sticky header gets fixed and slides down */
.sticky-active {
    position: fixed;
    top: -100px;
    /* Start off-screen */
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
    z-index: 1000;
    transition: top 0.8s ease-in-out;
}

.sticky-active.sticky {
    top: 0;
    /* Slide down to the top */
}

.header {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    column-gap: 2px;
}

.logo img {
    height: 90px;
    margin-left: -10px;
}

.logo h1 {
    font-size: 24px;
    line-height: 25px;
    color: var(--color_black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Inter", sans-serif;
    margin-bottom: 2px;
}

.logo h2 {
    color: #414141;
    letter-spacing: 4px;
    font-size: 14px;
    text-transform: uppercase;
}

.header .right {
    display: flex;
    justify-content: end;
}

.header .right .menuBar {
    display: flex;
    align-items: center;
    display: none;
}

.header .right .menuBar img {
    height: 40px;
}

.header .right .navbar {
    display: flex;
    column-gap: 50px;
    align-items: center;
}

.navbar .menu {
    display: flex;
    align-items: center;
    column-gap: 30px;
    position: relative;
}

.navbar .menu a {
    color: var(--color_black);
    font-weight: 500;
    padding: 42px 0;
    transition: all 0.2s ease-in-out;
}

.navbar .menu a:hover {
    color: var(--primary_color);
}

.navbar .menu span {
    color: var(--color_black);
    font-weight: 500;
    padding: 42px 0;
    cursor: pointer;
}

.navbar .menu .about:hover .aboutSubmenu {
    display: block;
}

.aboutSubmenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
}

.subMenuCon {
    display: flex;
    flex-direction: column;
    width: 200px;
}

.subMenuCon a {
    padding: 16px !important;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    font-size: 14px !important;
}

.subMenuCon a:hover {
    background-color: var(--color_background);
}

.navbar .flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .flex .callIcon {
    border: 1px solid var(--color_black);
    border-radius: 50%;
    padding: 4px;
}

.navbar .flex i {
    font-size: 18px;
    height: 47px;
    width: 47px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color_black);
    color: var(--color_white);
}

.navbar .flex h6 {
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    color: var(--color_black);
    margin-bottom: 6px;
    font-family: "Inter", sans-serif;
}

.navbar .flex h5 {
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    color: var(--color_black);
    font-family: "Inter", sans-serif;
}

/* ------------------------ Sidepanel ----------------------------- */

.sidepanel {
    width: 100%;
    position: fixed;
    z-index: 9999;
    height: 100vh;
    top: 0;
    right: -100%;
    background-color: #0000006a;
    overflow: hidden;
    transition: 0.5s;
    display: flex;
    justify-content: end;
}

.sidepanel .close-sec {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sidepanelinner {
    background-color: transparent !important;
}

.sidepanel .side-menu {
    height: 100%;
    background-color: var(--color_black);
    color: var(--color_white);
    width: 35%;
    padding: 0 4vw;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.side-pettarn {
    position: absolute;
    left: 0;
    bottom: 0;
}

.side-pettarn img {
    width: 100%;
    margin-bottom: -4px;
}

.sidepanel .side-menu .side-menu-con {
    width: 100%;
    color: var(--primary-color);
}

.side-menu-con .side-menu-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    margin: 48px 0 40px;
}

.side-menu-con .side-menu-flex .close-btn-box {
    cursor: pointer;
    font-size: 30px;
}

.side-menu-con .side-menu-flex .close-btn-box img {
    width: 16px;
    object-fit: contain;
}

.sidepanel .logo h1 {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 4px;
    color: var(--color_white);
}

.sidepanel .logo h2 {
    letter-spacing: 4px;
    font-size: 12px;
    color: var(--color_background);
}

.side-menu-con ul {
    margin-bottom: 40px;
}

.side-menu-con ul li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--primary-color);
    transition: all 0.2s ease-in-out;
    color: var(--color_white);
    border-top: 1px solid #cecece;
    font-weight: 700;
}

.side-menu-con ul li:hover {
    color: var(--primary_color);
}

.side-menu-con ul li.first-child {
    border-top: 1px solid var(--primary-color);
}

.side-menu-con ul li p {
    font-size: 20px;
    color: var(--color_white);
}

.side-menu-con ul li img {
    height: 8px;
    object-fit: contain;
}

.side-menu-con ul li i {
    color: #979797;
}

.side-menu-con ul li.main-menu {
    border-bottom: none;
}

.side-menu-con ul li.sub-menu {
    margin-left: 30%;
}

.side-menu-con .back-btn-flex {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 84px;
}

.side-menu-con .back-btn-flex img {
    height: 18px;
    object-fit: contain;
}

.side-menu-con .back-btn-flex span {
    font-size: 22px;
    font-family: "soleil-light";
}

.side-menu-con .sidepanel-foot {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-menu-con .sidepanel-foot button {
    font-size: 20px;
    font-family: "soleil-light";
    border: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    padding-right: 10px;
    transition: all 0.2s ease-in-out;
}

.side-menu-con .sidepanel-foot button:hover {
    border-bottom: 2px solid var(--primary-color);
}

.side-menu-con .social-links {
    display: flex;
    column-gap: 24px;
}

.side-menu-con .social-links img {
    width: 20px;
    object-fit: contain;
}

.sidebarContact a p {
    color: var(--color_white);
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.sidebarContact p {
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.sidebarContact .socialLogo {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 40px;
}

.sidebarContact .socialLogo i {
    color: var(--color_white);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid var(--color_background);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*---------------------------------------------------- Banner Section ------------------------- ------------*/

/* SlideDown Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SlideLeft Animation */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(4%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SlideRight Animation */
@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-4%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Initial State: Hidden Content */
.slideDown,
.slideLeft,
.slideRight {
    opacity: 0;
    /* Hide the content initially */
}

/* Applying the SlideDown Animation */
.slideDown {
    animation: slideDown 0.8s ease-out forwards;
    animation-fill-mode: forwards;
    /* Keeps the final animation state */
}

/* Applying the SlideLeft Animation with a 1.2s Delay */
.slideLeft {
    animation: slideLeft 0.6s ease-out forwards;
    animation-delay: 0.6s;
    /* 1.2 seconds delay */
    animation-fill-mode: forwards;
    /* Keeps the final animation state */
}

.slideRight {
    animation: slideRight 0.6s ease-out forwards;
    animation-delay: 1.5s;
    /* 1.2 seconds delay */
    animation-fill-mode: forwards;
    /* Keeps the final animation state */
}

.bannerSec {
    position: relative;
    overflow: hidden;
}

.bannerShape1 {
    position: absolute;
    left: 0;
    top: 72px;
    z-index: 3;
}

.bannerShape2 {
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 2;
}

.bannerShape3 {
    position: absolute;
    left: 5vw;
    bottom: -5px;
    z-index: 2;
}

.bannerShape4 {
    position: absolute;
    left: 7vw;
    bottom: -5px;
    z-index: 3;
}

.bannerShape5 {
    position: absolute;
    right: 5vw;
    bottom: -5px;
    z-index: 3;
}

.bannerSlider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner {
    min-width: 100%;
    height: 90vh;
    display: inline-block;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bannerSlider .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.bannerSlider .prev,
.bannerSlider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 5;
}

.bannerSlider .prev {
    left: 0px;
}

.bannerSlider .next {
    right: 0px;
}

.bannerImg {
    width: 100%;
    height: 100%;
    background-color: #868686;
    position: absolute;
    left: 0;
    top: 0;
}

.bannerImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bannerSec .bannerConSec {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000d2ebe;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--color_white);
}

.bannerCon {
    width: 50%;
}

.bannerCon h4 {
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 9px;
    text-transform: uppercase;
}

.bannerCon h1 {
    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    padding: 20px 0;
    font-family: "Inter", sans-serif;
}

.bannerCon p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    padding-bottom: 40px;
    padding-right: 29px;
}

.bannerCon .flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.bannerCon .flex .ourVideo {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-weight: 500;
}

.bannerCon .flex .ourVideo i {
    height: 56px;
    width: 56px;
    border: 1px solid var(--color_white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.4s ease-in-out;
}

.bannerCon .flex .ourVideo:hover i {
    background-color: var(--primary_color);
    color: var(--color_white);
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.8);
    /* Black w/ opacity */
}

.modal-content {
    background-color: transparent;
    margin: 5% auto;
    /* 15% from the top and centered */
    width: 70%;
    /* Could be more or less, depending on screen size */
}

.close {
    color: var(--color_white);
    float: right;
    font-size: 48px;
    font-weight: 300;
}

.close:hover,
.close:focus {
    color: var(--secondry_color);
    text-decoration: none;
    cursor: pointer;
}

.modal-content iframe {
    width: 100%;
    height: 500px;
    background-color: transparent;
}

/*---------------------------------------------------- About Section ------------------------- ------------*/

.aboutSec {
    padding: 100px 0 120px;
    position: relative;
}

.aboutShape7 {
    position: absolute;
    right: 0;
    top: 120px;
    z-index: 3;
    animation: topdown 4s infinite;
}

.aboutShape8 {
    position: absolute;
    right: 0;
    top: 220px;
    z-index: 2;
    animation: topdown 4s infinite;
}

.aboutGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 4;
}

.aboutGrid .aboutImgCon {
    width: 80%;
    height: 70vh;
    position: relative;
}

.aboutExperianceBox {
    width: 180px;
    height: 160px;
    background-color: var(--primary_color);
    color: var(--color_white);
    position: absolute;
    left: -30px;
    top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: topdown 4s infinite;
}

@keyframes topdown {
    0% {
        margin-top: 0;
    }

    50% {
        margin-top: -15px;
    }

    100% {
        margin-top: 0;
    }
}

.aboutExperianceBox::after {
    content: "";
    width: 100px;
    height: 100px;
    background-color: var(--primary_color);
    position: absolute;
    left: 21px;
    bottom: -51px;
    z-index: -1;
    rotate: 316deg;
}

.aboutExperianceBox i {
    font-size: 32px;
}

.aboutExperianceBox h5 {
    font-size: 22px;
    font-weight: 500;
    margin: 10px 0 4px;
}

.aboutExperianceBox p {
    font-size: 16px;
}

.aboutGrid .aboutImgCon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutGrid .aboutImgCon::after {
    content: "";
    width: 70%;
    height: 70%;
    border: 5px solid var(--primary_color);
    position: absolute;
    top: 50px;
    right: -50px;
    z-index: -1;
}

.aboutVideoCon {
    width: 50%;
    height: 52%;
    border: 5px solid var(--color_white);
    background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    position: absolute;
    top: 30%;
    right: -100px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutGrid .right {
    padding-right: 10%;
}

.aboutGrid .right p {
    margin: 32px 0;
    font-size: 16px;
    line-height: 23px;
}

/* ---------------------------------------------------- Service Section ------------------------- ------------ - */

.serviceSection {
    background-color: var(--color_black);
    padding: 120px 0 220px;
    position: relative;
}

.serviceSection .shapeLeft {
    position: absolute;
    left: 0;
    top: 40%;
    animation: topdown 4s infinite;
}

.serviceSection .shapeLeft img {
    height: 100px;
    object-fit: contain;
}

.serviceSection .shapeRight {
    position: absolute;
    right: 0;
    bottom: 25%;
    animation: topdownshapeRight 4s infinite;
}

.serviceSection .shapeRight img {
    height: 100px;
    object-fit: contain;
}

@keyframes topdownshapeRight {
    0% {
        margin-bottom: 0;
    }

    50% {
        margin-bottom: 15px;
    }

    100% {
        margin-bottom: 0;
    }
}

.serviceSection .shapeBottom {
    bottom: 0;
    right: 0;
    width: 100%;
    position: absolute;
}

.serviceSection .shapeBottom img {
    width: 100%;
    object-fit: contain;
}

.serviceSection .titleMain h2 {
    color: var(--color_white);
    margin-bottom: 42px;
    line-height: 53px;
}

.serviceSection .container {
    position: relative;
    z-index: 2;
}

.serviceSection .slide-container {
}

.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.5);
    top: 224px !important;
    width: 40px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--secondry_color);
    font-size: 20px !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0 !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0 !important;
}

.serviceBox {
    width: 100%;
    height: 450px;
    background-color: var(--color_white);
}

.serviceBox img {
    width: 100%;
    height: 50%;
    object-fit: cover;
}

.serviceBox .serviceCon {
    padding: 25px 30px 30px;
    position: relative;
}

.serviceBox .serviceCon h3 {
    font-size: 24px;
    line-height: 31px;
    color: var(--color_black);
    font-family: "Inter", sans-serif;
}

.serviceBox .serviceCon p {
    margin: 20px 0;
    font-size: 16px;
    line-height: 23px;
}

.serviceBox .serviceCon a {
    font-size: 14px;
    color: var(--color_black);
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.2s ease-in-out;
}

.serviceBox .serviceCon a:hover {
    color: var(--primary_color);
}

.serviceBox .serviceCon a i {
    font-size: 12px;
}

.serviceIcon {
    position: absolute;
    right: 20px;
    top: -40px;
    border: 1px dashed var(--primary_color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color_white);
    color: var(--primary_color);
    transition: all 0.4s ease-in-out;
}

.serviceIcon i {
    font-size: 24px;
}

.serviceBox:hover .serviceIcon {
    background-color: var(--primary_color);
    color: var(--color_white);
}

/* ---------------------------------------------------- Call Section ------------------------- ------------ - */

.callSection {
    height: 200px;
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

.callGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background-color: var(--color_white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    position: relative;
    overflow: hidden;
}

.callGrid .callImg {
    height: 200px;
}

.callGrid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.callGridCon {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    position: relative;
    z-index: 2;
}

.callGridCon .callShape {
    position: absolute;
    right: 0;
    bottom: -8px;
    opacity: 0.2;
}

.callGridCon h3 {
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 15px;
    color: var(--color_black);
    font-family: "Inter", sans-serif;
}

.callGridCon a {
    font-size: 22px;
    color: var(--color_black);
    font-family: "Inter", sans-serif;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.callGridCon a:hover {
    color: var(--primary_color);
}

.callGridCon::after {
    content: "";
    width: 50%;
    height: 116%;
    background-color: #fff;
    position: absolute;
    top: 19px;
    left: -34px;
    rotate: 197deg;
    z-index: -1;
    border-right: 5px solid var(--primary_color);
}

.callGridIcon {
    width: 54px;
    height: 54px;
    border-radius: 100px;
    background-color: var(--primary_color);

    border: 3px solid var(--primary_color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -25px;
    transition: all 0.5s ease-in-out;
    color: var(--color_white);
}

.callGridIcon i {
    font-size: 24px;
}

.callGrid:hover .callGridIcon {
    background-color: var(--color_white);
    border: 3px solid var(--primary_color);
    color: var(--primary_color);
}

/* ---------------------------------------------------- Project Section ------------------------- ------------ - */

.projectSection {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.projectBgShape {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 500px;
    z-index: -1;
}

.projectBgShape img {
    width: 100%;
    object-fit: contain;
}

.projectSection .titleMain h2 {
    margin-bottom: 42px;
    line-height: 53px;
}

.projectSection .swiper-button-next,
.projectSection .swiper-button-prev {
    background-color: rgba(0, 0, 0, 0.5);
    top: 180px !important;
    width: 40px !important;
}

.projectBox {
    width: 100%;
    height: 30rem;
    position: relative;
    overflow: hidden;
}

.projectBox img {
    width: 100%;
    height: calc(100% - 64px);
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.projectBoxCon {
    position: absolute;
    width: calc(100% - 40px);
    left: 0;
    bottom: 0;
    padding: 20px;
    z-index: 2;
}

.projectBoxCon .projectBoxConFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color_white);
    padding: 20px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
}

.projectBoxCon .projectBoxConFlex .left {
    width: 80%;
}

.projectBoxCon .projectBoxConFlex h4 {
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--color_black);
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.projectBoxCon .projectBoxConFlex h2 {
    font-size: 17px;
    line-height: 27px;
    color: var(--color_black);
    font-weight: 600;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease-in-out;
}

.projectBoxCon .projectBoxConFlex .right i {
    rotate: 320deg;
    font-size: 20px;
    color: var(--primary_color);
    display: none;
    transition: all 0.2s ease-in-out;
}

.projectBox:hover .projectBoxCon .projectBoxConFlex .right i {
    display: block;
}

.projectBox:hover img {
    transform: scale(1.03);
}

.projectBox:hover .projectBoxCon .projectBoxConFlex h2 {
    color: var(--primary_color);
}

.pagination {
    text-align: center;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin-top: 20px;
}

.pagination .page-numbers {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

.pagination button,
.pagination span.page-number {
    width: 53px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #f8f8f8;
    color: var(--color_black);
    font-weight: 600;
    cursor: pointer;
}

.pagination button:disabled {
    display: none;
}

.pagination span.page-number.active {
    background-color: var(--primary_color);
    color: var(--color_white);
    cursor: default;
}

/* -------------------------------------- Why Choose Us Section ----------------------------------------- */

.whyUsSection {
    background-color: var(--color_black);
    height: fit-content;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.whyUsSection .leftShape {
    position: absolute;
    left: 0;
    bottom: 0;
}

.whyUsSection .leftShape img {
    object-fit: contain;
    height: 100%;
}

.whyUsSection .rightBg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.whyUsSection .rightBg img {
    height: 100%;
    object-fit: contain;
    padding-left: 10%;
}

.whyUsGrid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    position: relative;
    z-index: 2;
}

.whyUsGrid .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whyUsSection .titleMain h2 {
    color: var(--color_white);
    margin-bottom: 42px;
    line-height: 53px;
}

.whyUsItem {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #414141;
}

.whyUsItem.last {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.whyUsItem .icon {
    background-color: var(--color_white);
    color: var(--primary_color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-size: 48px;
    transition: all 0.4s ease-in-out;
}

.whyUsItem:hover .icon {
    background-color: var(--primary_color);
    color: var(--color_white);
}

.whyUsItem h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
    color: var(--color_white);
}

.whyUsItem p {
    font-size: 14px;
    line-height: 21px;
    color: var(--color_background);
}

.whyUsGrid .right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.whyUsGrid .right img {
    height: 65vh;
    object-fit: contain;
}

/* -------------------------------------- Our Team Section ----------------------------------------- */

.teamSection {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.teamSection .teamShape {
    position: absolute;
    right: 0;
    top: 50%;
    width: 200px;
}

.teamSection .teamShape img {
    width: 100%;
    object-fit: contain;
    animation: topdown 4s infinite;
}

.centerTitle {
}

.teamSection .centerTitle h2 {
    margin-bottom: 42px;
}

.teamGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.teamMember {
    position: relative;
}

.teamMember .memberImg {
    height: 27rem;
    width: 100%;
}

.teamMember .memberImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teamMember .memberDes {
    width: calc(90% - 60px);
    left: 5%;
    bottom: -50px;
    background-color: var(--color_white);
    position: absolute;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.memberDes .memberDesName {
    width: 80%;
}

.teamMember .memberDes h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
    color: var(--color_black);
    transition: all 0.3s ease-in-out;
}

.teamMember .memberDes .memberIcon {
    width: 40px;
    height: 40px;
    background-color: var(--color_background);
    color: var(--primary_color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.teamMember:hover .memberDes h4 {
    color: var(--primary_color);
}

.teamMember:hover .memberDes .memberIcon {
    background-color: var(--primary_color);
    color: var(--color_white);
}

.founderGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 5;
}

.founderMember {
    display: grid;
    grid-template-columns: 6fr 5fr;
    align-items: end;
}

.founderMember .founderDec {
    height: fit-content;
    min-height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    align-items: center;
    background-color: var(--color_white);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    padding: 48px 30px;
    width: calc(100% - 60px);
    position: relative;
}

.founderMember .memberDes {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: fit-content;
}

.founderMember .quote {
    font-size: 14px;
    padding: 40px 0;
    position: relative;
}

.founderMember .fa-quote-left {
    font-size: 36px;
    position: absolute;
    left: 0px;
    top: 0;
    color: var(--secondry_color);
}

.founderMember .fa-quote-right {
    font-size: 36px;
    position: absolute;
    right: 0px;
    bottom: 20px;
    color: var(--secondry_color);
}

.founderMember .memberImg {
    width: 100%;
    height: 26rem;
}

.founderMember .memberImg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.founderMember .memberDes h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
    color: var(--color_black);
    transition: all 0.3s ease-in-out;
}

.founderMember .memberDes .memberIcon {
    width: 40px;
    height: 40px;
    background-color: var(--color_background);
    color: var(--primary_color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.founderMember:hover .memberDes h4 {
    color: var(--primary_color);
}

.founderMember:hover .memberDes .memberIcon {
    background-color: var(--primary_color);
    color: var(--color_white);
}

/* ------------------------------------------- Footer Slider Section ------------------------- ------------ */

.footerSliderSec {
    padding: 0px 0 100px;
    position: relative;
}

.footerSlider {
    width: 100%;
    /* Full width */
    overflow: hidden;
    /* Hide the overflow */
    position: relative;
}

.sliderFooterContent {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 50px;
    /* Adjust spacing between items */
    animation: scrollLeft 30s linear infinite;
    /* Smooth scrolling */
    width: max-content;
    /* Content width */
}

.footerSlider a img {
    height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.footerSlider a:hover img {
    filter: grayscale(0%);
}

/* Keyframes for continuous scrolling */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause the animation on hover */
.footerSlider:hover .sliderFooterContent {
    animation-play-state: paused;
}

footer {
    background-color: var(--color_black);
    position: relative;
    overflow: hidden;
}

.footerBgShape {
    position: absolute;
    height: 90%;
    left: 30%;
    top: 10%;
}

.footerBgShape img {
    height: 90%;
    object-fit: contain;
}

.footerTop {
    padding: 100px 0;
}

.footerGrid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 3fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.footerGrid .logo h1 {
    color: var(--color_white);
}

.footerGrid .logo h2 {
    color: var(--color_background);
}

.footerGrid p {
    color: var(--color_white);
    font-size: 16px;
    line-height: 23px;
    margin: 40px 0;
}

.socialFlex {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.socialFlex a {
    height: 34px;
    width: 34px;
    border: 1px solid var(--color_white);
    color: var(--color_white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.socialFlex a:hover {
    background-color: var(--primary_color);
    color: var(--color_white);
    border: 1px solid var(--primary_color);
}

.footerMenu h4 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: var(--color_white);
}

.footerMenu li {
    list-style: none;
    color: var(--color_white);
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 23px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    transition: all 0.2s ease-in-out;
}

.footerMenu li i {
    font-size: 12px;
}

.footerMenu li:hover {
    color: var(--secondry_color);
}

.footerMenu p {
    margin: 0;
}

.footerMenu form {
    margin-top: 20px;
}

.footerMenu form input {
    border: none;
    font-size: 14px;
    padding: 20px 24px;
    width: calc(100% - 48px);
    color: var(--primary_color);
    margin-bottom: 10px;
    border-radius: 0;
}

.footerMenu form input:focus {
    outline: none;
}

.footerMenu form .btnCommon {
    width: 100%;
    border: 1px solid var(--primary_color);
    display: flex;
    justify-content: center;
}

.footerBottom {
    border-top: 1px solid #616161;
    padding: 30px 0;
}

.footerBottom .footerBottomGrid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.footerBottom .footerBottomGrid p {
    color: var(--color_white);
}

.footerBottom .footerBottomGrid .footerBottomMenu {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.footerBottom .footerBottomGrid .footerBottomMenu a {
    color: var(--color_white);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.footerBottom .footerBottomGrid .footerBottomMenu a:hover {
    color: var(--secondry_color);
}

/* ---------------------------  scroll to reaveal animations ------------------------------ */

/* SlideRight Animation */
@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(-4%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SlideLeft Animation */
@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(4%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Initial State: Hidden */
.revealRight,
.revealLeft {
    opacity: 0;
    transform: translateX(0);
    /* No movement initially */
    transition: opacity 0.5s, transform 0.5s;
}

/* Reveal with SlideRight Animation */
.revealRight.active {
    animation: revealRight 1s ease-out forwards;
}

/* Reveal with SlideLeft Animation */
.revealLeft.active {
    animation: revealLeft 1s ease-out forwards;
}

/* SlideBottom Animation */
@keyframes revealBottom {
    from {
        opacity: 0;
        transform: translateY(-4%);
        /* Starts below the viewport */
    }

    to {
        opacity: 1;
        transform: translateY(0);
        /* Moves to its original position */
    }
}

/* Initial State: Hidden */
.revealBottom {
    opacity: 0;
    transform: translateY(-4%);
    /* Start from below */
    transition: opacity 0.5s, transform 0.5s;
}

/* Active State - Reveal with SlideBottom Animation */
.revealBottom.active {
    opacity: 1;
    animation: revealBottom 0.6s ease-out forwards;
}

/* -------------------------------------- Breadcrumb Section ----------------------------------------- */

.breadcrumbSec {
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.bradcrumbShape {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.breadcrumbImg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.breadcrumbImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumbSec .conSection {
    width: 100%;
    height: 100%;
    background-color: #000d2ebe;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.breadcrumbSec .conSection h2 {
    font-size: 55px;
    font-weight: 600;
    color: var(--color_white);
    font-family: "Inter", sans-serif;
    line-height: 55px;
    margin-bottom: 10px;
}

.breadcrumbSec .conSection .flex {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color_white);
}

.breadcrumbSec .conSection .flex i {
    font-size: 12px;
}

.breadcrumbSec .conSection .flex a {
    color: var(--color_white);
}

.breadcrumbSec .conSection .flex p {
    color: var(--primary_color);
}

/* -------------------------------------- Contact Section ----------------------------------------- */

.contactSection {
    padding: 100px 0;
}

.contactGrid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.contactItem {
    padding: 50px 40px 40px 40px;
    background: #f8f8f8;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contactItem img {
    height: 50px;
}

.contactItem p {
    color: var(--primary_color);
}

.contactItem h4 {
    font-size: 24px;
    line-height: 29px;
    margin-top: 8px;
    color: var(--color_black);
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.contactItem h6 {
    font-size: 17px;
    line-height: 22px;
    margin-top: 8px;
    color: var(--color_black);
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.contactForm {
    padding: 60px;
    background: #f8f8f8;
}

.contactForm form {
    margin-top: 40px;
}

form label {
    display: block;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--color_black);
}

form input {
    border: none;
    font-size: 14px;
    padding: 20px 24px;
    width: calc(100% - 48px);
    color: var(--primary_color);
    margin-bottom: 10px;
    border: 1px solid #ececec;
    border-radius: 4px;
    margin-bottom: 30px;
}

form input:focus {
    outline: none;
    border: 1px solid var(--primary_color);
}

form textarea {
    border: none;
    font-size: 14px;
    padding: 20px 24px;
    width: calc(100% - 48px);
    color: var(--primary_color);
    margin-bottom: 10px;
    border: 1px solid #ececec;
    border-radius: 4px;
    margin-bottom: 30px;
    min-height: 100px;
}

form textarea:focus {
    outline: none;
    border: 1px solid var(--primary_color);
}

form .grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* -------------------------------------- Loading animation ----------------------------------------- */

/* Style for the loader screen */
.loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color_black);
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
    /* Smooth transition effect */
    opacity: 1;
}

.loadingScreen img {
    width: 120px;
}

/* Hidden state */
.loadingScreen.hidden {
    opacity: 0;
    display: none;
}

/* From Uiverse.io by Satwinder04 */
.loader3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bars {
    width: 8px;
    height: 40px;
    margin: 0 2px;
    border-radius: 40;
    animation: loader3 3s ease-in-out infinite;
}

.bar1 {
    background-color: var(--primary_color);
    animation-delay: -0.8s;
}

.bar2 {
    background-color: var(--primary_color);
    animation-delay: -0.7s;
}

.bar3 {
    background-color: var(--primary_color);
    animation-delay: -0.6s;
}

.bar4 {
    background-color: var(--primary_color);
    animation-delay: -0.5s;
}

.bar5 {
    background-color: var(--primary_color);
    animation-delay: -0.4s;
}

.bar6 {
    background-color: var(--primary_color);
    animation-delay: -0.3s;
}

.bar7 {
    background-color: var(--primary_color);
    animation-delay: -0.2s;
}

.bar8 {
    background-color: var(--primary_color);
    animation-delay: -0.1s;
}

.bar9 {
    background-color: var(--primary_color);
    animation-delay: 0s;
}

.bar10 {
    background-color: var(--primary_color);
    animation-delay: 0.1s;
}

@keyframes loader3 {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1, 2.32);
    }

    40% {
        transform: scale(1);
    }
}

/* --------------------------------------  Blog Section  ----------------------------------------- */

.blogGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.blogGrid .blogBox {
    width: 100%;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.blogBox .blogThumbnail {
    width: 100%;
    height: 254px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.blogGrid .blogBox:hover .blogThumbnail {
    transform: scale(1.02);
}

.blogBox .blogCon {
    padding: 30px;
}

.blogTagsFlex {
    display: flex;
    align-items: center;
    column-gap: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.blogTagsFlex p {
    color: var(--color_black);
    font-size: 14px;
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.blogTagsFlex p i {
    color: var(--primary_color);
    font-size: 13px;
}

.blogCon h3 {
    margin-bottom: 30px;
    font-size: 22px;
    color: var(--color_black);
    font-family: "Inter", sans-serif;
}

.blogBox .blogCon .btnCommon {
    background-color: transparent;
    color: var(--color_black);
    border: 1px solid #ececec;
    padding: 15px 20px;
    transition: all 0.3s ease-in-out;
}

.blogBox .blogCon .btnCommon:hover {
    background-color: var(--primary_color);
    color: var(--color_white);
}

.blogDetCon h2 {
    font-size: 36px !important;
    margin: 20px 0 30px !important;
}

.blogDetCon .blogTagsFlex {
    margin-top: 40px;
    margin-bottom: 20px;
}

.blogDetCon .blogTagsFlex p {
    margin-bottom: 0;
    color: var(--color_grey);
}

.rightbarBlogItem {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 20px;
}

.rightbarBlogItem img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.rightbarBlogItem p {
    font-size: 14px;
    color: var(--color_grey);
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.rightbarBlogItem p i {
    color: var(--primary_color);
    font-size: 13px;
}

.rightbarBlogItem h5 {
    font-size: 16px;
    line-height: 23px;
    font-weight: 600;
    color: var(--color_black);
    margin-top: 10px;
    font-family: "Inter", sans-serif;
}

/* -------------------------------------- Basic Page Section ----------------------------------------- */

.basicPageSection {
    padding: 100px 0;
}

.basicPageSection .titleMain h2 {
    margin-bottom: 42px;
}

.basicPageSection .serviceGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.basicPageSection .serviceGrid .serviceBox {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
}

.projectGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.backTotop {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 42px;
    height: 42px;
    background-color: var(--color_white);
    border-radius: 100%;
    display: none;
    /* Initially hidden */
    align-items: center;
    justify-content: center;
    z-index: 99;
    font-size: 14px;
    color: var(--color_black);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease-in-out;
    /* Smooth transition */
}

.titleFlex {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.titleFlex .btnCommon {
    margin-bottom: 42px;
}

.serviceDetSec {
    padding: 100px 0;
}

.serviceProjectDtGrid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 30px;
}

.serviceDetCon img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.serviceDetCon h2 {
    font-family: "Inter", sans-serif;
    font-size: 36px;
    line-height: 43px;
    margin: 45px 0 25px;
    color: var(--color_black);
    font-weight: 600;
}

.serviceDetCon p {
    margin-bottom: 25px;
    line-height: 27px;
}

.serviceDetCon h4 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 29px;
    color: var(--color_black);
    margin: 35px 0 25px;
    font-weight: 600;
}

.commonChooseServiceGrid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 40px;
    align-items: center;
    margin-top: 35px;
}

.commonChooseServiceGrid img {
    width: 100%;
    object-fit: contain;
    height: auto;
}

.commonChooseServiceGrid p {
    color: var(--color_black);
    font-weight: 700;
    margin: 10px 0;
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.commonChooseServiceGrid p i {
    color: var(--primary_color);
    font-size: 18px;
}

.serviceRightbar .rightbarServicesBox {
    padding: 40px 30px;
    background-color: #f8f8f8;
}

.serviceRightbar .rightbarServicesBox h3 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 25px;
    color: var(--color_black);
    font-weight: 600;
}

.rightbarServicesBox .rightbarServicesItem {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.rightbarServicesBox .rightbarServicesItem a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color_white);
    padding: 24px;
    cursor: pointer;
    color: var(--color_black);
    transition: all 0.3s ease-in-out;
}

.rightbarServicesBox .rightbarServicesItem a:hover {
    background-color: var(--primary_color);
    color: var(--color_white);
}

.serviceRightbar .rightbarContact {
    margin-top: 30px;
}

.serviceRightbar .rightbarContact img {
    width: 100%;
}

.serviceRightbar .rightbarContact .rightbarContactCon {
    background-color: var(--color_black);
    color: var(--color_white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -8px;
    padding-top: 20px;
}

.rightbarContact .rightbarContactCon .callIcon {
    border: 1px solid var(--primary_color);
    border-radius: 50%;
    padding: 4px;
    margin-top: -32px;
}

.rightbarContact .rightbarContactCon .callIcon i {
    font-size: 18px;
    height: 47px;
    width: 47px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary_color);
    color: var(--color_white);
}

.rightbarContact .rightbarContactCon h3 {
    margin: 24px 0;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    line-height: 25px;
}

.rightbarContact .rightbarContactCon a {
    color: var(--color_white);
    font-size: 18px;
    font-weight: 600;
}

.rightbarContact .rightbarContactCon button {
    margin: 24px 0 42px;
}

.projectImgGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.projectImgGrid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 3px solid transparent;
}

.projectImgGrid img:hover {
    border: 3px solid var(--primary_color);
}

/* Intern Page css */
.intern-section {
    position: relative;
}
.internHeader {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 4;
}

.internHeader h2 {
    font-size: 100px;
    color: var(--color_black);
    padding: 0 100px;
    -webkit-text-stroke: 2px var(--color_grey);
    color: white; /* fill color */
    line-height: 116px;
    text-transform: uppercase;
}
.internHeader h2 span {
    -webkit-text-stroke: 2px var(--primary_color);
    color: var(--primary_color);
}
.viewAllWrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 4;
}

.viewAllWrap .btnCommon {
    background-color: var(--color_black);
    width: fit-content;
}
