
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600;700&display=swap');

/* ============VARIABLE CSS =============== */

:root {
    --header-height: 3.5rem;

    /* ============COLORS =============== */
    /* Color mode HSL (Hue, Saturation, Lightness)  */
    --white-color: hsl(0, 0%, 100%);
    --black-color: hsl(0, 0%, 0%);

    /* ===========font and typography =============== */
    --body-font: "Montserrat Alternates", sans-serif;
    --biggest-font-size: 2rem;
    --big-font-size: 1.5rem;
    --h3-font-size: 1rem;
    --normal-font-size: 0.938rem;

    /* ============FONT WEIGHT =============== */
    --font-regular: 400;
    --font-semi-bold: 600;
    --font-bold: 700;

    /* ============Z INDEX =============== */
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* ============RESPONSIVE TYPOGRAPHY =============== */

@media screen and (min-width: 1150px) {
    :root {
        --biggest-font-size: 4rem;
        --big-font-size: 3rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
    }
}

/* ==================BASE=================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font) !important;
    font-size: var(--normal-font-size) !important;
    background-color: var(--black-color) !important;
    color: var(--white-color) !important;
}

ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

.button {
    background-color: var(--white-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: var(--font-semi-bold);
    color: var(--black-color);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.button i {
    font-size: 1.5rem;
    font-weight: initial;
    transition: transform 0.4s;
}

/* ==================REUSABLE CLASSES=================== */

.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
    padding: 2rem 20px;
    ;
}

.main {
    overflow: hidden;
}

/* ==================HEADER & NAV=================== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: var(--z-fixed);
    display: flex;
    justify-content: center;
}

.nav {
    width: 100% !important;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav__logo {
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    font-size: 2rem;
}

.nav__toggle,
.nav__close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white-color);
}

/* ===========Navigation for mobile devices===================*/

@media screen and (max-width: 1150px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: hsla(0, 0%, 100%, 0.1);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        width: 80%;
        height: 100%;
        padding: 6rem 3rem 0;
        transition: right 0.4s;
    }
}

.nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.nav__link a {
    color: #fff !important;
    font-weight: var(--font-semi-bold);
}

.nav__link:hover {
    text-decoration: underline;
}

.nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

/* SHOW MENU */
.show-menu {
    right: 0;
}

/* ====================HOME=================== */
.home__swiper {
    position: relative;
    z-index: var(--z-tooltip);
}

.home__article {
    position: relative !important;
    padding-top: 13rem !important;
    width: 100% !important;
    min-height: 100vh !important;
}

.home__image,
.home__shadow,
.home__content {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home__image {
    object-fit: cover;
    z-index: -1;
    object-position: center;
}

.home__shadow {
    background-color: hsla(0, 0%, 0%, 0.4);
    z-index: -1;
}

.home__data {
    text-align: center;
}

.home__subtitle {
    font-size: var(--h3-font-size);
    margin-bottom: 0.5rem;
}

.home__title {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-bold);
    margin-bottom: 2.5rem;
}

