/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* fonts ends */


/* constant values */
:root {
    --color-primary: #FAA21B;
    --color-hover-primary: #ac6801;
    --background: #f0f2f5;
    --hover-color: #28292C;
}

/* Style for WebKit (Chrome, Safari) */
body::-webkit-scrollbar {
    width: 0.1rem;
}

body::-webkit-scrollbar-thumb {
    background: transparent;
}

/* Hide scrollbars on both webkit and non-webkit browsers */
body {
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: transparent transparent;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    /* overflow: scroll; */
}

/* Hide scrollbars on webkit-based browsers (Safari and Chrome) */
::-webkit-scrollbar {
    width: 0.5rem;
}

::-webkit-scrollbar-thumb {
    background-color: transparent;
}

/* constant value ends */


/* customized css for bootstrap components */
.btn-outline-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary) !important;
    border-radius: 50px;
    text-transform: uppercase !important;
    padding: 5px 20px;
    font-size: 16px !important;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 5px !important;
    transition: 0.4s ease-in-out;
    font-size: 14px;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: var(--color-hover-primary);
    color: white;
    border: 1px solid var(--color-hover-primary);
    border-radius: 50px;
    transition: 0.4s ease-in-out;
}

.text-danger {
    color: var(--color-primary);
    text-decoration: none;
    transition: 0.5s ease-in-out;
}

.text-danger:hover {
    color: rgb(255, 0, 0) !important;
    transition: 0.5s ease-in-out;
}

.menu {
    background-color: var(--color-primary);
    border-radius: 50%;
    aspect-ratio: 1/1;
    padding: 5px 10px;
    transition: 0.4s ease-in-out;
    border: 1px solid var(--color-primary);
    color: white;
}

.menu:hover {
    background-color: #00000000 !important;
    border: 1px solid var(--color-primary);
    transition: 0.4s ease-in-out;
    color: var(--color-primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--color-primary) !important;
    color: white !important;
    border: 2px solid var(--color-primary);
}

.nav-link {
    font-size: 16px !important;
}

.navbar {
    position: absolute;
    width: 100%;
    top: 0px;
    z-index: 999;
}

/* customized css for bootstrap components ends */



/* body */
body {
    background: var(--background);
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(227, 227, 227, 1) 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    scroll-behavior: smooth;
}

/* body end */


/* heading */
.view-all {
    text-decoration: none;
    color: var(--color-primary);
    transition: 0.4s ease-in-out;

}

.view-all:hover {
    color: rgb(0, 0, 0);
    transition: 0.4s ease-in-out;
}

/* heading ends */

/* global components */
.position-relative {
    position: relative;
}

.section-title {
    font-size: 20px;
}

.vh-65 {
    height: 80vh;
}


@media (max-width: 768px) {
    .vh-65 {
        height: 65vh;
    }
}

@media (max-width: 576px) {
    .vh-65 {
        height: 55vh;
    }
}

.full-height {
    height: 100%;
}

.short-description {
    font-size: 14px;
    color: #ACACAC !important;
}

.text-justify {
    text-align: justify;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* Background color of the preloader */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


/* Customize the size and style of your GIF here */
.preloader img {
    width: 200px;
    /* Adjust the width as needed */
    height: auto;
}

.page-heading {
    background-color: #000;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* global components ends */


/* hero section */
.hero-section {
    position: relative;
    /* Ensure relative positioning for absolute child elements */
    min-height: 100vh;
    /* Set the hero-section height to 100vh */
}

.video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.hero-section .content {
    position: absolute;
    left: 9%;
    z-index: 99;
    top: 30%;
}

.hero-section .content h2 {
    color: white;
    font-weight: 900;
    font-size: 65px;
}

/* hero section ends */

/* recent work section */
.recent-work {
    position: relative;
}


/* recent work section ends */

/* how we work */
.how-we-work .icon {
    position: absolute;
    top: -15%;
    left: 40%;
}

.how-we-work-card {
    height: 250px;
}

.how-we-work .sb-title {
    font-size: 14px;
    text-align: justify;
}

/* how we work ends */

/* course section */
.course-card {
    background-color: #ffffff;
    transition: box-shadow 361ms ease-in-out;

}

.course-card:hover {
    box-shadow: 7px 8px 0px 0px rgba(0, 0, 0, 0.3);
}

.course-card .image-section img {
    height: 140px;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}


.course-card .short-description {
    font-size: 12px;
    color: #000000 !important;
    text-align: justify;
}


.course-card .title h6 {
    color: rgb(0, 0, 0);
}


/* course section ends */

/* blog section */
.blog-card {
    background-color: #ffffff;
    color: #000;
    transition: box-shadow 361ms ease-in-out;

}

.blog-card:hover {
    box-shadow: 7px 8px 0px 0px rgba(0, 0, 0, 0.3);
}

.blog-card .image-section img {
    height: 200px;
    object-fit: cover;
}

.category-chip {
    display: inline-block;
    border-radius: 50px;
    background-color: #242731;
    color: white;
    padding: 6px 10px;
    font-size: 12px;
}

.blog-card .short-description {
    font-size: 12px;
    color: #ACACAC !important;
    text-align: justify;

}

.blog-card .date {
    font-size: 12px !important;
    display: flex;
    align-items: center;
}

.author img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.author span {
    font-size: 12px;
}

/* blog section ends */

/* footer */
.footer {
    padding-bottom: 8vh !important;
}

.career-slogan {
    font-size: 49px;
    font-weight: 600;
}

.work-category {
    background: #14161E;
    padding: 4px 15px;
    color: white;
}

.work {
    border: 1px solid #14161E;
    transition: 0.3s ease-in-out;
}

.work:hover {
    border: 1px solid var(--color-primary);
    transition: 0.3s ease-in-out;
}

.message p {
    font-size: 38px;
    font-weight: 400;
}

.footer .contact p {
    color: #ACACAC !important;
}

.message .section-title {
    color: #ACACAC !important;
}

.contact .section-title {
    color: #ACACAC !important;
}

.footer .email {
    font-size: 23px;
}

.footer .links ul {
    list-style: none;
}

.footer .links ul {
    padding: 0;
}

.footer .links ul li a {
    text-decoration: none;
    transition: 0.4s ease-in-out;
    color: #ACACAC !important;
}

.footer .links ul li a:hover {
    color: var(--color-primary) !important;
    transition: 0.4s ease-in-out;
}

.social {
    text-align: end;
    font-size: 20px;
}

.social a {
    color: #ACACAC;
}

.social i:hover {
    color: var(--color-primary) !important;
    transition: 0.4s ease-in-out;
}

@media (max-width: 768px) {
    .social {
        text-align: center;
    }
    .career-slogan {
        font-size: 28px;
        font-weight: 600;
    }
    .message p {
        font-size: 24px;
        font-weight: 400;
    }
}


/* footer ends */

/* last image */
.last-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.last-image img {
    max-width: 100%;
}

/* last image ends */