@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    font-family: "Lexend Deca", sans-serif;
    background-color: #F8F8FF;
}

html {
    overflow-x: hidden !important;

}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

p {
    font-size: 17px;
    margin-bottom: 0;
}

.primary_btn {
    background: linear-gradient(to right bottom, var(--accent-1), var(--primary));
    padding: 15px 40px;
    border-radius: 5px;
    color: #fff;
    font-size: 17px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* background: var(--cta-background);
    color: var(--cta-text); */
}

.primary_btn:hover {
    box-shadow:
        0 0 10px rgba(197, 147, 66, 0.9),
        0 0 20px rgba(197, 147, 66, 0.7),
        0 0 30px rgba(197, 147, 66, 0.5),
        0 0 40px rgba(197, 147, 66, 0.3);
    color: #fff;
}

.primary_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary);
    transition: all 0.3s ease;

}

.primary_btn:hover::before {
    height: 100%;
    z-index: -1;
}

h2 {
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary);
}

h6 {
    font-size: 18px;
}

.cursor {
    mix-blend-mode: difference;

    width: 25px;
    height: 25px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    position: fixed;
    /* fixed keeps it following even while scrolling */
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease-out;
    z-index: 9999;
    display: none;
}

:root {
    /* Deep Sapphire Blue */
    --primary: rgb(25, 69, 88);
    /* Electric Indigo */
    --secondary: #103241;
    /* Metallic Gold */
    --accent-1: rgb(197, 147, 66);
    /* Cool Silver */
    --accent-2: #C0C0C0;
    /* Gold background */
    --cta-background: rgb(197, 147, 66);
    /* Sapphire text */
    --cta-text: rgb(25, 69, 88);

    --padding: 4rem;
    --margin: 4rem;
}

/* HEADER START */

.topStrip {
    border-bottom: 1px solid #000000;
    background-color: var(--primary);

}

.topStrip,
.topStrip a {
    color: #ffffff;
}

.topStrip i {
    margin-right: 0.3rem;
    font-size: 18px;
}

.topLeft {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 100%;
}

.topLeft a:hover {
    text-decoration: underline;
}

.topLeft>div:first-child {
    border-right: 1px solid #ffffff;
    padding-right: 10px;
    padding-block: 8px;
}

.topRight {
    display: flex;
    align-items: center;
    height: 100%;
}

.topRight a {
    display: inline-block;
    height: 100%;
    transition: all 0.3s ease;
}

.topRight i {
    font-size: 22px;
    height: 100%;
    width: 50px;
    border-right: 1px solid #ffffff;
    border-color: #fff !important;
    text-align: center;
    /* border-radius: 50%;
    border: 1px solid #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.topRight a:hover {
    background-color: var(--accent-1);
    color: #fff;
}







.carouselSec .owl-nav {
    display: none !important;
}


/* Navbar */

.navbar-brand img {
    width: 120px;
    /* background-color: rgba(255, 255, 255, 0.904);
    padding: 0.5rem; */


}

.navbar {
    padding-block: 0 !important;
}

.nav-item {
    margin-left: 10px;
}

.nav-item>a {
    color: #000;
    font-weight: 500;
    position: relative;
    padding: 8px 15px !important;
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
}


.nav-item>a::before {
    content: '';
    position: absolute;
    bottom: -0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-item>a:hover::before {
    width: 100%;
}

nav a.active,
nav a:focus {
    background: var(--primary);
    color: #fff !important;
}

.nav-item>a:hover {
    color: #fff;
}

nav .dropdown-menu {
    width: 300px;
    border-radius: unset;
    padding: 0;
}

nav .dropdown-menu a {
    padding: 10px;
    border-bottom: 1px dashed var(--cta-background);
    transition: all 0.3s ease;
}

nav .dropdown-menu a:hover {
    padding-left: 15px;
    background-color: var(--cta-background);
    color: #fff;
}

.newDrop {
    position: relative;
}

.subDropdown {

    position: absolute;
    left: -5px;
    top: 0;
    transform: translateX(-90%);
    background-color: #fff;
    opacity: 0;
    width: 300px;

    transition: all 0.5s linear;
}

.newDrop:hover .subDropdown {
    opacity: 1;
    transform: translateX(-100%);
}

.subDropdown a {
    display: block;
}

/* Carousel */

.carouselSec img {

    height: 650px;
    object-fit: cover;
}

.carousel-caption {
    top: 35%;
    color: #fff;
    bottom: unset;
}

.carousel-caption * {
    color: #fff;
}

.carousel-item::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #fff;
}


/* Video */

.heroSection {
    height: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.heroSection video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heroSection::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}


/* HEADER END */

/* ABOUT US START */

.about_Sec {
    margin-block: var(--margin);
}

.ab_img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--primary);
    position: relative;

}

