@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: var(--font-family-1);
}
body{
    font-family: var(--font-family-1);
    font-weight: var(--font-400);
    font-size: var(--font-16);
    color: var(--Black-Color);
}
:root {
    --font-family-1: "Work Sans", sans-serif;
    --Primary-Color: #250755;
    --Secondary-Color: #7939c2;
    --White-Color: #FFFFFF;
    --Black-Color: #000000;
    --Background-Color: #F5F7FA;
    --Border-Color: #E5E7EB;
    --Gradient-Color-1: linear-gradient(94.41deg, #250755 0%, #7939c2 100%);
    --Gradient-Color-2: linear-gradient(180deg, #EBF5FF 0%, #FFFFFF 100%);
    --Shadow: 0px 0px 24px 0px #00000024;
    --Transition: all 0.3s ease-in-out;
    --font-700: 700;
    --font-600: 600;
    --font-400: 400;
    /* --space-60: 62px; */
}
:root{
    /* Responsive Font Sizes */
    --font-46: clamp(28px, 4vw, 46px);
    --font-32: clamp(22px, 3vw, 32px);
    --font-24: clamp(18px, 2.5vw, 24px);
    --font-16: clamp(14px, 1.5vw, 16px);
    --font-14: clamp(12px, 1.2vw, 14px);
    /* Responsive Spacing */
    --space-60: clamp(30px, 6vw, 62px);
}

h1{
    font-family: var(--font-family-1);
    font-weight: var(--font-700);
    font-size: var(--font-46);
}
h2{
    font-family: var(--font-family-1);
    font-weight: var(--font-600);
    font-size: var(--font-32);
}
h3{
    font-family: var(--font-family-1);
    font-weight: var(--font-600);
    font-size: var(--font-24);
}
h4, h5, h6{
    font-family: var(--font-family-1);
    font-weight: var(--font-400);
    font-size: var(--font-16);
}
p, .paragraph{
    font-family: var(--font-family-1);
    font-weight: var(--font-400);
    font-size: var(--font-16);
}
.small-text{
    font-family: var(--font-family-1);
    font-weight: var(--font-400);
    font-size: var(--font-14);
}
.button-text{
    font-family: var(--font-family-1);
    font-weight: var(--font-600);
    font-size: var(--font-16);
}
a{
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
ul{
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.button_1{
    font-family: var(--font-family-1);
    font-weight: var(--font-600);
    font-size: var(--font-16);
    color: var(--White-Color);
    background-color: var(--Primary-Color);
    padding: 12px 24px;
    border-radius: 4px;
    border: 2px solid var(--Primary-Color);
    outline: none;
    transition: var(--Transition);
}
.button_1:hover{
    background-color: transparent;
    color: var(--Primary-Color);
}
.button_2{
    font-family: var(--font-family-1);
    font-weight: var(--font-600);
    font-size: var(--font-16);
    color: var(--Primary-Color);
    background-color: transparent;
    padding: 12px 24px;
    border-radius: 4px;
    border: 2px solid var(--Primary-Color);
    outline: none;
    transition: var(--Transition);
}
.button_2:hover{
    background-color: var(--Primary-Color);
    color: var(--White-Color);
}
h1, h2, h3, h4, h5, h6, p{
    margin: 0px;
}
/* Pages Css Started-------------------------------------------------------------------------------------------------- */
/* HEADER.PHP START */
.sticky-header{
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 999;
    background-color: var(--White-Color);
    border-bottom: 1px solid var(--Border-Color);
}
.topbar{
    background-color: var(--Primary-Color);
}
.topbar .content a{
    color: var(--White-Color);
    transition: var(--Transition);
}
.topbar .content a:hover{
    color: var(--Secondary-Color);
}
.topbar .content .social-links a {
    background-color: var(--White-Color);
    color: var(--Primary-Color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 10px;
    transition: var(--Transition);
}
.topbar .content .social-links a:hover {
    background-color: var(--Secondary-Color);
}
.header{
    padding: 16px 0px;
}
.header .logo{
    max-width: 135px;
    width: 100%;
}
.header .logo a,
.header .logo a img{
    width: 100%;
}
.header .navbars ul li a{
    color: var(--Black-Color);
    transition: var(--Transition);
}
.header .navbars ul li a:hover{
    color: var(--Primary-Color);
}
.header .navbars{
    display: flex;
    align-items: center;
    gap: 24px;
}
.header .navbars nav ul{
    display: flex;
    align-items: center;
    gap: 24px;
}
button#open-toggle{
    display: none;
}
.header .navbars .menu-head{
    display: none;
}
/* HEADER.PHP END */
/* Responsive */
@media (max-width: 1024px) {
    /* Menu Design */
    .header .navbars {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 280px;
        background: var(--White-Color);
        height: 100%;
        z-index: 9;
        flex-direction: column;
        align-items: start;
        padding: 20px;
        overflow-y: scroll;
        transform: translateX(-100%);
        transition: var(--Transition);
    }
    body.menu-open .header .navbars{
        transform: translateX(0%);
    }
    .header .navbars nav{
        width: 100%;
    }
    .header .navbars a.button_1{
        width: 100%;
        text-align: center;
    }
    .header .navbars nav ul li,
    .header .navbars nav ul li a{
        width: 100%;
    }
    .header .navbars nav ul {
        display: flex;
        align-items: start;
        gap: 16px;
        flex-direction: column;
    }
    button#open-toggle{
        display: block;
    }
    .header .navbars .menu-head {
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid var(--Border-Color);
        width: 100%;
        padding-bottom: 10px;
    }
    body.menu-open {
        overflow: hidden;
    }
    #overlay {
        display: none;
        position: fixed;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        background-color: var(--Black-Color);
        opacity: 0.5;
        width: 100%;
        height: 100%;
        z-index: 9;
    }
    body.menu-open #overlay {
        display: block;
    }
    #close-toggle{
        background-color: transparent;
        border: none;
    }
}

#scrollTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--Primary-Color);
    color: var(--White-Color);
    font-size: var(--font-14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

#scrollTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    background: var(--Secondary-Color);
}

/* Hero section */
.hero-section{
    padding-top: 32px;
    padding-bottom: 32px;
    min-height: 740px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-section .container{
    position: relative;
    z-index: 1;
}
.hero-section::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--Black-Color);
    opacity: 0.5;
}
.hero-section .content h1{
    /* background: var(--Gradient-Color-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--White-Color);
    margin-bottom: 16px;
}
.hero-section .content p{
    color: var(--White-Color);
}
.hero-section .content a.button_1{
    background-color: var(--White-Color);
    color: var(--Primary-Color);
    border-color: var(--White-Color);
}
.hero-section .content a.button_1:hover{
    background-color: transparent;
    color: var(--White-Color);
}
@media (max-width: 575px) {
    .hero-section .banner-image {
        height: 240px;
        border-radius: 10px;
        padding: 10px;
        display: flex;
        align-items: end;
    }
    .hero-section .banner-image .text-banner {
        max-width: 100%;
        border-radius: 10px 10px;
        position: relative;
    }
    .hero-section .banner-image .text-banner::before, .hero-section .banner-image .text-banner::after{
        display: none;
    }
}

/* partners section */
.partners-section{
    padding-top: var(--space-60);
    padding-bottom: var(--space-60);
}

.partners-section .logos {
    overflow: hidden;
    background: var(--Primary-Color);
    padding: 10px 0;
}

.partners-section .logos-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.partners-section .logos-track img {
    height: 75px;
    object-fit: contain;
    transition: var(--Transition);
    border-radius: 4px;
    background-color: var(--White-Color);
    cursor: pointer;
    padding: 5px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media (max-width: 575px) {
    .partners-section .logos-track img {
        height: 45px;
    }
}

/* About Us Section */

.about-section{
    padding-bottom: var(--space-60);
}
.about-section .content{
    background: var(--Gradient-Color-2);
    border-radius: 20px;
    padding: 32px;
}
.about-section .image img{
    border-radius: 20px;
}
.about-section .content .inner .box{
    background-color: var(--White-Color);
    box-shadow: var(--Shadow);
    border-radius: 10px;
    padding: 24px 16px 16px;
    text-align: center;
}
.about-section .content .inner .box .icon{
    font-size: 65px;
    color: var(--Primary-Color);
    margin-bottom: 24px;
    line-height: 1;
}
@media (max-width: 767px) {
    .about-section .content {
        border-radius: 10px;
        padding: 16px;
    }
    .about-section .image img{
        border-radius: 10px;
    }
}

/* Services Section */
.services-section{
    padding: var(--space-60) 0px;
    background-color: var(--Background-Color);
}
.services-section .main-content{
    margin: 32px 0px;
}
.services-section .main-content .content{
    background-color: var(--White-Color);
    border-radius: 10px;
    box-shadow: var(--Shadow);
    padding: 60px 12px 32px;
    margin-top: 45px;
    height: calc(100% + -45px);
    text-align: center;
    position: relative;
    transition: var(--Transition);
}
.services-section .main-content .content:hover{
    transform: translateY(-10px);
    cursor: pointer;
}
.services-section .main-content .content p{
    color: var(--Primary-Color);
}
.services-section .main-content .content .icon{
    font-size: 50px;
    list-style: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    min-width: 90px;
    border-radius: 10px;
    background-color: var(--Primary-Color);
    color: var(--White-Color);
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--Transition);
}
.services-section .main-content .content:hover .icon{
    background-color: var(--Secondary-Color);
}


/* how it work */
.how-it-work{
    padding: var(--space-60) 0px;
}
.how-it-work .main-content{
    border-top: 5px solid var(--Primary-Color);
}
.how-it-work .main-content .content{
    position: relative;
    padding-top: 18px;
}
.how-it-work .main-content .content::before {
    content: "";
    height: 21px;
    width: 21px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--Primary-Color);
    border-radius: 50px;
}
.how-it-work .main-content .content::after {
    content: "";
    height: 5px;
    width: 5px;
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--White-Color);
    border-radius: 50px;
}
.how-it-work .main-content .content .count{
    opacity: 0.1;
    color: var(--Black-Color);
    font-size: var(--font-46);
    font-weight: var(--font-700);
}
.how-it-work .main-content .content .box{
    background-color: var(--White-Color);
    box-shadow: var(--Shadow);
    padding: 24px;
    border-radius: 10px;
    transition: var(--Transition);
    cursor: pointer;
}
.how-it-work .main-content .content .box .icon{
    font-size: 60px;
    list-style: 1;
    color: var(--Primary-Color);
}
.how-it-work .main-content .content:hover .box{
    box-shadow: none;
}
@media (max-width: 991px) {
    .how-it-work .main-content {
        border-top: none;
        border-left: 5px solid var(--Primary-Color);
        padding-left: 20px;
    }
    .how-it-work .main-content .content {
        padding-top: 0px;
    }
    .how-it-work .main-content .content::before {
        top: 10px;
        left: -33px;
        transform: translateX(0);
    }
    .how-it-work .main-content .content::after {
        top: 18px;
        left: -25px;
        transform: translateX(0%);
    }
    .how-it-work .main-content .content .count {
        text-align: left;
    }
}


