@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: 'Headline';
    src: url('../fonts/ThroneguardDisplayRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


:root {
    --color-white: #ffffff;
    --color-black: #000000;

    --color-primary: #ff1d3d;
    --color-secondary: #333333;

    --color-secondary-rgb: 51 51 51;

    /* --color-tertiary: #111111;
    --color-quaternary: #777777;
    --color-quinary: #999999;
    --color-senary: #444444; */

    --font-poppins: 'Poppins', sans-serif;
    --font-forum: 'Forum', sans-serif;

    --font-size-xxs: 10px;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-xxl: 24px;

    --heading-font: 'Headline', sans-serif;

    --secondry-font: 'Montserrat', sans-serif;
    --third-font: 'Montserrat', sans-serif;
}


body {
    box-sizing: border-box;
    /* background: var(--white); */
    font-family: var(--font-poppins);

    color: var(--color-secondary);
}

/* SCROLL BAR */
::-webkit-scrollbar {
    width: 8px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background: #000000;
    /* Color of the scroll thumb */
    border-radius: 6px;
    /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Color when hovering over the thumb */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background color of the track */
}

/* ESSENTIALS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: bold;
    color: var(--color-secondary);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--heading-font);
    font-weight: bold;
}



.clear::after {
    display: none;
}

.clear::before {
    display: none;
}

.clear-fix {
    display: block;
}

.clear-fix::before {
    content: "";
    position: absolute;
}

.clear-fix::after {
    content: "";
    position: absolute;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    z-index: 9;
}

.prelative {
    position: relative;
    width: 100%;
    height: 100%;
}

.sticky-top {
    position: sticky !important;
}

.object-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.object-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.just-center-it {
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-left-wrap {
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding: 10px 0;
}


.sec-title {
    font-weight: bolder;
    font-size: 65px;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
    position: relative;
    display: inline-block;
}

.title-container {
    text-align: center;
}

.cta-btn {
    position: relative;
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);

    transition: all 2.5s ease;
}

.cta-btn:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}


/* HEADER STYLES */

.header-container {
    position: relative;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

    transition: all 0.4s ease-in-out;
}

.header-container.sticky-top {
    position: sticky;
    top: 0;
    transition: all 400ms ease;

    box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.52);
    z-index: 9999999999;
    /* -webkit-box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.52);
    -moz-box-shadow: 3px 3px 5px 1px rgba(0, 0, 0, 0.52); */
}

/* .header-container.sticky-top .header-wrapper .brand-container .logo{
    position: relative;
    width: auto;
    height: 55px;
    transition: all 400ms ease;

} */

.header-container .header-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;

    background: var(--color-white);
}

.header-wrapper .head {

    position: sticky;
    width: 100%;
    height: auto;
    /* padding: 0 20px; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;

    background: var(--color-white);

}

.header-container .header-wrapper .brand-container .logo {
    position: relative;
    /* width: 100%; */
    width: auto;
    height: 100px;
}

.header-container .header-wrapper .flex-wrapper {
    padding: 2px;
}

.header-container .header-wrapper .nav-container {
    position: relative;
}

.nav-container>nav {
    position: relative;
    width: 100%;
    height: auto;
}

.nav-container .nav-list {
    position: relative;
    width: 100%;
    list-style: none;
    margin: 0;
}

.nav-container .nav-list .nav-item {
    position: relative;
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 0 10px;

    font-family: var(--secondry-font);
    font-weight: bolder;
}

.nav-container .nav-list .nav-item .nav-link {
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 2px;
    text-decoration: none;
    white-space: nowrap;
    color: var(--color-secondary);
    font-size: 13px;
}

.nav-container .nav-list .nav-item:hover .nav-link {
    color: var(--color-primary);
    text-decoration: none;
    text-align: left;
    position: relative;
    background-color: transparent;
    top: 0;
    left: 0;


}

.nav-container .nav-list .nav-item:hover .nav-link.a:hover {
    background-color: rgba(128, 128, 128, 0.411);

    &:hover {
        left: 8px;

    }
}

/* MAIN SLIDER (HERO) */

.main-slider {
    position: relative;

}

.main-slider .main-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;

    background-color: #333333;
}


/* Play/Pause Button */
.play-pause {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* Control Bar */
.control-bar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}



@keyframes progress {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

/* Play/Pause Button */
.play-pause {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 20px;
    transition: background 0.3s ease;
}

.play-pause:hover {
    background: rgba(255, 255, 255, 1);
}

.play-pause span {
    font-size: 12px;
    color: #000;
}

/* ------------------------------------------------------------------- */

/* ABOUT US SECTION */

.about-us .inner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;

    padding: 40px 15px;
}

.about-us .inner-wrapper .about-slider {
    position: relative;
    width: 100%;
    height: 325px;

    border-radius: 25px;
    overflow: hidden;
}