.ab_img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* .ab_img:hover>img {
    transform: scale(1.05);
    cursor: pointer;
} */

.ab_img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg,
            transparent,
            transparent 30%,
            rgba(255, 255, 255, 0.3));
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0;
}


.ab_img:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}

/* .ab_small_img {
    width: 450px;
    height: 250px;
    border: 10px solid var(--accent-2);
    position: absolute;
    left: -20%;
    bottom: 0;
    transform: translateY(50%) !important;
    z-index: 5;
    overflow: hidden;
} */

.ab_small_img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    bottom: -5%;
    right: 5%;
    border: 1px solid var(--primary);
    z-index: 2;
}

.ab_small_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .ab_content h2 {
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
} */

.ab_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--accent-1);
    padding: 0.3rem;
}

.tringle {
    width: 130px;
    height: 130px;
    background-color: var(--secondary);
    position: absolute;
    top: 15%;
    left: 0;
    transform: translateX(-25%);
    z-index: 9;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 5s linear infinite;
    display: none;
}

@keyframes rotate {
    0% {
        transform: translateX(-25%) rotate(0);
    }

    25% {
        transform: translateX(-25%) rotate(5deg);
    }

    50% {
        transform: translateX(-25%) rotate(-5deg);
    }

    75% {
        transform: translateX(-25%) rotate(5deg);
    }

    100% {
        transform: translateX(-25%) rotate(0);
    }
}

.bg_sprial {
    width: 250px !important;
    height: 250px !important;
    object-fit: contain !important;
    position: absolute;
    right: 15%;
    bottom: -5%;
    z-index: 1;
    animation: fullRotate 10s linear infinite;
}

@keyframes fullRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}

/* ABOUT US END */

/* TAGLINE START */

.tagline {
    margin-top: 90px;
    background: linear-gradient(to right bottom, rgba(25, 69, 88, 0.92), rgba(197, 147, 66, 0.92)), url(../banner/hero-bg.jpg) center no-repeat fixed;
    padding-block: var(--padding);
    background-size: cover;
    margin-bottom: var(--margin);
}

.tgContent {
    width: 70%;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.tgContent h2 {
    color: #fff;
}

/* TAGLINE END */


/* OUR SERVICES START */



.services_Sec .owl-nav {
    display: none;
}

.services_Sec .owl-dots {
    margin-top: 3rem;
}

.servBoxes_holder {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.servBoxes_holder2 {
    margin-top: 4rem;
    margin-bottom: 1rem;
}

.serviceBox {
    /* box-shadow: 0 0 15px #ccc; */
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 10px;
    background-color: rgb(245, 245, 245);
    border: 1px solid #ccc;
    transition: all 0.4s ease !important;
    cursor: pointer;
}

.serviceBox:hover {
    background-color: var(--primary);
    color: #fff;
}


.servIcon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    color: #fff;
}

.serviceBox:hover .servIcon {
    background-color: #fff;
    color: var(--primary);
}

.servIcon i {
    animation: scale 5s linear infinite;

}

@keyframes scale {
    0% {
        transform: scale(1) rotate(0);
    }

    25% {
        transform: scale(1.15) rotate(5deg);
    }

    50% {
        transform: scale(1) rotate(0);
    }

    75% {
        transform: scale(1.15) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }

}

.service_box h4 {
    color: var(--secondary);
}

/* 
.services_Sec .owl-carousel .owl-stage-outer{
   overflow: hidden;
} */

/* OUR SERVICES END */

/* GET STARTED START */

.get_started_Sec {
    margin-top: -2rem;
    padding-top: 13rem;
    height: 1150px;
    background: url(../imgs/get-started-bg2.svg) no-repeat;
    background-size: cover;
}

.started_boxes_left .started_process {
    width: 75%;
    position: relative;
    padding-right: 5rem;

}


.started_process h4 {
    font-size: 28px;
    text-transform: capitalize;
}

.started_boxes_left {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
}

.started_boxes_left::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 650px;
    top: 0;
    right: 0;
    border-right: 3px dotted var(--primary);

}