/* recent work */
.recent-work{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: var(--space-60) 0px;
    position: relative;
}
.recent-work::before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--Black-Color);
    opacity: 0.6;
}
.recent-work .container{
    position: relative;
    z-index: 1;
}
.recent-work h2{
    color: var(--White-Color);
}
.recent-work .image a{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.recent-work .image a img{
    width: 100%;
    aspect-ratio: 1 / 1;
}
.recent-work .image a .view{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background-color: var(--White-Color);
    border-radius: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--Transition);
}
.recent-work .image a::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--Black-Color);
    visibility: hidden;
    opacity: 0;
    transition: var(--Transition);
}
.recent-work .image a:hover::before{
    visibility: visible;
    opacity: 0.6;
}
.recent-work .image a:hover .view{
    visibility: visible;
    opacity: 1;
}

/* our teams */
.our-teams{
    padding: var(--space-60) 0px;
}
.our-teams h2,
.our-teams p{
    text-align: center;
    margin: auto;
    max-width: 632px;
    width: 100%;
}
.our-teams .teams-slide{
    padding-bottom: 40px;
    padding-top: 32px;
}
.our-teams .teams-slide .box{
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--White-Color);
    box-shadow: var(--Shadow);
    cursor: pointer;
    transition: var(--Transition);
}
.our-teams .teams-slide .box .small-text{
    opacity: 0.6;
}
.our-teams .teams-slide .box .icons a i{
    font-size: 34px;
    line-height: 1;
    color: var(--Primary-Color);
    transition: var(--Transition);
}
.our-teams .teams-slide .box .icons a:hover i{
    color: var(--Secondary-Color);
}
.our-teams .teams-slide .box .icons{
    display: flex;
    align-items: center;
    gap: 4px;
}
.our-teams .teams-slide .box .image{
    overflow: hidden;
}
.our-teams .teams-slide .box .image img{
    aspect-ratio: 1 / 1;
    width: 100%;
    transition: var(--Transition);
}