.about-us .inner-wrapper .about-slider.swiper {
    height: 100%;
    width: 100%;
}

.about-us .inner-wrapper .col-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 5px;

    overflow: hidden;
}

#about-slider .swiper-slide {
    position: relative;
    width: 100% !important;
    height: 100% !important;
}

#about-slider .about-swiper-pagination {
    position: absolute;
    bottom: 25px;
    z-index: 9999;
    left: 30px;
    font-size: 25px;
    width: auto;
    padding: 5px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    background: rgb(235 235 235 / 49%);
    margin-bottom: 65px;
}

#about-slider .about-swiper-pagination .swiper-pagination-bullet {
    background: var(--color-secondary);
    width: 20px;
    height: 20px;
    color: black;
    opacity: 0.7;
    transition: all 0.5s ease-in-out;
}

#about-slider .about-swiper-pagination .swiper-pagination-bullet-active {
    /* background: var(--color-secondary); */
    background: rgb(var(--color-secondary-rgb) / 49%);
    opacity: 1;
    width: 60px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

/* Animated fill effect */
#about-slider .about-swiper-pagination .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-primary);
    animation: fillProgress 5s linear forwards;
    opacity: 1;
    z-index: 999999999;
    /* Match Swiper autoplay delay */
    /* border-radius: 15px; */
}

@keyframes fillProgress {
    from {
        width: 0%;
        border-radius: 50%;
    }

    to {
        width: 100%;
        border-radius: 15px;
    }
}

.about-video-holder .wrapper-class {
    position: relative;
    width: 100%;
    height: 100%;

    /* padding: 20px 15px; */


}

.about-video-holder .wrapper-class .video-container {
    position: relative;
    width: 30%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 25px;
    overflow: hidden;
}

.about-video-holder .wrapper-class .video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(56, 56, 56, 0.3);
    z-index: 1;
}

.play-container h4 {
    transition: all 0.3s ease-in-out;
    color: var(--color-white) !important;
    font-weight: bolder;
}

.z-index {
    z-index: 999999 !important;
    position: relative;
}

.play-btn {

    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;

    font-size: 32px;

}

.play-container {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* OUR CARS */

.our-cars .inner-wrapper {
    position: relative;
    width: 100%;
    /* height: auto; */
    padding: 40px 15px;
}

.our-cars .gmt-car-card {
    width: 300px;
    /* height: 400px; */
    height: 320px;

    overflow: hidden;
    border-radius: 25px;
    padding: 20px;
    background: burlywood;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    cursor: grab;
}

.gmt-car-card .card-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.submenu {
    padding: 0px;
    overflow: hidden;
}

.gmt-car-card:hover .image-container {
    /* right: 20%; */
    transform: translateX(-65px);
}

.gmt-car-card .content-container {
    text-align: left;
    color: #000;
}

.gmt-car-card .content-container h4 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
}

.gmt-car-card .content-container p {
    font-size: 0.95rem;
    margin-top: 5px;
    color: #333;
}

.gmt-car-card .image-container {

    width: 350px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    transition: all 0.5s ease-in-out;
}

.gmt-car-card .car-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.our-cars .cars {
    position: absolute;
    top: unset;
    bottom: 10%;
    z-index: 999999999;
    width: 50px;
    height: 50px;
    font-size: 25px;
    color: var(--color-white);
    background: var(--color-black);
    border-radius: 50%;
    left: 11%;

    transition: all 0.5s ease-in-out;
}

.our-cars .cars::after {
    font-size: inherit;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.our-cars .cars.swiper-button-next {
    left: 16%;
}

.our-cars .cars.swiper-button-prev::after {
    content: "\f0d9";
}

.our-cars .cars.swiper-button-next::after {
    content: "\f0da";
}


/* OUR EXP */
.our-exp .inner-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 15px;
}

.rounded-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 25px;
    overflow: hidden;
}

.bg.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.fg.content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.fg.content-container .simple-para {
    font-size: 14px;
    width: 60%;
    /* line-height: 22px; */

    padding: 15px;

    padding-left: 0;
    text-align: justify;

    height: auto;
    margin-bottom: 15%;
}

.br-1 {
    border-right: 1px solid var(--color-white);
}

.content-inner-wrapper {
    color: var(--color-white) !important;
}

.exp-card h3 {
    font-size: 40px;
    font-weight: bolder;
    letter-spacing: 2px;
    text-align: center;
    color: var(--color-white) !important;
}

/* .bg.image-container img {
    position: fixed;
} */

.bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 59, 59, 0.5);
    z-index: 1;
}

.our-exp .content-wrapper {
    height: 80dvh;
}