.started_boxes_left .started_process h5 {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(50%);
    background-color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    padding: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.started_boxes_left .started_process h5::before {
    content: '';
    position: absolute;
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    border-radius: 50%;
    z-index: -1;
}

.started_boxes_left .started_process:nth-child(1) h5::before {
    background-color: rgba(0, 51, 102, 0.5);

}

.started_boxes_left .started_process:nth-child(2) h5,
.started_boxes_left .started_process:nth-child(3) h5::before {
    background-color: var(--primary);
}

.started_boxes_left .started_process:nth-child(2) h5::before,
.started_boxes_left .started_process:nth-child(3) h5::before {
    background-color: rgba(0, 51, 102, 0.5);
}

.started_boxes_right {
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
}

.started_boxes_right .started_process {
    padding-left: 5rem;
    width: 80%;
    position: relative;
}

.started_boxes_right .started_process h5 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    background-color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    padding: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.started_boxes_right .started_process h5::before {
    content: '';
    position: absolute;
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    border-radius: 50%;
    z-index: -1;
}

.started_boxes_right .started_process:nth-child(1) h5,
.started_boxes_right .started_process:nth-child(2) h5,
.started_boxes_right .started_process:nth-child(3) h5 {
    background-color: var(--secondary);
}

.started_boxes_right .started_process:nth-child(1) h5::before,
.started_boxes_right .started_process:nth-child(2) h5::before,
.started_boxes_right .started_process:nth-child(3) h5::before {
    background-color: rgba(160, 170, 222, 0.5);

}



/* 2 */
.started_boxes_right .started_process:nth-child(1) {
    transform: translateY(140%);
}

/* 3 */

.started_boxes_left .started_process:nth-child(2) {
    transform: translateY(180%);
}

/* 4 */
.started_boxes_right .started_process:nth-child(2) {
    transform: translateY(320%);
}


/* 5 */

.started_boxes_left .started_process:nth-child(3) {
    transform: translateY(360%);
}

/* 6 */
.started_boxes_right .started_process:nth-child(3) {
    transform: translateY(500%);
}



.started_process h5::before {
    animation: grow 5s linear infinite;
}

@keyframes grow {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }

}

/* GET STARTED END */

/* COUNTER START */

.fact-counter {
    position: relative;
    width: 100%;
    padding-block: var(--padding);
    background: linear-gradient(rgba(25, 69, 88, 0.94), rgba(25, 69, 88, 0.94)), url(../banner/hero-bg.jpg) center no-repeat fixed !important;
    background-size: cover;

}



.countHeading {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    color: #fff;

}

.fact-counter img {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 120px;
    object-fit: cover;
    border: 2px solid #fff;
    display: none;
}

.count ul {
    margin: 0;
    list-style: none;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
}

.count ul li {
    /* padding: 0 50px; */
    margin: 0;
    list-style: none;
    /* width: 24.7%; */
    text-align: center;
    display: inline-block;
}

.count ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.count .num {
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    line-height: 44px;
}

.count .num span {
    display: inline-block;
    margin-left: 5px;
}

.count .sub-text {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0 !important;
}


/* COUNTER END */

/* ARTICLE START */

.article_Sec {
    margin-block: var(--margin);
}


.articalImg {
    height: 300px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}

.articleBox {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid var(--accent-1);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px transparent;

}


.articleBox h6 {
    font-size: 16px;
}

.articalImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease !important;
}

.articleBox:hover img {
    transform: scale(1.05);
}