.our-teams .teams-slide .box:hover .image img{
    transform: scale(1.04);
}
.our-teams .teams-slide .box:hover {
    transform: translateY(-5px);
}
.our-teams .teams-slide .swiper-pagination {
    margin: 0px;
    bottom: 0px !important;
}
.our-teams .teams-slide .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--Primary-Color);
}
/* Testimonials */
.testimonials{
    padding: var(--space-60) 0px;
    background-color: var(--Background-Color);
}
.testimonials h2{
    text-align: center;
    margin: auto;
    max-width: 632px;
    width: 100%;
}
.testimonials .testimonials-slide{
    padding-bottom: 40px;
    padding-top: 32px;
}
.testimonials .testimonials-slide .box{
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--White-Color);
    border: 1px solid var(--Border-Color);
    padding: 16px;
}
.testimonials .testimonials-slide .box .top-profile {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--Border-Color);
}
.testimonials .testimonials-slide .box .top-profile .small-text{
    opacity: 0.6;
}
.testimonials .testimonials-slide .box .top-profile img{
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 48px;
    height: 48px;
    border-radius: 4px;
}
.testimonials .testimonials-slide .box .bottom-text .small-text{
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 63px;
}
.testimonials .testimonials-slide .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--Primary-Color);
}

/* contact us */
.contact-us{
    padding: var(--space-60) 0px;
}
.contact-us .title h2,
.contact-us .title p{
    max-width: 583px;
    margin: auto;
    text-align: center;
}
.contact-us .contact-form{
    position: relative;
}
.contact-us .contact-form::before {
    content: "";
    height: calc(100% - 60px);
    width: 100%;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    background-color: var(--Primary-Color);
    border-radius: 10px;
}
@media (max-width: 991px) {
    .contact-us .contact-form::before {
        height: calc(100%);
        position: absolute;
        top: calc(0%);
        left: 0px;
        transform: translateY(0%);
    }
}
.contact-us .contact-form .info{
    display: flex;
    gap: 24px;
    flex-direction: column;
    padding: 40px 20px;
    height: 100%;
    justify-content: center;
}
.contact-us .contact-form .info a{
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--Transition);
}
.contact-us .contact-form .info a .icon{
    height: 56px;
    width: 56px;
    min-width: 56px;
    border-radius: 100px;
    background-color: var(--White-Color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--Transition);
}
.contact-us .contact-form .info a:hover .icon{
    background-color: var(--Secondary-Color);
}
.contact-us .contact-form .info a .icon i{
    font-size: 32px;
    line-height: 1;
    color: var(--Primary-Color);
}
.contact-us .contact-form .info a .button-text,
.contact-us .contact-form .info a p{
    color: var(--White-Color);
}
.contact-us .contact-form .form-contact{
    background-color: var(--White-Color);
    box-shadow: var(--Shadow);
    border-radius: 10px;
    padding: 20px;
}
form label{
    width: 100%;
    display: block;
}
form input,
form textarea,
form select{
    outline: none;
    border-radius: 4px;
    border: 1px solid var(--Border-Color);
    padding: 8px 10px;
    resize: none;
    appearance: none;
    color: var(--Black-Color);
    width: 100%;
    transition: var(--Transition);
}

form input:focus,
form textarea:focus,
form select:focus{
    border-color: var(--Primary-Color);
}
form select{
    cursor: pointer;
    padding-right: 38px;
}
form input::placeholder,
form textarea::placeholder{
    color: var(--Black-Color);
}

