html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
}


@media (max-width: 991px) {
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1499px) {
    .container-fluid {
        max-width: 1260px;
    }
}

@media (min-width: 1500px) {
    .container-fluid {
        max-width: 1640px;
    }
}


.sticky {
    position: fixed !important;
    left: 0;
    backdrop-filter: blur(20px);
}




:root {
    --headerBg: #1e1e2433;
    --primaryWhite: #fff;
    --primaryBlack: #000;
    --primaryYellow: #eac435;
    --lightGray: #cccccc;
    --lightGray2: #f2f2f2;
    --darkGray: #30303a;
    --darkPurple: #340068;
    --textLight: #e4e4e4;
    --textDark: #a3a3a3;
}


.headerBg {
    background-color: var(--headerBg);
}

.whiteBg {
    background-color: var(--primaryWhite);
}

.colorWhite {
    color: var(--primaryWhite);
}

.yellowBg {
    background-color: var(--primaryYellow);
}

.colorYellow {
    color: var(--primaryYellow);
}

.darkPurpleBg {
    background-color: var(--darkPurple);
}

.colorDarkPurple {
    color: var(--darkPurple);
}

.textLight {
    color: var(--textLight);
}

.textDark {
    color: var(--textDark);
}


h1,
.h1 {
    font-size: 72px;
}

@media (max-width: 991px) {

    h1,
    .h1 {
        font-size: 48px;
    }
}

h2,
.h2 {
    font-size: 60px;
}

@media (max-width: 991px) {

    h2,
    .h2 {
        font-size: 30px;
    }
}

.lgHeading {
    font-size: 48px;
}

.smHeading {
    font-size: 24px;
}

h3,
.h3 {
    font-size: 20px;
}

.smCap {
    font-size: 18px;
}

.xsFont {
    font-size: 14px;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}


.w100 {
    width: 100%;
}

.h100 {
    height: 100%;
}

.hAuto {
    height: auto;
}

