/* google fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?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');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Varialbes */
:root {
    --dark-color: #000000;
    --white-color: #ffffff;
    --color-primary: #06175B;
    --color-secondary: #980097;
    --body-color: #EDF3F7;
    --grey-bg: #ECF2FB;
    --primary-font: "Inter", sans-serif;
    --secondary-font: "Poppins", sans-serif;
    --tertiary-font: "Montserrat", sans-serif;
}


body {
    font-family: "Inter", sans-serif;
    font-family: "Poppins", sans-serif;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-optical-sizing: auto;
    background-color: var(--white-color) !important;
}

a {
    color: inherit !important;
    text-decoration: none !important;
    font-family: inherit !important;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 46px;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: 46px;
}

h5 {
    font-size: 26px;
}

h6 {
    font-size: 16px;
}

.sub-heading {
    font-family: var(--primary-font);
    color: var(--color-secondary) !important;
    /* color: #CBA266 !important; */
    font-size: 16px !important;
    /* line-height: 0px; */
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    /* letter-spacing: 0.6px; */
    opacity: 1;
}

.sub-heading1 {
    /* font-family: var(--primary-font); */
    font-family: var(--tertiary-font);
    color: var(--dark-color);
    font-size: 18px !important;
    /* line-height: 21px; */
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    /* letter-spacing: 0.6px; */
    opacity: 1;
}

.heading-font {
    font-family: var(--tertiary-font);
    /* color: var(--color-secondary); */
    color: var(--dark-color);
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    /* letter-spacing: -1px; */
    /* line-height: 1.1; */
}

.secondary-heading {
    font-family: var(--tertiary-font);
    color: var(--color-secondary);
    /* color: var(--dark-color); */
    font-size: 16px;
    font-weight: 600;
}

.light-color-para {
    font-family: var(--secondary-font);
    color: var(--dark-color) !important;
    font-size: 17px;
}

.regular-text {
    font-family: var(--secondary-font);
    color: var(--dark-color);
    font-size: 16px;
}

.grey-bg {
    background-color: var(--grey-bg);
}

.custom-btn {
    position: relative;
    display: inline-block;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    color: var(--white-color) !important;
    background: #6a1b9a;
    /* primary color */
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* subtle shine layer */
.custom-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    transition: left 0.45s ease;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 27, 154, 0.35);
}

.custom-btn:hover::after {
    left: 120%;
}

section {
    scroll-margin-top: 160px !important;
}

/* default code ends here */

/* topbar section */

.topbar-section {
    background-color: #a515a02b;
}

.top-icon1 {
    color: var(--color-secondary);
    font-size: 18px;
}

.top-icon {
    color: var(--color-secondary);
    font-size: 15px;
    border: 2px solid #980097;
    height: 30px;
    border-radius: 50%;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.top-icon:hover {
    color: var(--white-color);
    background-color: var(--color-secondary);
    border: var(--color-secondary);
}

/* navbar */

.bg-light {
    background: var(--white-color);
}

.navbar-brand img {
    width: 200px;
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 16px !important;
    font-family: var(--seconadary-font) !important;
    text-transform: capitalize;
    font-weight: 500;
    text-decoration: none;
    /* letter-spacing: 1px !important; */
    color: var(--dark-color);
}

.nav-item .active {
    font-weight: 700 !important;
    color: var(--color-secondary) !important;
    /* text-decoration: underline !important; */
}

@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-item:hover {
    color: var(--white-color) !important;
    background-color: var(--color-secondary) !important;
}

.dropdown-menu {
    background-color: #f0d8ef;
}

.dropdown-menu li>a {
    padding: 10px 20px !important;
}

.header-wrapper {
    position: relative;
    width: 100%;
    z-index: 1050;
    background: #ffffff00;
    transition: all 0.3s ease;
}

/* FIXED HEADER */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.35s ease;
    background-color: #ebe1ea !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

/* TOPBAR */
.hide-topbar {
    display: none !important;
}

/* LOGO */
.logo-img {
    width: 220px;
    transition: all 0.3s ease;
}

.header-fixed .logo-img {
    width: 180px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1040;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }
}


/* banner */

.carousel-caption {
    bottom: 20% !important;
}

.carousel-caption {
    position: absolute !important;
    right: 50% !important;
    bottom: 7.5rem !important;
    left: 10% !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    /* text-align: center; */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
    transition: all 0.3s ease;
}

.banner-text h2 {
    font-family: var(--primary-font);
    font-size: 40px !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
    /* color: var(--dark-color); */
}

.banner-text p {
    /* font-size: 18px !important; */
    color: var(--dark-color);
    /* font-weight: 500 !important; */
}

.banner-overlay {
    position: relative;
}

.banner-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.753), rgba(218, 161, 234, 0.501));
    /* background: linear-gradient(45deg, rgba(255, 255, 255, 0.401), rgba(218, 161, 234, 0.845)); */
    z-index: 1;
}

.banner-overlay img {
    position: relative;
    z-index: 0;
}

.carousel-caption {
    z-index: 2;
}

/* general box section */