.home__button {
    color: var(--white-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
    font-weight: var(--font-semi-bold);
}

.home__button i {
    font-size: 1.5rem;
    font-weight: initial;
    transition: trasform 0.4s;
}

.home__button i:hover {
    transform: translateX(0.5rem);
}

.home__social {
    position: absolute;
    z-index: var(--z-tooltip);
    left: 1.5rem;
    bottom: 4rem;
    display: grid;
    row-gap: 1.5rem;
}

.home_social_link {
    color: var(--white-color);
    font-size: 1.5rem;
}

/* ========================ABOUT AREA==================== */

.about {
    background-color: var(--white-color);
    padding: 2rem 0;
}

.about__container {
    row-gap: 15rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.about__image {
    width: 100%;
    position: relative;
    display: grid;
    justify-items: center;
}



.about_area_image {
    width: 80% !important;
    position: absolute;
    opacity: .4;
    border-radius: 1rem;
}

.about_area_image::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(16px);
}

.about__video {
    top: 5rem;
    z-index: 11;
    position: relative;
    width: 85%;
    left: -2rem;
    border-radius: 1rem;
}

.about__data {
    position: relative;
    text-align: center;
    padding-top: 5rem;
}

.about__data .section__title {
    margin-bottom: 1rem;
    color: hsl(0, 0%, 0%)
}

.bigger__text {
    font-size: 2.5rem;
    opacity: 0.2;
    letter-spacing: 1.5rem;
    font-weight: 800;
    color: hsl(0, 0%, 0%);
    text-align: center;
}

.about__description {
    margin-bottom: 2rem;
    color: hsla(0, 0%, 9%, 0.644)
}

.about__btn {
    margin-bottom: 2rem;
    background: hsla(0, 0%, 0%, 0.7);
    color: var(--white-color);
}

/* ========================PHILOSOPHY AREA==================== */


.philosophy__section {
    position: relative;

}

.philosophy__container {
    padding: 2rem 0;
    row-gap: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

.philosophy__big {
    font-size: 2.5rem;
    letter-spacing: .5rem;
    font-weight: 800;
    color: hsl(0, 0%, 100%)
}


.philosophy__cards {
    position: relative;
    text-align: center;
    display: grid;
    row-gap: 2rem;
}

.philosophy__cards .card__title,
.card__description,
.number__box {
    margin-bottom: 1rem;
}

.philosphy__card {
    border: 1px solid hsla(0, 0%, 100%, 0.8);
    row-gap: 1rem;
    display: flex;
    padding: 2rem 1rem;
    position: relative;
    height: 20rem;
}

.card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.number__box {
    position: absolute;
    border: 1px solid hsla(0, 0%, 100%, 0.8);
    font-size: 2rem;
    padding: 1rem;
    bottom: 1rem;
    left: -1rem;
    background-color: var(--black-color);
}

.philosophy__cards .card__title {
    font-size: 2.5rem;
}

.philosophy__cards .card__description {
    font-size: var(--h3-font-size);
}

/*  ======================GALLERY SECTION==================== */

.gallery__section {
    position: relative;
    padding: 2rem 0;
}

.gallery__container {
    padding: 2rem 0;
    row-gap: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

.gallery__big{
    color: hsl(0, 0%, 95%);
    font-size: 2.5rem;
}

.gallery__images{
  display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.filter__buttons .filter__button{
    background-color: hsla(0, 0%, 100%, 0.1);
    color: var(--white-color);
    padding: .5rem .6rem;
    border-radius: .5rem;
    font-size: var(--h3-font-size);
    border: none;
        cursor: pointer;
}
.filter__buttons{
    display: flex;
        flex-wrap: wrap;
        gap: .5rem;
}

.gallery__image{
    flex-grow: 1;
    flex-basis: 300px;
}

.gallery__image img{
    width: 100%;
    height: 300px;
        object-fit: cover;
}


.gallery__data{
    text-align: center;
}

.filter__gallery{
    display: flex;
    flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;

}

.filter__button.active{
    color:yellow
}

/* TESTIMONIAL  */

.testimonial {
    background: grey;
        padding: 5rem 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
}

.testimonial-title {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    /* Light gray text */
    text-transform: uppercase;
}

.testimonial__wrapper {
width: 80%;
    align-self: center;
    display: grid;
    justify-items: center;
    padding: 0;
    background-color: black;
    border-radius: 10px;
}

.testimonial-box {
    color: white;
    padding: 2rem;
    border-radius: 10px;
    position: relative !important;
    padding-top: 13rem !important;
    width: 100% !important;
    min-height: 100vh !important;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1.5rem;
}
.testimonial-nav i {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.testimonial-nav img{
    width: 3rem;
}
.profile-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

/* Footer Styling */

.footer {
    width: 100%;
    background-color: black;
    color: white;
    padding: 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

/* About Section */
.footer-section {
    flex: 1;
    margin: 1rem;
    text-align: center;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

.social-icons {
    margin-top: 10px;
}

.social-icons i {
    font-size: 1.2rem;
    margin-right: 10px;
    cursor: pointer;
}

/* Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ccc;
    padding: 1rem;
    font-size: 0.9rem;
    color: black;
}

.footer-bottom strong {
    font-weight: 600;
}












/* ==========shadow header================= */
.shadow-header {
    box-shadow: 0 4px 10px hsla(353, 100%, 8%, 0.1);
    background: #16161626;
    backdrop-filter: blur(16px);
}




/* ======================SWIPER CLASS=================== */
.swiper {
    height: 100vh;
}

.swiper-pagination {
    width: initial !important;
    height: max-content;
    top: 6rem !important;
    left: initial !important;
    right: 4rem !important;
    font-size: var(--big-font-size);
    font-weight: var(--font-semi-bold);
    display: flex;
    column-gap: .25rem;
    align-items: center;
}

.swiper-pagination-total {
    font-size: var(--normal-font-size);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '' !important;
}

.swiper-button-prev,
.swiper-button-next {
    font-size: 2rem;
    color: var(--white-color) !important;
    width: initial !important;
    height: initial !important;
    position: initial !important;
    outline: none;
}

.swiper__navigation {
    position: absolute;
    z-index: var(--z-tooltip);
    height: max-content;
    bottom: 4rem;
    right: 1.5rem;
    display: flex;
    column-gap: 2.5rem;
}



/* =============TEST SLIDER */
.testimonial__section {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;

}

.testimonial__section h2 {
    text-align: center;
    font-size: clamp(2rem, 8vw, 6rem);
    color: var(--white-color);
    margin-bottom: 70px;
}

.slide-row {
    display: flex;
    width: 3200px;
    transition: 0.5s;
}

.slide-col {
    position: relative;
    width: 100%;
    height: 400px;
}

.hero {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.hero img {
    height: 100%;
    border-radius: 10px;
    width: 320px;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.content {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 750px;
    height: 270px;
    color: #4d4352;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border-radius: 10px;
    padding: 45px;
    z-index: 2;
    user-select: none;
}

.content p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}

.content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 35px;
    color: #4d4352;
}

.indicator {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.indicator .btn {
    display: inline-block;
    height: 15px;
    width: 15px;
    margin: 4px;
    border-radius: 15px;
    background: #fff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.btn.active {
    width: 30px;
}

.testimonial__slider {
    width: 80%;
    overflow: hidden;
}

.logo {
    position: fixed;
    right: -20px;
    bottom: -30px;
    z-index: 10;
}

.logo img {
    width: 120px;
}

@media (max-width: 890px) {
    .logo {
        right: -10px;
        bottom: -20px;
    }

    .logo img {
        width: 80px;
    }
}

@media (max-width: 850px) {
    main {
        width: 500px;
    }

    .slide-row {
        width: 2000px;
    }

    .slide-col {
        width: 500px;
        height: 250px;
    }

    .hero img {
        width: 200px;
    }

    .content {
        width: 320px;
        height: 200px;
        padding: 20px;
    }

    .content p {
        font-size: 0.9rem;
    }

    .content h2 {
        font-size: 1.2rem;
        margin-top: 20px;
    }
}@media (max-width: 550px) {
    main {
        width: 300px;
    }

    .slide-row {
        width: 1200px;
    }

    .slide-col {
        width: 500px;
        height: 300px;
    }

    .hero {
        top: 60%;
        height: 100px;
        z-index: 5;
    }

    .hero img {
        width: 100px;
    }

    .content {
        width: 300px;
    }
}


/* ===========About Page================== */

.breadcrumb__section{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
    height: 80vh;
    background-image: url(/assets/images/breadcrumb-bg.webp);
    background-repeat: no-repeat;
    background-position:  center;
    background-size: cover;
}

.breadcrumb__shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background-color: hsla(0, 0%, 0%, 0.4);
    z-index: 1;
}

.breadcrumb{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.breadcrumb__title{
    font-size: 4rem;
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
    text-transform: uppercase;

}
.who-we-are{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
   
    flex-direction: column;
}
.about__content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 3rem 2rem;
    flex-direction: row;
}
.who-we-are .left__area{
    width: 40%;
}

.who-we-are .right__area {
    width: 60%;
}

.who-we-are .left__area h4{
    font-size: 3rem;
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
    text-align: center;
}

.video__place{
    width: 80%;
    height: 30rem;
    position: relative;
    
}

.video__place img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.video__place i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.4s;   
        border-radius: 50%;
            background: #fdfdfd12;
            backdrop-filter: blur(15px);
            padding: .3rem;
}

.counter__area{
    /* display: flex; */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 3rem 2rem;
    flex-direction: row;
    background: url(/assets/images/about-bg-02.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5rem;

}

.counter__content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    padding: 3rem 2rem;
    flex-direction: row;
}
.counter__item{
    text-align: center;
        gap: 1rem;
        display: flex;
        flex-direction: column;
        font-size: 1.5rem;
}
.counter__item h4{
    font-size: 3rem;
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
}

/* ===============Vision section================== */

.vision__container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
}

.vision__image img{
    width:500px;
    height:500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 10px hsla(353, 100%, 8%, 0.1);
}

.vision__content h2{
  font-size: 3rem;
margin-bottom: 2rem;
align-self: flex-start;
}

.vision__description{
    font-size: 1.3rem;
    line-height: 1.6;
}


/* ===============TEAM SECTION====================  */

.team__section{
   padding: 3rem 2rem;
}
.team__title h2{

    font-weight: 800;
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: .5rem;
}
  
 .team__cards{
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 2rem;
 }

.team__content{
    position: absolute;
        right: auto;
        bottom: 0rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #00000082;
        backdrop-filter: blur(10px);
        height: 6rem;
        width: -webkit-fill-available;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
}
.team__member{
    position: relative;
        border-radius: 1rem;
            overflow: hidden;
}

.team__member:hover .team__content{
opacity: 1;
    pointer-events: auto;
}

.team__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 10px hsla(353, 100%, 8%, 0.1);
}


/* ===============FORM SECTION==================== */

.contact__section{
    padding: 3rem 2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
.contact__container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
    flex-direction: row;
}

.contact__form,.contact__content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 3rem 2rem;
    flex-direction: column;
    flex-grow: 2;
    width: 50%;
}
.contact__form{
    align-items: end;
}
.contact__form input,textarea,button{
        padding: 0.8rem 1rem;
            border-radius: .7rem;
            outline: none;
            border: none;
            background: #ffffff;
            font-family: sans-serif;
}
.contact__form input,
textarea{
    width:90%;
        font-size: .8rem;
}

.contact__form button{
    width: inline;
    color: var(--black-color);
    width: 30%!important;
        font-size: 1.2rem;
}

.contact__form input::placeholder,
textarea::placeholder{
    color: var(--black-color);
    font-size: 1.2rem;
}




/* ================TESTIMONIAL===================== */






/* =====================SERVICE PAGE===================== */

.offer__container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
}

.offer__image img {
    width: auto;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 10px hsla(353, 100%, 8%, 0.1);
}

.offer__content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    align-self: flex-start;
}

.offer__description {
    font-size: 1.3rem;
    line-height: 1.6;
}
.offer__list{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    flex-direction: column;
}
.offer__item{
    display: inline-flex;
    gap: .51rem;
    font-size: 1.3rem;
}

.offer__content{
    width: 50%;
}

.offer__image{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ---------------SCOPE OF WORK------------- */
.scope__section,.scope__area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white-color);
    overflow: hidden;

}
.scope__area{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 3rem;
    margin: 5rem 0;
    position: relative;
    z-index: 2;
    padding-left: 8rem;
    overflow: visible;
}
.scope__area img{
        position: absolute;
        top: -50px;
        left: -40%;
        z-index: 0;
        width: 180%;
        height: 100%;
        object-fit: cover;
    }