.articleImg {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

/* .articleImg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg,
            transparent,
            transparent 30%,
            rgba(255, 255, 255, 0.4));
    transform: rotate(-45deg) translateY(-100%);
    transition: all 0.6s ease;
    opacity: 0;
}

.articleImg:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
} */


.articleContent {
    padding: 30px;
    background-color: #eee;
    height: 100%;
    transition: all 0.3s ease;
}

.articleContent span {
    color: var(--secondary);
}


.articleBox:hover .articleContent {
    background-color: var(--primary);
}

.articleBox:hover * {
    color: #fff;
}

.articleBox .primary_btn {
    border: none;
    border: 2px solid #fff;

}

.articleBox:hover .primary_btn {
    background: #fff;
    color: var(--primary);
}

.articleBox:hover .primary_btn::before {
    display: none;

}

.articleBox .primary_btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

/* .articleContent h4 {
    font-size: 22px;
} */

.articleContent h4 a {
    transition: all 0.3s ease;
}

.articleContent h4:hover a {
    text-decoration: underline;
    /* color: var(--secondary); */
}

/* ARTICLE END */

/* CONTACT US START */

.contact_Sec {
    padding-block: var(--padding);
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(../banner/bg-img2.jpg) center no-repeat fixed;
    background-size: cover;

}

.contactBox {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    height: 220px;
    overflow: hidden;
}

.contactIcon {
    font-size: 35px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    position: relative;
    z-index: 1;
    border: 1px solid #fff;
}

.contactIcon::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary);
    border-radius: 50%;
    transition: all 1s ease;
    transform: scale(0);
    z-index: -2;
}

.contactBox:hover .contactIcon::before {
    transform: scale(10);
}

.contactIcon::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: scale(0);
    z-index: -1;
    border: 1px solid #fff;
}

.contactBox:hover .contactIcon::after {
    transform: scale(1);
    background-color: var(--secondary);
}

/* .contactIcon i {
    animation: scale 5s linear infinite;

} */

.contactBox a {
    color: #fff;
    position: relative;
    z-index: 9;

}

.contactBox h5,
.contactBox p {
    position: relative;
    z-index: 9;
}

.contactBox a:hover {
    text-decoration: underline;
}

.contact_Sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--primary);
}

.contactForm {
    background-color: rgba(255, 255, 255, 0.7);
    background-color: var(--primary);
    border: 1px solid var(--primary);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contactForm h5 {
    font-size: 20px;
    margin-bottom: 2rem;
    color: var(--primary);
    text-transform: uppercase;
}

.contactForm input,
.contactForm textarea {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    color: #fff;
    outline: none !important;

}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
    color: #fff;
    font-family: "Lexend Deca", sans-serif;

}

.contactForm button {
    background: #fff !important;
    color: var(--primary);
}

/* .contactForm div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

} */

/* CONTACT US END */

/* FOOTER START */

footer {
    background-color: var(--primary);
    padding-block: var(--padding);
}

footer * {
    color: #fff;
}

footer h5 {
    font-size: 24px;
    margin-bottom: 1rem;
}

footer li {
    margin-bottom: 10px;
}

footer li,
footer a {
    font-size: 17px;
}


footer a:hover {
    text-decoration: underline;
}


.ft_subscribe form {
    background-color: var(--secondary);
    padding: 10px;
    border-radius: 10px;
}

.ft_subscribe input {
    width: 100%;
    padding: 10px;
    padding-left: 5px;
    padding-bottom: 5px;
    background-color: transparent !important;
    border: none;
    outline: none !important;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
    font-size: 16px;
    border-radius: 6px;


}

.ft_subscribe input::placeholder {
    color: #fff;
    font-size: 16px;
}

.ft_subscribe button {
    width: 100%;
    background-color: var(--primary);
    padding: 8px 20px;

    border-radius: 8px;
    border: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.ft_subscribe button:hover {
    background-color: var(--accent-1);
}

.subfooter {
    padding-block: 10px;
    text-align: center;
    background-color: var(--secondary);
    color: #fff;
}

/* FOOTER END */


/* Back To Top */
.backToTop {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.backToTop i {
    position: absolute;
    color: #fff;
    font-size: 18px;
    pointer-events: none;
}

.progress-ring__circle {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke-dasharray: 138;
    /* circumference of circle (2 * π * r = 2*π*22) */
    stroke-dashoffset: 138;
    transition: stroke-dashoffset 0.2s linear;
}



/* whatsap css */
#whatsapp {
    position: fixed;
    right: 40px;
    bottom: 15%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    opacity: 1;
    z-index: 99990;
}

#whatsapp #whatsappMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgba(255, 255, 255, 0);
    width: 70px;
    height: 70px;
    color: #40c351;
    z-index: 9;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}

#whatsapp #whatsappMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background-image: url('../imgs/whatsapp.png');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-webkit-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

/* whatsap css */


/* ABOUT US PAGE START */

.common_banner {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.common_banner::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.common_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commonBanner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    width: max-content;
}

.commonBanner_content * {
    color: #fff;
    text-align: center;
}