.general-box-icon i {
    color: var(--color-secondary);
    font-size: 25px;
    background: #fff !important;
    padding: 15px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* about */

.about-section {
    background-color: var(--body-color);
    background-image: url(../img/home/service-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* height: 32vh; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 50px !important; */
}

.product-bg .overlay {
    /* background-color: rgb(255 201 253 / 80%); */
    background: linear-gradient(45deg, rgb(255 255 255 / 92%), rgb(218 161 234 / 82%));
    /* Semi-transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

/* expertise */

/* CTA Background Box */
.cta-box {
    min-height: 320px;
    padding: 25px;
    /* border-radius: 20px; */
    background: url("../img/home/expertise-09.webp") center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(249deg, rgb(106 27 154 / 48%), rgb(0 0 0 / 67%));
    z-index: 1;
}

/* Content above overlay */
.cta-content {
    position: relative;
    z-index: 2;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .cta-box {
        min-height: auto;
        padding: 2rem;
        text-align: center;
    }
}

/* counter */

.counter-section {
    background-color: #121212;
    color: #fff;
    text-align: center;
    background-image: url('../img/home/counter-bg-01.webp');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-section .overlay {
    /* background-color: rgba(0, 0, 0, 0.75); */
    background: linear-gradient(210deg, rgb(0 0 0 / 63%), rgb(133 75 132 / 67%));
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.counter {
    display: inline-block;
    font-family: var(--primary-font);
}

.stat-box p {
    font-size: 18px !important;
}

.stat-box h2 {
    font-size: 40px !important;
}

/* gallery section */

.gallery-item {
    /* background-color: #9800971c; */
    border: 2px solid #9800971c;
}

.gallery-item img {
    width: 250px !important;
    height: auto;
    /* border-radius: 20px 0 20px 0; */
}

.gallery-carousel .owl-nav {
    display: none !important;
}

/* cta section */

.cta-section .row {
    background-color: #9800970f;
    border-radius: 20px;
}

/* footer section */

.footer-section {
    /* background: linear-gradient(167deg, #59697b, #050f3b); */
    font-size: 14px;
    /* background-color: #121212; */
    /* color: #fff; */
    /* text-align: center; */
    /* background-image: url('../img/home/fotter-bg.webp'); */
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.footer-section .overlay {
    background-color: #f0d8ef;
    /* Semi-transparent dark overlay */
    width: 100%;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    color: white;
    padding: 50px 1px 10px 1px;
}

.foot-logo {
    height: auto;
    width: 150px;
}

.footer-social {
    opacity: 0.4;
}

.footer-social:hover {
    opacity: 1;
}

.footer-title {
    font-weight: 600;
    text-align: start !important;
    /* letter-spacing: 1px; */
}

.footer-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--dark-color);
}

.footer-list a:hover {
    color: var(--color-secondary) !important;
    padding-left: 5px;
    transition: 0.4s ease;
}

.footer-contact i {
    margin-right: 8px;
    color: #ffffff;
}

/* scroll-up button */

#scrollUpBtn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    height: 35px;
    width: 35px;
    padding: 10px;
    border-radius: 3px;
    border: none;
    z-index: 999;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-self: center;

}

#scrollUpBtn i {
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-self: center;
}

/* scrollup-btn ends here */

.custom-carousel-control {
    width: 48px;
    height: 48px;
    top: 80%;
    transform: translateY(-50%);
    opacity: 1;
    border: 2px solid var(--color-secondary);
}

.custom-carousel-control span {
    background-size: 60% 60%;
    /* background-color: rgba(0, 0, 0, 0.55); */
    border-radius: 0%;
    width: 100%;
    height: 100%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 45px !important;
    height: 45px !important;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 61% !important;
}

.carousel-control-prev.custom-carousel-control {
    left: 89%;
}

.carousel-control-next.custom-carousel-control {
    right: 3.5%;
}

.custom-carousel-control:hover span {
    background-color: var(--color-secondary);
}

/* Slide Right Animation */
.slide-right.active {
    animation: slideRight 0.5s ease-out forwards;
}

@keyframes slideRight {
    from {
        transform: translateX(-100px);
    }

    to {
        transform: translateX(0);
    }
}

/* Slide Left Animation */
.slide-left.active {
    animation: slideLeft 0.5s ease-out forwards;
}

@keyframes slideLeft {
    from {
        transform: translateX(100px);
    }

    to {
        transform: translateX(0);
    }
}

/* Slide up Animation */
.slide-up.active {
    animation: slideup 0.5s ease-out forwards;
}

@keyframes slideup {
    from {
        transform: translateY(100px);
    }

    to {
        transform: translateX(0);
    }
}

/* Slide up Animation */
.slide-down.active {
    animation: slidedown 1s ease-out forwards;
}

@keyframes slidedown {
    from {
        transform: translateY(-100px);
    }

    to {
        transform: translateX(0);
    }
}


/* product page */

.product-banner {
    background-image: url('../img/home/product-banner-01.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 30vh;
    /* Adjust the height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay h1 {
    font-family: var(--primary-font);
    /* padding-top: 130px !important; */
}

.product-banner .overlay {
    background-color: rgba(0, 0, 0, 60%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}


/* IT Training banner */

.it-banner {
    background-image: url('../img/home/IT-banner.webp');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 35vh;
    /* Adjust the height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.it-banner .overlay {
    /* background-color: rgba(0, 0, 0, 62%); */
    background: linear-gradient(45deg, rgb(0 0 0 / 79%), rgb(218 161 234 / 52%));
    /* Semi-transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.offer-list i {
    color: var(--color-secondary) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--color-secondary);
    color: var(--white-color);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
    background: #98009729;
}

/* consulting banner */

.consulting-banner {
    background-image: url('../img/home/consulting-banner.webp');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 35vh;
    /* Adjust the height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consulting-banner .overlay {
    /* background-color: rgba(0, 0, 0, 62%); */
    background: linear-gradient(45deg, rgb(0 0 0 / 79%), rgb(218 161 234 / 52%));
    /* Semi-transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

/* Healthcare banner */

.healthcare-banner {
    background-image: url('../img/home/banner-03.webp');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 35vh;
    /* Adjust the height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.healthcare-banner .overlay {
    /* background-color: rgba(0, 0, 0, 62%); */
    background: linear-gradient(45deg, rgb(0 0 0 / 79%), rgb(218 161 234 / 52%));
    /* Semi-transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

/* clinical page */

.clinical-banner {
    background-image: url('../img/home/banner-07.webp');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 35vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinical-banner .overlay {
    /* background-color: rgba(0, 0, 0, 62%); */
    background: linear-gradient(45deg, rgb(0 0 0 / 79%), rgb(218 161 234 / 52%));
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}


/* contact banner */

.contact-banner {
    background-image: url('../img/home/contact-us-banner.webp');
    /* change to your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 35vh;
    /* Adjust the height as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner .overlay {
    /* background-color: rgba(0, 0, 0, 62%); */
    background: linear-gradient(45deg, rgb(0 0 0 / 79%), rgb(218 161 234 / 52%));
    /* Semi-transparent dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.contact-box {
    /* border-left:3px solid var(--color-secondary); */
    background: linear-gradient(45deg, rgb(255 255 255 / 79%), rgb(218 161 234 / 52%));

}

.general-box-icon1 {
    color: var(--color-secondary);
    font-size: 25px;
    background: #fff !important;
    padding: 15px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-primary {
    color: var(--color-secondary) !important;
}

.timeline-dot {
    background-color: var(--color-secondary) !important;
    height: 15px;
    width: 15px;
}

@media only screen and (max-width: 768px) {

    .sub-heading {
        font-size: 18px;
        /* line-height: 15px; */
        margin-bottom: 2px;
    }

    .container {
        padding: 0px 20px !important;
    }

    .navbar .container {
        padding: 0px 10px !important;
    }


    .heading-font {
        font-size: 20px;
        text-align: center;
        font-weight: 600;
    }

    .secondary-heading {
        text-align: center;
        font-size: 14px;
    }

    .regular-text {
        text-align: justify;
    }

    .navbar-brand img {
        height: auto;
        width: 135px;
    }

    .header-fixed .logo-img {
        width: 115px;
    }

    .carousel-item img {
        height: 275px !important;
        width: max-content !important;
        /* object-fit: cover !important; */
    }

    .carousel-caption {
        position: absolute !important;
        right: 8% !important;
        bottom: 50px !important;
        left: 5% !important;
        padding-top: 0.25rem !important;
    }

    .banner-text h2 {
        /* font-family: var(--primary-font); */
        font-size: 22px !important;
        font-weight: 400 !important;
        letter-spacing: 1px;
    }

    .sub-heading {
        text-align: center;
        font-size: 16px !important;
    }

    .heading-box h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .align-btn {
        text-align: center !important;
    }

    .stat-box .counter {
        font-size: 25px !important;
        font-weight: 700;
    }

    .stat-box p {
        font-size: 16px !important;
    }

    .heading-box {
        text-align: justify;
    }

    .carousel-control-prev.custom-carousel-control {
        left: 70%;
        z-index: 3;
    }

    .carousel-control-next.custom-carousel-control {
        right: 10px;
        z-index: 3;
    }

    .counter-section .overlay {
        background: linear-gradient(210deg, rgb(0 0 0 / 73%), rgb(133 75 132 / 98%));
    }

    .center-sm {
        text-align: center !important;
    }

}

@media (min-width: 768px) and (max-width: 991.98px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
    }

    .carousel-caption {
        position: absolute !important;
        right: 25% !important;
        bottom: 35px !important;
        left: 10% !important;
        padding-top: 0.25rem !important;
    }

    .carousel-control-prev.custom-carousel-control {
        left: 87%;
    }

    .carousel-control-next.custom-carousel-control {
        right: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {

    .carousel-control-prev.custom-carousel-control {
        left: 87% !important;
    }

    .carousel-control-next.custom-carousel-control {
        right: 10px !important;
    }

    .carousel-caption {
        position: absolute !important;
        right: 50% !important;
        bottom: 1.5rem !important;
        left: 10% !important;
    }
}