.bgProperty {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.pointer {
    cursor: pointer;
}

.fontPoppins {
    font-family: 'Poppins', sans-serif;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.resetUl {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
}




.btnMain {
    display: inline-block;
    border-radius: 4px;
}

.borderOutlineNone {
    border: none;
    outline: none !important;
}

.btnLg {
    padding: 16px 28px;
}


.outlineText {
    height: 176px;
    max-width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    object-fit: contain;
}


@media (max-width: 991px) {
    .outlineText {
        height: 128px;
        top: 24px;
        left: -112px;
    }
}




/* Header Section */
.navSection {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navSection .navbar {
    padding: 8px 0;
}

.navbar-brand img {
    width: auto;
    height: 64px;
}

.navbar-nav {
    margin-left: 64px;
    gap: 48px;
}

.navbar-light .navbar-nav .nav-link {
    padding: 0;
    color: var(--primaryWhite);
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:focus {
    color: var(--primaryWhite);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primaryWhite);
    opacity: 1;
}

.navbar-light .navbar-nav .dropdown svg {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin-left: 4px !important;
    transition: all 0.2s ease;
}

.navbar-light .navbar-nav .dropdown-menu {
    background-color: var(--darkGray);
    border: none;
}

.navbar-light .navbar-nav .dropdown-item {
    color: var(--primaryWhite);
    opacity: 0.8;
}

.navbar-light .navbar-nav .dropdown-item:hover,
.navbar-light .navbar-nav .dropdown-item:active {
    background-color: #222229;
    opacity: 1;
}

.navbar-light .searchBar {
    background-color: var(--darkGray);
    padding: 6px 42px 6px 16px;
    border-radius: 4px;
}

.navbar-light .searchBar svg {
    width: 20px;
    height: 20px;
    color: var(--primaryWhite);
}

.navbar-light .searchBar .form-control {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--primaryWhite);
    margin-left: 8px;
}

.navbar-light .searchBar .form-control::placeholder {
    color: var(--lightGray);
    font-size: 14px;
}


@media (max-width: 991px) {
    .navSection .navbar {
        backdrop-filter: blur(20px);
    }

    .navbar-nav {
        margin-left: 0;
        gap: 20px;
        padding: 20px 0;
    }

    .navbar-light .searchBar {
        padding: 6px 16px;
    }

    .navbar-light .searchBar .form-control {
        width: 88%;
    }

    .navbar-light .navbar-toggler {
        padding: 0;
        border: none;
        outline: none;
    }

    .navbar-light .navbar-toggler-icon {
        filter: invert(100%);
    }
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .dropdown:hover svg {
        transform: rotate(180deg);
    }

    .navbar-light .navbar-nav .dropdown-menu {
        opacity: 0;
        display: block;
        visibility: hidden;
        margin: 0;
    }

    .navbar-light .navbar-nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
}

/* Header Section End */


/* Banner Section */
.bannerSection {
    padding: 128px 0;
}

.bannerSection .leftDiv {
    position: relative;
}

.bannerSection .leftDiv .floatImg {
    height: 200px;
    position: absolute;
    top: -108px;
    right: -42px;
}

.bannerSection .leftDiv .descrip {
    line-height: 32px;
    margin: 24px 0 0;
}

.bannerSection .leftDiv .lftBtn:hover {
    background-color: #c2a12d;
}

.bannerSection .rightDiv .formArea {
    padding: 32px;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.bannerSection .rightDiv .formArea .floatText {
    letter-spacing: 0.8px;
    padding: 4px 16px;
    border-radius: 50px;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    left: 16px;
}

.bannerSection .rightDiv .formArea .formCont {
    margin-top: 32px;
}

.bannerSection .rightDiv .formArea .formCont .form-control,
.bannerSection .rightDiv .formArea .formCont .custom-select {
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--lightGray);
    border-radius: 4px;
    box-shadow: none;
    border: none;
}

.bannerSection .rightDiv .formArea .formCont .custom-select {
    height: auto;
}

.bannerSection .rightDiv .formArea .formCont .frmBtn {
    margin-top: 20px;
}


@media (max-width: 991px) {
    .bannerSection .leftDiv .floatImg {
        display: none;
    }

    .bannerSection .rightDiv {
        margin-top: 64px;
    }
}

/* Banner Section End */


/* Courses Section */
.coursesSection {
    background-color: var(--primaryBlack);
    position: relative;
}

.coursesSection .courseCont {
    padding-top: 160px;
    padding-bottom: 100px;
}

.coursesSection .sliderCont .item {
    background-color: var(--lightGray2);
    padding: 30px;
    border-radius: 6px;
}

.coursesSection .sliderCont .owl-nav button {
    position: absolute;
    outline: none;
    color: var(--textDark);
    transition: all 0.2s ease;
}

.coursesSection .sliderCont .owl-nav button:hover {
    background: transparent;
    transform: scale(1.2);
}

.coursesSection .sliderCont .owl-nav .owl-prev {
    left: 0;
}

.coursesSection .sliderCont .owl-nav .owl-next {
    right: 0;
}


@media (max-width: 991px) {
    .coursesSection .courseCont {
        padding-top: 80px;
    }
}

/* Courses Section End */


/* About Us Section */
.aboutSectiion {
    position: relative;
}

.aboutSectiion .aboutCont,
.projectSection .projectCont,
.testimonialSection .testiCont {
    padding-top: 160px;
    padding-bottom: 60px;
}

.coursesSection .courseCont .h2,
.aboutSectiion .aboutCont .h2,
.projectSection .projectCont .h2,
.testimonialSection .testiCont .h2 {
    line-height: 1;
}

.coursesSection .courseCont .sliderCont,
.aboutSectiion .aboutCont .btmCont,
.projectSection .projectCont .btmCont,
.testimonialSection .testiCont .btmCont {
    margin-top: 144px;
}

.aboutSectiion .aboutCont .btmCont .p1 {
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 0;
    width: 94%;
}

.aboutSectiion .aboutCont .btmCont .videoCont {
    width: 100%;
    max-width: 424px;
    height: 240px;
    margin-left: auto;
}

.aboutSectiion .aboutCont .btmCont .videoCont iframe {
    display: block;
}


@media (max-width: 991px) {

    .aboutSectiion .aboutCont,
    .projectSection .projectCont,
    .testimonialSection .testiCont {
        padding-top: 80px;
    }

    .aboutSectiion .aboutCont .btmCont .videoCont {
        margin: 40px auto 0;
    }
}

/* About Us Section End */


/* Recruiters Section */
.recruitersSection,
.softwaresSection {
    padding: 64px 0;
}

.recruitersSection .headingText,
.softwaresSection .headingText {
    letter-spacing: 1.6px;
}

.recruitersSection .imgArea {
    gap: 80px;
}

.recruitersSection .imgArea .recImg,
.softwaresSection .imgArea .recImg {
    width: 100%;
    mix-blend-mode: luminosity;
}

.recruitersSection .imgArea .recImg1 {
    height: 176px;
}

.recruitersSection .imgArea .recImg2 {
    height: 112px;
}

.recruitersSection .imgArea .recImg3 {
    height: 64px;
}

.recruitersSection .imgArea .recImg4,
.recruitersSection .imgArea .recImg5 {
    height: 48px;
}


@media (max-width: 991px) {
    .recruitersSection .imgArea {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 30px;
        gap: 50px;
    }
}

@media (min-width: 992px) and (max-width: 1299px) {
    .recruitersSection .imgArea {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 30px;
        gap: 50px;
    }
}

/* Recruiters Section End */


/* Project Section */
.projectSection {
    position: relative;
}

.projectSection .outlineText {
    left: auto;
    right: 0;
}

.projectSection .projectCont .projImg {
    max-width: 100%;
    width: 400px;
    height: 400px;
    object-fit: cover;
}


@media (max-width: 991px) {
    .projectSection .projectCont .projImg {
        margin: 15px 0;
    }
}

/* Project Section End */


/* Softwares Section */
.softwaresSection .imgArea {
    gap: 80px;
    width: 64%;
    margin: 40px auto 0;
}

.softwaresSection .imgArea .recImg1,
.softwaresSection .imgArea .recImg2 {
    height: 96px;
}

.softwaresSection .imgArea .recImg3 {
    height: 48px;
}


@media (max-width: 767px) {
    .softwaresSection .imgArea {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .softwaresSection .imgArea {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .softwaresSection .imgArea {
        width: 70%;
    }
}

/* Softwares Section End */


/* Testimonial Section */
.testimonialSection {
    position: relative;
    background-color: var(--lightGray2);
}

.testimonialSection .testiCont .cardItem {
    padding: 32px;
    margin-bottom: 30px;
    background-color: var(--primaryWhite);
    border-radius: 6px;
}

.testimonialSection .testiCont .cardItem .profileImg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonialSection .testiCont .cardItem .profileName {
    margin-left: 12px;
}

.testimonialSection .testiCont .cardItem .profileDescrip {
    line-height: 28px;
    margin-top: 28px;
    margin-bottom: 0;
}

/* Testimonial Section End */


/* Apply Action Section */
.applyActSection {
    padding: 80px 0;
}

.applyActSection .p1 {
    width: 36%;
    line-height: 32px;
    margin: 28px 0 24px;
}

.applyActSection .btnApply {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
}


@media (max-width: 767px) {
    .applyActSection .p1 {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1299px) {
    .applyActSection .p1 {
        width: 60%;
    }
}

/* Apply Action Section End */


/* Footer Section */
.footerSection {
    padding: 80px 0;
}

.footerSection .topCont .descrip .p1 {
    width: 60%;
    margin-top: 22px;
}

.footerSection .topCont .footerCol li {
    margin-bottom: 10px;
}

.footerSection .topCont .footerCol li:last-child {
    margin-bottom: 0;
}

.footerSection .topCont .linkList {
    font-size: 14px;
    color: var(--primaryBlack);
    opacity: 0.8;
}

.footerSection .topCont .linkList:hover {
    opacity: 1;
}

.footerSection .topCont .connect ul {
    gap: 20px;
}

.footerSection .topCont .connect li {
    margin: 0;
}

.footerSection .topCont .connect li a {
    color: var(--primaryBlack);
    font-size: 24px;
}

.footerSection .copyrightArea {
    border-top: 1px solid var(--darkGray);
    margin-top: 40px;
    padding-top: 40px;
}


@media (max-width: 767px) {
    .footerSection .copyrightArea {
        flex-direction: column;
        gap: 30px;
        align-items: start !important;
    }
}

@media (max-width: 991px) {
    .footerSection .topCont .footerCol {
        margin-bottom: 30px;
    }

    .footerSection .copyrightArea {
        margin-top: 10px;
    }
}

/* Footer Section End */