.commonBanner_content a:hover {
    text-decoration: underline;
}

.ab_page_wel {
    margin-block: var(--margin);
}

.ab_page_imgs {
    display: flex;
    width: 100%;
    height: 100%;
    /* padding: 0.5rem; */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.ab_page_imgs>* {
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    border: 1px solid #ffffff;
}

/* Vision & Mission */
.mission_vision img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* padding: 0.5rem; */
    border-radius: 20px;
    border: 1px solid #ccc;
}

.vision {
    /* background: linear-gradient(rgba(34, 73, 106, 0.6), rgba(34, 73, 106, 0.6)), url(../imgs/background1.jpg) left no-repeat; */
    background: var(--secondary);
    background-size: cover;
    padding-block: var(--padding);
    margin-top: var(--margin);
    color: #fff;
}

.vision h2 {
    color: #fff;
}

.mission {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../imgs/background.jpg) no-repeat center;
    background-size: cover;
    padding-block: var(--padding);
}

.mission_vision img {
    width: 100%;
    height: 300px;
    background-color: #fff;
    object-fit: cover;
}

.mission_vision ul {
    padding-left: 1rem;
    margin-top: 1rem;
}

.mission_vision li {
    list-style: circle;
    margin-bottom: 8px;
}

/* Why Choose Us */

.why_choose {
    padding-block: var(--padding);
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../banner/bg-img2.jpg) center no-repeat fixed;
    background-size: cover;
}

/* 
.why_choose_box {
    border: 1px solid #ccc;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(to right bottom, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 10px;
    height: 202px;
}

.why_choose_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to right bottom, var(--secondary), var(--primary));
    transition: all 0.4s ease;
    display: none;
}

.why_choose_box * {
    position: relative;
    z-index: 9;
}

.why_choose_box p {
    max-height: 102px;
    overflow: hidden;
}

.why_choose_box:hover::before {
    width: 100%;
}

.why_choose_box:hover {
    color: #fff;
    transform: scale(1.03);

}

.why_choose_box h5 {
    font-size: 24px;
}

.why_choose_box h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(178, 176, 176, 0.15);
    font-size: 150px;
} */

/* .why_choose_box:hover h6 {
    color: rgba(178, 176, 176, 0.15);

} */


.why_choose_box {
    /* box-shadow: 0 0 25px #ccc; */
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    height: 170px;
    background: linear-gradient(to right bottom, var(--primary), var(--secondary));

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    text-align: center;
}

.why_choose_box i {
    font-size: 40px;
    height: 70px;
    width: 70px;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.why_choose_box::before {
    content: '';
    background: linear-gradient(to left bottom, var(--primary), var(--secondary));
    width: 30px;
    height: 30px;

    border-bottom-right-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    /* display: none; */
}

.why_choose_box:hover::before {
    width: 100%;
    height: 100%;
}

.why_choose_box h5 {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 19px;
    color: #fff;
    transition: all 0.3s ease;

}

.why_choose_box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96%;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;

}

.why_choose_box:hover:before {
    width: 100%;
    height: 100%;
    border-radius: unset;
}

.why_choose_box:hover i {
    opacity: 0;
}

.why_choose_box:hover h5 {
    opacity: 0;
}

.why_choose_box:hover p {
    opacity: 1;
}


.why_choose_box * {
    transition: all 0.3s ease;
}


/* .why_choose_box:hover * {
    position: relative;
    z-index: 3;
    color: #fff;
} */

.why_choose_box:hover i {
    background-color: #fff;
    color: var(--primary);
}


/* ABOUT US PAGE END */

/* CONTACT PAGE START */

.contact_page_dtls {
    margin-block: var(--margin);
}

.cont_boxes {
    padding: 20px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 20% 80%;
    align-items: center;
    margin-bottom: 1rem;
    height: 130px;
    border: 1px solid #ccc;
    background: linear-gradient(to right bottom, var(--primary), var(--secondary));
    color: #fff;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cont_boxes:hover {
    background: linear-gradient(to left bottom, var(--primary), var(--secondary));
    transform: scale(1.03);

}

.cont_boxes i {
    font-size: 30px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    /* margin: 0  auto; */
    background-color: #fff;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont_boxes a {
    color: #fff;
}

.cont_boxes a:hover {
    text-decoration: underline;
}


.contactAddress {
    margin-top: 3rem;
}