/*  */
/* Media Query for Responsive Design */
@media (max-width: 768px) {
    .testimonial .testi-btn {
        
        bottom: 23% !important;
    }

    .sec {
        width: 100%;
        overflow: hidden;
    }

    .row-vertical a {
        text-decoration: none;
        color: #2c3e50;
        font-size: 12px;
    }

    .brand-name {
        display: none !important;
    }

    .nav-container {
        display: none !important;
    }

    .about-video-holder .wrapper-class .video-container {
        width: 70%;
    }

    .our-cars .cars.swiper-button-next {
        left: 25%;
    }

    .content-holder {
        height: 100%;
        width: 100%;
    }

    .content-inner-wrapper.prelative.p-5 {
        padding: 10px !important;
    }

    .fg.content-container .simple-para {
        width: 100%;
        /* height: 190px; */
        font-size: 12px;
        margin-bottom: 5%;
    }

    .exp-card h3 {
        font-size: 22px;
    }

    .parallax-section-1 .inner-wrapper {
        height: 100% !important;
    }

    .testimonial .testi-btn {
        left: unset !important;
    }

    .testimonial .testi-btn.swiper-button-prev {
        left: 2% !important;
    }

    .testimonial .testi-btn.swiper-button-next {
        right: 2%;
    }

    .simple-parag ul li {
        font-size: 12px !important;
    }

    .fg.content-container .simple-parag {
        width: 100% !important;
    }

    /* .vision .vision-img img {
        height: 240px !important;
        display: flex !important;

    }

    .fremework .vision-img img {
        height: 150px !important;
        display: flex !important;
        border-radius: 20px !important;

    }

    .mission .vision-img img {
        height: 230px !important;
        display: flex !important;

    } */

    .highlight-item {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .highlight-icon {
        margin-bottom: 0.5rem;
    }

    .vision .vision-cnt {
        padding-top: 1px !important;
    }

    .mission .vision-cnt {
        padding-top: 1px !important;
    }

    .about-head .about-head-cnt {
        text-align: justify !important;
        font-size: 15px !important;
    }






}

/* TESTIMONIAL */

.testimonial .inner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 20px;

    color: var(--color-white) !important;
    background: var(--color-primary);

    overflow: hidden;
}

.testimonial .inner-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/patterns/pattern-1.png') repeat;
    z-index: 1;

    opacity: 0.6;
    backdrop-filter: blur(10px);
}

.testimonial .section-title h2 {
    color: var(--color-white) !important;

    letter-spacing: 2px;
}

.section-title p {
    margin: 0;
    font-weight: bolder;
    font-size: 22px;
}

.testimonial .col-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    flex-direction: column;
    padding: 5px;
}

.testimonial .rounded-container {
    background: var(--color-white);
}

.testimonial .rounded-container p {
    color: var(--color-secondary) !important;
}

.testimonial .the-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonial .the-bg .abs {
    position: absolute;
    height: 220px;
    width: 220px;
    z-index: 1;
    opacity: 0.2;
}

.scrible-1 {
    top: 0%;
    left: 20%;
    height: 350px !important;
    width: 350px !important;
    animation: float 6s ease-in-out infinite;
}

.scrible-2 {
    bottom: 0%;
    right: 20%;
    animation: float 7s ease-in-out infinite reverse;
}