.scope__item{
    display: flex;
    flex-direction: column;
    width:50%;
    z-index: 2;
    
}
.scope__title{
    text-align: center;
        color: var(--black-color);
    letter-spacing: 0.3rem;
    font-size: 4rem!important;
    opacity: 0.8!important;

}
.scope__item h2{
    font-size: 2rem;
    color: var(--black-color);
    font-weight: var(--font-semi-bold);
}
.scope__item ul{
    list-style-type: disc;
    margin:1.5rem 0;

  
}

.scope__item ul li{
    font-size: 1rem;
    color: var(--black-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}







/* ====================BREAKPOINTS=================== */

/* Mobile screen */

@media screen and (max-width: 768px) {
    .nav__menu {
        width: 100% !important;
    }

    .nav__list {
        flex-direction: column !important;
        row-gap: 2rem !important;
    }

    .home__data {
        width: 100% !important;
        padding: 0 1.5rem !important;
    }

    .home__content {
        left: 0 !important;
        right: 0 !important;
        max-width: initial !important;
    }

    .home__social {
        left: 1.5rem !important;
    }


    .home__image {
        object-fit: cover;
        object-position: center;
    }

    .swiper-pagination {
        top: 5rem !important;
        right: 1.5rem !important;
    }

    .swiper-navigation {
        right: 1.5rem !important;
    }

    .about__image {
        width: 60%;
        align-self: center;
    }

    .about__video {
        width: 100%;
        left: 0;
    }

    .philosophy__cards{
        display: grid;
        column-gap: 2rem;
    }


    .philosophy__cards .card__title {
        font-size: 2rem;
    }

    .philosophy__cards .card__description {
        font-size: var(--h3-font-size);
    }

    .testimonial-box {
        width: 90%;
        margin-inline: auto;
    }

    .testimonial-nav {
        justify-content: center;
    }

    .testimonial-nav i {
        margin-right: 1rem;
    }

    .footer-section{
        min-width: 250px;
    }
}

/* for medium devices */

@media screen and (min-width:768px) and (max-width: 1150px) {
    .nav__menu {
        width: 50% !important;
    }
    .philosophy__cards{
        width: 60%;
            align-self: center;
    }
    .card__image{
        object-fit: cover;
    }

        .about__image{
        width: 40%;
        align-self: center;
        }
        .testimonial-box {
            width: 80%;
        }
}

/* For large devices */

@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto !important;

    }

    .nav {
        height: calc(var(--header-height, 3.5rem) + 2rem) !important;
    }

    .nav__toggle,
    .nav__close {
        display: none !important;
    }

    .nav__menu {
        width: initial !important;
    }

    .nav__list {
        flex-direction: row !important;
        column-gap: 4rem !important;
    }

    .home__data {
        width: initial !important;
    }

    .home__subtitle {
        margin-bottom: 1rem !important;
    }

    .home__title {
        margin-bottom: 4.5rem !important;
    }

    .home__content {
        max-width: 1120px !important;
        margin-inline: auto;
        left: 0;
        right: 0;
    }

    .home__social {
        left: 0;
    }

    .swiper-pagination {
        top: 10rem !important;
    }

    .swiper-pagination-total {
        font-size: 1.5rem;
    }

    .swiper-navigation {
        right: 0;
        column-gap: 3.5rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        font-size: 3rem;
    }
}


/* //===================ABOUT AREA===================// */

@media screen and (min-width: 1150px) {
    .about__image {
        width: 100%;
        position: relative;
        width: 50%;
    }

    .about_area_image {
        width: 80% !important;
        position: absolute;
        opacity: .4;
        border-radius: 1rem;
    }

    .about__video {
        top: 5rem;
        z-index: 11;
        position: relative;
        height: 100%;
        padding-bottom: 13rem;
        width: 70%;
        left: -4rem;
    }

    .about__container{
        display: flex;
        flex-direction: row;
        padding-bottom: 6rem;
    }

    .bigger__text{
        font-size: 6rem;
    }
h2{
    font-size: 2.5rem;
}
    .philosophy__cards{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 2rem;
    }

        .testimonial-box {
            width: 75%;
        }

        .number__box{
            left: 0;
            bottom: 0;
            margin-bottom: 0;
        }
}