.contact_page_dtls h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact_page_dtls .map {
    border: 3px solid var(--primary);
}

.addressBox {
    display: flex;
    gap: 10px;
    box-shadow: 0 0 10px #ccc;
    padding: 20px;
    margin-block: 10px;
    align-items: center;
    border: 1px solid #ccc;
    background: linear-gradient(to right bottom, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 10px;


}

.addressBox .addIcon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    transition: all 0.3s ease;

    background-color: #fff;
    color: var(--primary);
}

.addressBox .addIcon i {
    transition: all 0.3s ease;
}

.addressBox h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: unset;
    margin-bottom: 5px;
    color: #fff;
}

.addressBox a {
    color: #fff;
}

.addressBox a:hover {
    text-decoration: underline;
}


.addressBox:hover .addIcon {
    border-color: transparent;

}

.addressBox:hover .addIcon i {
    transform: scale(1.2);
}



/* Contact Form */

.cont_form div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cont_form input,
.cont_form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    outline: none !important;

}

.cont_form input:focus,
.cont_form textarea:focus {
    border-color: var(--primary);
}

.contact_page_dtls img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
}

/* CONTACT PAGE END */

/* SITEMAP PAFE START */

.sitemap {
    margin-block: var(--margin);
}

.sitemap a {
    display: block;
    background: var(--primary);
    padding: 15px 20px;
    color: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
}


.sitemap a:hover {
    background-color: var(--secondary);
}

.sitemap h4 {
    margin-bottom: 1rem;
}

/* SITEMAP PAFE END */

/* FEATURES PAGE START */

.portfolio_section {
    margin-block: var(--margin);
}

.filter-buttons {
    width: 100%;
}

.filter-buttons h4 {
    margin: 0;
    background-color: var(--primary);
    color: #fff;
    padding: 10px;
}

.filter-btn {
    width: 100%;
    padding: 10px 25px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    font-size: 17px;
}

.filter-btn.active {
    background-color: var(--secondary);
    color: #fff;
}

.filter-btn:hover {
    background-color: var(--secondary);
    color: #fff;
}


.projects_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-item p {
    padding-inline: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    color: white;
}

.overlay p {
    display: none;
}

.project-item:hover .overlay {
    opacity: 1;
}

.icons {
    display: flex;
    gap: 20px;
    font-size: 24px;
    margin-top: 10px;
}

.icons a,
.icons button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 28px;
    text-decoration: none;
}

/* Modal Image Container */
.modal-img-container {
    max-width: 100%;
    text-align: center;
}

.modal-img-container img.modal-img {
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}

/* Modal Text Content */
.modal-text {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.modal-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Modal Link Button */
.modal-link {
    text-decoration: none;
    font-weight: 500;
}

/* Add some spacing in small screens */
@media (max-width: 992px) {
    .modal-body {
        flex-direction: column !important;
    }

    .modal-text {
        text-align: center;
    }

    .modal-text .modal-link {
        width: 100%;
    }
}


.close-btn {
    width: 40px;
    height: 40px;
    background-color: var(--cta-background);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: var(--primary);
}

/* FEATURES PAGE END */

/* SERVICE PAGE START */

.service_pg_sec1 {
    background: url(../imgs/background.jpg) center no-repeat;
    padding-block: var(--padding);

}

.service_pg_sec1 img,
.service_pg_sec2 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #000000;
}

.newServPage img {
    height: 400px;
}

.service_pg_sec1 p,
.service_pg_sec2 p {
    line-height: 26px;

}

.service_pg_sec2 img {
    border-color: #fff;
}

.service_pg_sec2 {
    width: 100%;
    padding-block: var(--padding);
    background: linear-gradient(rgba(25, 69, 88, 0.94), rgba(25, 69, 88, 0.94)), url(../banner/hero-bg.jpg) center no-repeat;
    background-size: cover;
    color: #fff;
}

.business_card img{
    object-fit: contain !important;
}

.feature-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: var(--primary);
    color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
    /* Ensures all cards in a row have the same height */
    transition: all 0.3s ease;
    cursor: pointer;
}


.feature-card:hover {
    background-color: var(--secondary);

}