.scrible-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateScribble 10s linear infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotateScribble {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.testimonial .testi-card {
    position: relative;
    z-index: 999999;

    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testi-card .card-wrapper {
    background: transparent;
    overflow: hidden;
    width: 400px;
    height: auto;
}

.testimonial .testi-card .card-wrapper .card-upper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

.testimonial .testi-card .card-wrapper .card-upper .image-container {
    position: relative;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;

    border: 5px solid var(--color-white);
}

.testimonial .testi-card .card-wrapper .card-bottom {

    top: 75%;
    /* position: absolute; */
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background: var(--color-white);
    border-radius: 15px;

    overflow: hidden;
    padding: 10px;
}

.testimonial .testi-card .card-wrapper .card-bottom .wrapper {
    color: var(--color-secondary) !important;
    padding: 12px;
    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonial .name {
    font-size: 20px;
    font-weight: bolder;
    color: var(--color-secondary) !important;
    text-align: center;
    margin-bottom: 2px;
}

.testimonial .review {
    text-align: justify;
    margin-bottom: 2px;
}

.testimonial .testi-btn {
    position: absolute;
    top: unset;
    bottom: 10%;
    z-index: 99999999;
    width: 50px;
    height: 50px;
    font-size: 25px;
    color: var(--color-white);
    background: var(--color-black);
    border-radius: 50%;
    left: 11%;
    transition: all 0.5s ease-in-out;
}


.testimonial .testi-btn::after {
    font-size: inherit;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.testimonial .testi-btn.swiper-button-next {
    left: 16%;
}

.testimonial .testi-btn.swiper-button-prev::after {
    content: "\f0d9";
}

.testimonial .testi-btn.swiper-button-next::after {
    content: "\f0da";
}

/* BRANDS */
.brands .inner-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 15px;
}

.brands .image-container {
    position: relative;
    width: 100%;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-white);
    border: 2px solid var(--color-secondary);
    padding: 5px;
    border-radius: 15px;
}


.footer a {
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.5s ease-in-out;
}

.footer a:hover {
    text-decoration: underline;
}

/* PARALLAX SECTION */
.parallax-section-1 .inner-wrapper {
    position: relative;
    width: 100%;
    height: 100dvh;
    /* padding: 0 15px; */
    overflow: hidden;
}

.para-card {
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
}

.para-card .card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    padding: 10px;

    border-radius: 20px;
    backdrop-filter: blur(20px);

    background: rgba(255, 255, 255, 0.5);
}

.para-card .card-wrapper .content {

    position: relative;
    font-size: 28px;
    line-height: 1.8rem;
    margin-left: 25px;
    font-weight: bolder;

}

.para-card .card-wrapper .icon {
    color: var(--color-primary);
    font-size: 70px;
    position: relative;
    margin-right: 10px;
    margin-left: 15px;
}


/* CARS SEC II */

.cars-sec {
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 0px;
}

.single-car-bg {
    min-height: 320px;
    height: 100%;
    padding: 40px;

    overflow: hidden;
}

section.cars-sec .col-md-4 {
    padding: 0px;
}

.single-car-bg.bgclr-1 {
    background-image: url(../images/patterns/bg/1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.single-car-bg.bgclr-2 {
    background-image: url(../images/patterns/bg/2.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.single-car-bg.bgclr-3 {
    background-image: url(../images/patterns/bg/3.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.single-car-bg.bgclr-4 {
    background-image: url(../images/patterns/bg/4.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.single-car-bg.bgclr-5 {
    background-image: url(../images/patterns/bg/5.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.single-car-bg.bgclr-6 {
    background-image: url(../images/patterns/bg/6.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.car-btm-img {
    transform: translateX(40%);
    transition: all 0.5s ease-in-out;
    padding-top: 20px;
}

.single-car-bg:hover .car-btm-img {
    transform: translateX(0);
}

.trip-col {
    min-height: 320px;
    height: 100%;
    padding: 30px;
    /* border: solid; */
    /* border-radius: 30px; */

    overflow: hidden;
}

.trip-cnt {
    padding: 30px;
    text-align: justify;

}

.trip-slider {
    gap: 30px;
}

.trip-rds {
    /* border: solid; */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.head-left-wrap {

    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 11px;
}

.single-box-btm-cont-wrap {
    height: 300px;
    overflow: hidden;

}

.row-check.head p {
    font-size: small;
}


.emp-form {
    padding-top: 200PX;
}

.payment-details {
    margin: 20px;
    padding: 10px;
}

.payment-details .table-h1 {
    position: relative;
    padding: 5px;
    justify-items: center;
}

.payment-details .table-h2 {
    padding: 2px;
    justify-items: center;
}

.payment-details .table-h2 .table-data {
    padding: 2px;
    align-items: center;
    background-color: blueviolet;
}

/* employee section  */

.emp-c {
    font-size: 18px;
}

.emp-ul {
    font-size: 18px;
}

.emp-ete {

    position: relative;
    padding: 30px;


}

.emp-ete .emp-img {

    position: relative;
    display: flex;


}

.emp-ete .emp-img img {
    height: 550px;
    width: 400px;
    position: relative;
    display: flex;
    border-radius: 10px;


}

.emp-or {
    display: flex;
    flex-direction: column;
}

.emp-ul {
    text-align: justify;
    padding-top: 30px;
}

.emp-app {
    text-align: justify;
}

.emp-app p {
    font-size: 18px;
    text-align: justify;
}

.emp-app-img img {
    object-fit: cover;
    width: 572px;
    height: 385px;
    position: relative;
    display: flex;
    border-radius: 10px;
    font-size: 18px;
}


/* about page */

.vision {
    overflow: hidden;
}

.mission {
    overflow: hidden;
}

.fremework {
    overflow: hidden;
}

.vision .vision-img img {
    height: 350px;
    display: flex;

}

.fremework .vision-img img {
    height: 300px;
    display: flex;
    border-radius: 20px;

}

.mission .vision-img img {
    height: 400px;
    display: flex;

}

.vision .vision-cnt {
    padding-top: 100px;
}

.mission .vision-cnt {
    padding-top: 120px;
}


.highlights {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.highlights h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333333;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    background-color: #f0f4f8;
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.highlight-item:hover {
    background-color: #e2e8f0;
}

.highlight-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: #1d4ed8;
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.highlight-description {
    color: #475569;
    line-height: 1.5;
    text-align: justify;
}

.about-head-cnt {
    text-align: justify;
    font-size: 19px;
}