footer{
    background-color: var(--Primary-Color);
    padding: var(--space-60) 0px 22px 0px;
}
footer .logo{
    max-width: 162px;
    background-color: var(--White-Color);
    padding: 16px 16px;
    border-radius: 10px;
    overflow: hidden;
}
footer .logo a ,
footer .logo a img{
    width: 100%;
    max-height: 100px;
    object-fit: contain;
}
footer .copyright{
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--Border-Color);
}
footer .copyright .small-text{
    color: var(--White-Color);
}
footer .copyright .small-text a{
    text-decoration: underline;
    transition: var(--Transition);
}
footer .copyright .small-text a:hover{
    color: var(--Secondary-Color);
}
footer .content .small-text{
    color: var(--White-Color);
}
footer .content .follow-icons{
    gap: 12px;
}
footer .content .follow-icons a{
    color: var(--Primary-Color);
    background-color: var(--Background-Color);
    min-width: 36px;
    height: 36px;
    width: 36px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    transition: var(--Transition);
}
footer .content .follow-icons a:hover{
    background-color: var(--Secondary-Color);
}
footer .content .button-text{
    color: var(--White-Color);
    margin-bottom: 16px;
}
footer .content ul{
    display: flex;
    justify-content: start;
    gap: 8px;
    flex-direction: column;
}
footer .content ul li a{
    color: var(--White-Color);
    transition: var(--Transition);
}
footer .content ul li a:hover{
    color: var(--Secondary-Color);
}
footer .content .stars{
    width: 100%;
    max-width: 153px;
    margin-bottom: 4px;
}
footer .content .stars img{
    width: 100%;
}
footer .content .certification{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: start;
    margin-top: 16px;
}
footer .content .certification img{
    width: 100%;
    max-width: 78px;
    height: 78px;
    object-fit: contain;
}
footer .content .expertise{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
footer .content .expertise .icon{
    background-color: var(--White-Color);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 8px;
}
footer .content .expertise .icon img{
    max-height: 52px;
    max-width: 52px;
    height: 100%;
    width: 100%;
}
/* Inner Pages */
.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--White-Color);
    opacity: 0.8;
    transition: var(--Transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 6px;
    color: var(--White-Color);
}

.breadcrumb .active {
    font-weight: 600;
    opacity: 1;
    margin: 0px;
}
.inner-hero-section{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0px;
    min-height: 320px;
    position: relative;
    display: flex;
    align-items: center;
}
.inner-hero-section::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: var(--Black-Color);
}
.inner-hero-section .container{
    position: relative;
}
.inner-hero-section h1{
    color: var(--White-Color);
}
.py-60{
    padding: var(--space-60) 0px;
}
.bg-color{
    background-color: var(--Background-Color);
}
.our-teams .five-box{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
@media (max-width: 1199px) {
    .our-teams .five-box{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }   
}
@media (max-width: 991px) {
    .our-teams .five-box{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }   
}
@media (max-width: 767px) {
    .our-teams .five-box{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }   
}
.recent-work.bg-color::before{
    display: none;
}
.recent-work a.button_1{
    background-color: transparent;
    color: var(--White-Color);
    border-color: var(--White-Color);
}
.recent-work a.button_1:hover{
    background-color: var(--White-Color);
    color: var(--Primary-Color);
}
.enquiry-form{
    box-shadow: var(--Shadow);
    padding: 20px;
    border-radius: 10px;
    background-color: var(--White-Color);
    position: sticky;
    top: 150px;
}
.enquiry-form .button-text{
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--Border-Color);
}
.case-study-details h3{
    color: var(--Primary-Color);
}

.case-study-details .highlight-box{
    background-color: var(--White-Color);
    border-radius: 10px;
    overflow: hidden;
}
.case-study-details .highlight-box .section-title{
    background-color: var(--Primary-Color);
    color: var(--White-Color);
    padding: 10px 20px;
}
.case-study-details .highlight-box ul{
    list-style: disc;
    padding-left: 20px;
}
.case-study-details .case-stady-name p strong{
    color: var(--Primary-Color);
    font-weight: 600;
}
.case-study-details .content img{
    max-width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
}
form.wpcf7-form br {
    display: none;
}
.form-control, .form-select {
    outline: none;
    border-radius: 4px;
    border: 1px solid var(--Border-Color);
    padding: 8px 10px;
    resize: none;
    appearance: none;
    color: var(--Black-Color);
    width: 100%;
    transition: var(--Transition);
}
.form-control:focus, .form-select:focus{
    box-shadow: none !important;
    border: 1px solid var(--Primary-Color) !important;
}