.feature-card .fa-solid {
    color: var(--primary);
    /* Green color for the icon */
    font-size: 1.25rem;
    margin-right: 1rem;
    height: 30px !important;
    width: 30px !important;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card p {
    margin-bottom: 0;
}


/* ----------------------- */

.tagline2 {
    background: url(../imgs/background.jpg) center no-repeat;
    padding-block: var(--padding);
}

.tagline2 * {
    color: #000 !important;

}



.swiper img {
    padding: 0;
    width: 100%;
    border: unset;
    height: 150px;
    background-color: #fff;
    object-fit: contain;
    border: 1px solid #ccc;
    padding: 1rem;
}

.slider .swiper img {
    height: 180px;
    object-fit: cover;
    padding: unset;
}

.swiper-pagination {
    bottom: -30px !important;
}



.seomodal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.seomodal[aria-hidden="false"] {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.modal-panel {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    /* max-width: 900px; */
    width: 70%;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    height: 30px;
    width: 30px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.modal-close:hover {
    background-color: var(--secondary);
}

.modal-title {
    text-align: center;
    margin-bottom: 20px;
}

.packages {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.pkg-card {
    flex: 1 1 250px;
    background: #f9fafb;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f59e0b;

}

.pkg-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.pkg-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 14px;
}

.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
}

.pkg-features li {
    margin: 6px 0;
    position: relative;
    padding-left: 18px;
}

.pkg-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}

.pkg-card.popular {
    border: 2px solid #f59e0b;
    background: #fff8eb;
}


#openModalBtn,
#showSmmModal {
    border: unset;
    padding: 10px 25px;
}


/* === Modal Base === */
.smmmodal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    color: #000;
}

.smmmodal[aria-hidden="false"] {
    display: flex;
}

.digital_market img {
    padding: 0;
    border-color: #fff;
}

/* Custom web development */
.serv_projects {
    padding-block: var(--padding);
    background: rgb(223, 222, 222)
}

.serv_projects img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.projectBox {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.proContent {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80%;
    border-radius: 25px;
    transition: all 0.5s ease;
    border: 2px solid #fff;

}

.proContent * {
    margin: 0;
}

.proContent:hover {
    background-color: var(--secondary);
    color: #fff;
}

.projectBox:hover .proContent {
    transform: translate(-50%, -50%) scale(1);

}


.features {
    padding-block: var(--padding);
}

.features h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}

.feature-box {
    background: linear-gradient(to right bottom, var(--primary), var(--secondary));
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
    color: #fff;
}

.feature-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-box h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.solutions {
    /* background-color: #dadffa; */
    padding-block: var(--padding);
    padding-top: 0;
}

.solutions h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
}

.solution-box {
    border: 2px dashed var(--primary);
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    height: 100%;
    transition: 0.5s;
    cursor: pointer;
    background-color: #fff;
}

.solution-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.01);
}

.solution-icon {
    font-size: 60px;
    color: var(--primary);
    margin-right: 20px;
    flex-shrink: 0;
}

.solution-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
}

.solution-text {
    color: #333;
}

.solution-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.solution-link:hover {
    text-decoration: underline;
}


/* Microsoft */
#microsoft img {
    padding: 0;
    border-color: #fff;
}

#microsoft .service_pg_sec1 h3,
#microsoft .service_pg_sec1 p,
.service_pg_sec1_1 h3,
.service_pg_sec1_1 p {
    padding-left: 80px;
}

#microsoft .service_pg_sec2 h3,
#microsoft .service_pg_sec2 p,
.service_pg_sec2_2 h3,
.service_pg_sec2_2 p {
    padding-right: 80px;
}

/* SERVICE PAGE END */

/* ARTICLE PAGE START */

.articles_pg {
    margin-block: var(--margin);
}

.articles_pg .articalImg {
    width: 100%;
    height: 100%;
}

.articles_pg .articleContent {
    padding: 15px;
}

.articles_pg .primary_btn {
    padding: 8px 25px;
}

/* ARTICLE PAGE END */

/* ARTICLE DETAILS PAGE */

.article_dtls_pg {
    margin-block: var(--margin);
}

.recent_article h4 {
    background-color: var(--primary);
    padding: 10px;
    color: #fff;
    margin-bottom: 0;
}

.recent_article a {
    display: block;
    width: 100%;
    padding: 10px;
    transition: all 0.3s ease;
    background-color: #eee;
    border: 1px solid #ccc;
}

.recent_article a:hover {
    background-color: var(--secondary);
    color: #fff;
}

.article_dtls_content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #ccc;
}