/******************** Template CSS ********************/
:root {
    --primary: #2124B1;
    --secondary: #4777F5;
    --light: #F7FAFF;
    --dark: #1D1D27;
}

body {
    font-family: Livvic, sans-serif !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s ease-in-out;
    z-index: 9999;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Scroll झाल्यानंतरही transparent */
.navbar.sticky-top {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 0.5s forwards;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Navbar खाली येण्याचे animation */
@keyframes smoothScroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}


/*** Heading ***/

h1,
h2,
h3,
.fw-bold {
    font-weight: 700;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 25px 0;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 25px 0;
    color: var(--light) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
    font-size: 25px;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}


/* =========================================================
   MOBILE NAVBAR
   ========================================================= */

@media (max-width: 991.98px) {

    .navbar,
    .navbar-light,
    .sticky-top.navbar-light {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;

        background: transparent !important;
        background-color: transparent !important;

        box-shadow: none !important;

        z-index: 9999;
    }

    /*
       IMPORTANT:
       Mobile navbar scroll झाल्यावर black background
       येऊ नये म्हणून #060822 पूर्णपणे remove केले आहे.
    */

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        background: transparent !important;
    }

    .navbar-light .navbar-nav {
        background: transparent !important;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: #FFFFFF !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--secondary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    /* Hamburger button */

    .navbar-light .navbar-toggler {
        background: transparent !important;
        border: none !important;
        color: #FFFFFF !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .navbar-light .navbar-toggler:focus {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .navbar-light .navbar-toggler .fa-bars {
        color: #FFFFFF !important;
        font-size: 24px;
    }
}


/* =========================================================
   DESKTOP NAVBAR
   ========================================================= */

@media (min-width: 992px) {

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: none;
        z-index: 9999;

        background: transparent !important;
        background-color: transparent !important;
    }

    .sticky-top.navbar-light {
        position: fixed !important;
        top: 0;
        left: 0;

        background: transparent !important;
        background-color: transparent !important;

        box-shadow: none !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/* =========================================================
   FINAL NAVBAR OVERRIDE
   ========================================================= */

.navbar,
.navbar-light,
.navbar.sticky-top,
.navbar-light.sticky-top,
.sticky-top.navbar-light {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}


/*** Background Primary ***/

.bg-primary {
    background-color: #060822 !important;
}


/*** Hero Header ***/

.hero-header {
    background: url(../img/navbar.jpg);
    position: relative;
    z-index: 1;
    min-height: 100vh;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/*** Section Title ***/

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** Service ***/

.service-item {
    position: relative;
    height: 350px;
    padding: 30px 25px;
    background: #FFFFFF;
    box-shadow: 0 11px 18px 0 rgba(0, 0, 0, 0.29);
    transition: .5s;
}

.service-item:hover {
    background-color: #e7fbff;
    box-shadow: 0 11px 18px 0 rgba(0, 0, 0, 0.29);
    transform: translateY(-5px);
    color: #023e8a !important;
}

.service-item p:hover {
    color: #0077b6;
}

.service-item p {
    color: #0c0c0c !important;
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: white;
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background-image: linear-gradient(270deg, #030b63, #0179af);
}


/*** Project Portfolio ***/

.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}


/*** Footer ***/

.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/* =========================================================
   ABOUT TOP
   ========================================================= */

.abouttop {
    text-align: center;
    padding-top: 100px;
    position: relative;
    background-image: url(../img/section-courses.png);
    background-position: center;
    background-size: cover;
    height: 200px;
}


/* =========================================================
   CONTACT US
   ========================================================= */

.contactus {
    background-image: linear-gradient(
        rgba(243, 245, 253, 1),
        rgba(243, 245, 253, 1)
    ) !important;
    padding: 10px;
}

.contactus h1 {
    text-align: center;
    margin-top: 20px;
}

.contactus p {
    text-align: center;
}

#image {
    background-image: url('./../../assets/img/contctbackground.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 180px;
}

.contctustitle {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
}

.main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container-fuild {
    margin-top: 70px;
}

.contentbox {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 16px 16px 8px rgba(0, 0, 0, .1);
    border-radius: 10px;
    border: 1px solid black;
}

@keyframes contentbox {
    0% {
        margin-top: -100%;
    }

    100% {
        top: 0;
    }
}

.contentbox .image {
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    animation: smoothBounce 1s ease-in-out infinite alternate;
}

@keyframes smoothBounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

.contentbox .image::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #f0f6ff;
    clip-path: polygon(
        0% 0%,
        75% 0%,
        100% 50%,
        75% 100%,
        0% 100%
    );
}

.contentbox .image img {
    margin-left: 82px;
    height: 300px;
    z-index: 1;
}

.contentbox .form-area {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes form {
    0% {
        margin-left: 500px;
    }

    100% {
        left: 0;
    }
}

.contentbox .form-area h2 {
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
}

.contentbox .form-area form {
    width: 60%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.contentbox .form-area form input {
    padding: 15px 5px;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
}

.contentbox .form-area form input::placeholder {
    color: black;
    letter-spacing: 1px;
}

.contentbox .form-area form input:hover::placeholder,
.contentbox .form-area form textarea:hover::placeholder {
    transition: .3s all ease-in-out;
}

.contentbox .form-area form input:focus {
    border-bottom: 1px solid #62c3fc;
    animation: border .5s ease;
}

.contentbox .form-area form textarea:focus {
    border-bottom: 1px solid #62c3fc;
    animation: border .3s ease;
}

.contentbox .form-area form textarea {
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    resize: none;
}

.contentbox .form-area form textarea::placeholder {
    font-size: 14px;
    color: black !important;
    letter-spacing: 1px;
}

.contentbox .form-area form button {
    margin-top: 10px;
    border: none;
    padding: 10px 0;
    border-radius: 30px;
    background-color: #62c3fc;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: .3s all ease-in-out;
    margin-bottom: 20px;
}

.contentbox .form-area form button:hover {
    background-color: #2fa5e9;
}

.contentbox .form-area .social-icons {
    margin-top: 50px;
    display: flex;
}

@keyframes border {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}


@media (min-width: 1200px) {

    .main .contentbox {
        height: 85vh;
        background: #fff;
        margin-top: 40px;
        width: 1180px;
    }
}


@media (max-width: 1200px) and (min-width: 900px) {

    body::before {
        height: 200px;
        width: 200px;
    }

    .main .contentbox {
        height: 85vh;
    }

    .main .contentbox .image img {
        margin-left: 30px;
    }

    .main .contentbox .form-area h2 {
        font-size: 25px;
    }

    .form-area h2 {
        color: white;
    }
}


@media (max-width: 900px) and (min-width: 600px) {

    body::before {
        height: 150px;
        width: 150px;
    }

    .main .contentbox {
        width: 750px;
        background: #fff;
    }

    .main .contentbox .image img {
        height: 150px;
        margin-left: 30px;
    }

    .main .contentbox .form-area form {
        width: 90%;
    }

    .form-area h2 {
        color: white;
    }
}


@media (max-width: 600px) {

    body {
        height: auto;
    }

    body::before {
        height: 100px;
        width: 100px;
    }

    .main .contentbox {
        width: 300px;
        height: auto;
        flex-direction: column;
        margin: 20px 0;
        box-shadow: none;
        background: #fff;
    }

    .main .contentbox .image {
        height: 200px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .main .contentbox .image::before {
        height: 200px;
        clip-path: polygon(
            0% 0%,
            100% 0,
            100% 81%,
            50% 100%,
            0 81%
        );
    }

    .main .contentbox .image img {
        height: 150px;
        margin-left: 0;
        margin-top: -40px;
    }

    .main .contentbox .form-area {
        width: 100%;
    }

    .main .contentbox .form-area h2 {
        font-size: 25px;
    }

    .main .contentbox .form-area form {
        width: 90%;
        margin-top: 10px;
    }

    .main .contentbox .social-icons {
        margin: 20px 0;
    }
}


.contct_title h1 {
    text-align: center;
    color: white;
    font-family: Livvic, sans-serif !important;
    font-weight: 500 !important;
}

.contct_title p {
    text-align: center;
    color: white;
}

.contct_title h4 {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    font-family: Livvic, sans-serif !important;
}


.contact_info {
    padding: 40px;
    background-image: url(../img/bag2.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}


.card_contact {
    padding: 25px;
    position: relative;
    max-width: 400px;
    border-radius: 10px;
    margin: 20px;
    background-image: url("https://i.ibb.co/Phq8X4f/pattern.png");
    background-repeat: no-repeat;
    background-position: top left;
    text-align: center;
    transition: 0.5s;
    border: 1px solid white;
    background-color: white;
}

.card_contact:hover {
    box-shadow: 0px 4px 14px -4px rgba(1, 1, 1, 0.5);
}

.card_contact .tag {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    top: 2%;
    right: 2%;
}

.card_contact img {
    width: 100px;
    display: block;
    margin: auto;
}

.card_contact h1 {
    font-size: 1.5em;
}

.card_contact p {
    color: rgba(1, 1, 1, 0.7);
    line-height: 1.8em;
}


@media (max-width: 820px) {

    .card_contact {
        padding: 1rem;
        margin: 20px 0;
    }
}

.card_contact h5 {
    font-size: 16px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.servicetop {
    text-align: center;
    padding-top: 200px;
    position: relative;
    background-image: url(../img/section-courses.png);
    background-size: cover;
    background-position: center;
    height: 200px;
    background-color: white;
}

.services_section {
    background-image:
        url("../img/servicebg.png"),
        url("../img/servicebg.png");

    grid-template-rows: auto;
    border-radius: 20px;
    background-color: #e7fbff;
    background-position: 100% 50%, 0% 50%;
    background-size: 528px 528px, 528px 528px;
    background-repeat: no-repeat, no-repeat;
}

.services_section1 {
    background-image: url("../img/section-new.png");
    background-position: top center;
}

.services_section h1 {
    text-align: center;
    margin-top: -100px;
}

.card_data {
    display: flex;
    background: #F3F5FD;
    min-height: 106px;
    border: 1px solid black;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
}


.primary-button {
    padding: 7px 25px;
    border-radius: 25px;
    background-image: linear-gradient(
        270deg,
        #030b63,
        #0179af
    );
    transition: background-color 300ms ease-in-out;
    font-family: Rajdhani, sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    text-decoration: none;
    border: none !important;
}

.primary-button:hover {
    color: white;
}


.imgservice {
    width: 100%;
    max-width: 500px;
    height: 300px;
}

.data_science_details {
    font-size: 16px;
}

.sdetails {
    color: #0c0c0c;
}

.sstitle {
    color: #023e8a;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
}

.stitle {
    color: #0077b6;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
}


/* Mobile */
@media (max-width: 575.98px) {

    .corsehighligt h1 {
        font-size: 1.5rem;
    }

    .services_section h1 {
        margin-top: -20px;
    }

    .card_data {
        flex-direction: column !important;
        text-align: center;
        align-items: center;
    }

    .card_course img {
        margin-bottom: 10px;
    }

    .coursesectioncard {
        width: 100% !important;
        margin: 10px 0 !important;
    }

    .col-6 {
        width: 100% !important;
    }

    .services_section {
        background-size: 200px 200px;
    }
}


/* Tablets */
@media (min-width: 576px) and (max-width: 767.98px) {

    .card_data {
        flex-direction: row;
        text-align: left;
    }

    .corsehighligt h1 {
        font-size: 1.8rem;
    }

    .coursesectioncard {
        width: 100% !important;
    }
}


/* Medium */
@media (min-width: 768px) and (max-width: 991.98px) {

    .coursesectioncard {
        width: 280px !important;
    }

    .corsehighligt h1 {
        font-size: 2.2rem;
    }

    .card_data {
        flex-direction: row;
    }
}


/* Large */
@media (min-width: 992px) and (max-width: 1399.98px) {

    .card_data {
        flex-direction: row;
    }

    .coursesectioncard {
        width: 320px !important;
    }

    .corsehighligt h1 {
        font-size: 2.8rem;
    }
}


/* Ultra Wide */
@media (min-width: 1400px) {

    .container {
        max-width: 1320px;
    }

    .corsehighligt {
        padding: 40px;
    }

    .corsehighligt h1 {
        font-size: 3.5rem;
    }
}


/* =========================================================
   HOW WE WORK
   ========================================================= */

.how-we-work-section {
    background-color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
}

.work-step-card {
    padding: 50px 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    background-color: transparent;
    transition:
        background-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.work-step-card:hover {
    background-color: #e7fbff;
    box-shadow: 0 11px 18px 0 rgba(0, 0, 0, 0.29);
    transform: translateY(-5px);
}

.section-title {
    color: #023e8a;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
}

.section-subtitle {
    color: #0c0c0c !important;
}

.step-content-wrapper {
    position: relative;
    width: 160px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto;
}

.step-number {
    position: absolute;
    top: -10px;
    left: -12px;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
    color: #0077b6;
    line-height: 1;
    z-index: 1;
    opacity: 0.3;
}

.step-icon-wrap {
    position: relative;
    z-index: 2;
}

.step-icon-wrap img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.step-title {
    color: #023e8a;
    font-weight: 700;
    font-size: 1.35rem;
    margin-top: 15px;
    white-space: nowrap;
}

@media (max-width: 575.98px) {

    .section-title {
        font-size: 2rem;
    }

    .work-step-card {
        margin-bottom: 25px;
    }
}


/* =========================================================
   REVIEW / TESTIMONIAL
   ========================================================= */

.testimonial-section-wrapper,
.testimonial-section-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(
        to bottom,
        #fff,
        #f6fdff
    );
}

.testimonial-section-wrapper {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    overflow: hidden;
}

.testimonial-section-wrapper .main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #023e8a;
    margin-bottom: 50px;
    text-align: center;
}

.slider-outer-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    padding: 0 70px;
}

.swiper-container.mySwiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 10px 60px 10px;
}

.swiper-container.mySwiper .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
}

.swiper-container.mySwiper .swiper-slide {
    height: auto !important;
    display: flex !important;
    align-items: stretch !important;
    opacity: 0.35 !important;
    transition: opacity 0.3s ease-in-out;
}

.swiper-container.mySwiper .swiper-slide-active + .swiper-slide {
    opacity: 1 !important;
}

.swiper-container.mySwiper .testimonial-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 10px 35px;
    border-radius: 12px;
    padding: 15px 30px 40px 30px;
    position: relative;
    width: 100%;
    border: 0.5px solid gray;
    text-align: center;
    flex: 1 !important;
}

.swiper-container.mySwiper .testimonial-card .quotes-icon {
    font-size: 80px;
    line-height: 1;
    font-weight: 900;
    color: #03a9f4;
    transition: color 0.3s ease;
}

.swiper-container.mySwiper .swiper-slide-active + .swiper-slide
.testimonial-card .quotes-icon {
    color: #03a9f4;
}

.swiper-container.mySwiper .testimonial-card .info-text {
    font-size: 15px;
    line-height: 1.6;
    font-family: Livvic, sans-serif;
    color: #0c0c0c;
    margin-bottom: 10px;
    flex-grow: 1 !important;
}

.swiper-container.mySwiper .card-footer-info {
    margin-top: auto !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swiper-container.mySwiper .testimonial-card .rating-img {
    width: 110px !important;
    height: auto !important;
    margin-bottom: 15px;
}

.swiper-container.mySwiper .testimonial-card .user-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #023e8a;
    margin-bottom: 5px;
}

.swiper-container.mySwiper .testimonial-card .user-desig {
    font-size: 13px;
    color: #0077b6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


/* Arrows */

.custom-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    z-index: 10;
    cursor: pointer;
}

.custom-nav-btn.prev-arrow {
    left: 15px;
}

.custom-nav-btn.next-arrow {
    right: 15px;
}

.custom-nav-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-pagination-container {
    position: absolute;
    bottom: 15px !important;
    width: 100%;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cccccc !important;
    opacity: 1;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: #03a9f4 !important;
}


@media (max-width: 768px) {

    .slider-outer-container {
        padding: 0 45px;
    }

    .custom-nav-btn {
        display: none;
    }

    .swiper-container.mySwiper .swiper-slide {
        opacity: 1 !important;
    }
}


/* =========================================================
   COMMON TITLES
   ========================================================= */

.aboutus {
    color: #023e8a;
    font-family: 'Rajdhani', sans-serif;
}

.abouttitle {
    color: #023e8a;
    font-family: 'Rajdhani', sans-serif;
}

.servicetitles {
    color: #023e8a;
    font-family: 'Rajdhani', sans-serif;
}

.lunchedproject {
    color: #023e8a;
    font-family: 'Rajdhani', sans-serif;
}

.ourservice {
    background-image: linear-gradient(
        to bottom,
        #fff,
        #f6fdff
    );
}

.service-item h5 {
    color: #023e8a;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}


/* =========================================================
   TECHNOLOGY SECTION
   ========================================================= */

.tech-section-container,
.tech-section-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.tech-section-container {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}


/* Left Image */

.tech-image-block {
    flex: 1;
    position: relative;
    width: 100%;
}

.tech-image-block .main-banner-img {
    width: 100%;
    height: 440px;
    display: block;
    object-fit: cover;
}

.tech-image-block .floating-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 70px;
    height: 70px;
    background-color: #21162e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
}

.tech-image-block .floating-badge img {
    width: 65%;
    height: auto;
}


/* Right Content */

.tech-content-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-content-block .section-heading {
    font-size: 48px;
    font-weight: 500;
    color: #023e8a;
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.2;
    margin-bottom: 25px;
}

.tech-content-block .sub-heading {
    font-size: 20px;
    font-weight: 400;
    color: #0077b6;
    margin-bottom: 20px;
    line-height: 1.4;
}

.tech-content-block .desc-text {
    font-size: 15px;
    line-height: 1.6;
    color: #0c0c0c;
    margin-bottom: 35px;
}

.tech-content-block .pricing-btn {
    display: inline-block;
    align-self: flex-start;
    background-color: #5c3bf5;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    box-shadow: rgba(92, 59, 245, 0.3) 0px 10px 20px;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.tech-content-block .pricing-btn:hover {
    background-color: #492ad4;
    transform: translateY(-2px);
}


/* =========================================================
   TECHNOLOGY RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .tech-content-block .section-heading {
        font-size: 38px;
    }

    .tech-section-container {
        gap: 30px;
    }
}


@media (max-width: 768px) {

    .tech-section-container {
        flex-direction: column;
        text-align: left;
        gap: 40px;
        margin: 40px auto;
    }

    .tech-content-block .section-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .tech-image-block .floating-badge {
        top: 15px;
        left: 15px;
        width: 55px;
        height: 55px;
    }
}


/* =========================================================
   FINAL MOBILE NAVBAR SAFETY OVERRIDE
   ========================================================= */

/*
   हा block सर्वात शेवटी ठेवला आहे.
   त्यामुळे Bootstrap किंवा template मधील कोणताही
   .sticky-top background navbar ला black करू शकणार नाही.
*/

@media (max-width: 991.98px) {

    .navbar,
    .navbar-light,
    .navbar.sticky-top,
    .navbar-light.sticky-top,
    .sticky-top.navbar-light {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;

        background: transparent !important;
        background-color: transparent !important;

        box-shadow: none !important;
    }

    .navbar-light .navbar-collapse,
    .navbar-light .navbar-nav {
        background: transparent !important;
    }
}


/* =========================================================
   FINAL DESKTOP NAVBAR SAFETY OVERRIDE
   ========================================================= */

@media (min-width: 992px) {

    .navbar,
    .navbar-light,
    .navbar.sticky-top,
    .navbar-light.sticky-top,
    .sticky-top.navbar-light {
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }
}



/\*\*\*\*\*\*\*\*\*\* Template CSS \*\*\*\*\*\*\*\*\*\*/
\:root {
    \--primary: #2124B1;
    \--secondary: #4777F5;
    \--light: #F7FAFF;
    \--dark: #1D1D27;
}
body{
    font-family: Livvic, sans-serif !important;
}

/\*\*\* Spinner \*\*\*/
\#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

\#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/\* मुख्य Navbar ची सुरुवातीची स्थिती \*/
.navbar {
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s ease-in-out; /\* स्मूथ ॲनिमेशनसाठी \*/
    z-index: 999;
     /\*background: #060822  !important;\*/
}

/\* स्क्रोल केल्यानंतर जेव्हा हा क्लास ॲड होईल \*/
.navbar.sticky-top {
    position: fixed !important;
    top: 0;
    animation: smoothScroll 0.5s forwards; /\* वरून खाली येणारे ॲनिमेशन \*/
     background: #060822  !important;
}

/\* वरून खाली सरकण्यासाठी ॲनिमेशन कीफ्रेम्स \*/
@keyframes smoothScroll {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}
/\*\*\* Heading \*\*\*/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}



/\*\*\* Button \*\*\*/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}



/\*\*\* Navbar \*\*\*/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 25px 0;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 25px 0;
    /\* color: var(--dark) !important; \*/
}

.navbar-light .navbar-nav .nav-link\:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
    font-size: 25px;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
         background: #060822  !important;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: white !important;
    }





    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        /\* border-bottom: 1px solid rgba(256, 256, 256, .1); \*/
        z-index: 999;
        /\*background: #060822  !important;\*/
     
    }
    
    .sticky-top.navbar-light {
        position: fixed;
          background: #060822  !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;

        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link\:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

   
}

.bg-primary {
  background-color: #060822 !important;
}

/\*\*\* Hero Header \*\*\*/
.hero-header {
    /\*background:\*/
    /\*    url(../img/bg-dot.png),\*/
    /\*    url(../img/bg-dot.png),\*/
    /\*    url(../img/bg-round.png),\*/
    /\*    url(../img/bg-tree.png),\*/
    /\*    url(../img/bg-bottom-hero.png);\*/
    /\*background-position:\*/
    /\*    10px 10px,\*/
    /\*    bottom 190px right 10px,\*/
    /\*    left 55% top -1px,\*/
    /\*    left 45% bottom -1px,\*/
    /\*    center bottom -1px;\*/
    /\*background-repeat: no-repeat;\*/
    /\*background-size:\*/
    /\*    auto,\*/
    /\*    auto,\*/
    /\*    auto,\*/
    /\*    auto,\*/
    /\*    100% auto;\*/
  background: url(../img/navbar.jpg); 
 position: relative;
  z-index: 1;
  /\*height: 750px;\*/
  min-height: 100vh;

    background-repeat: repeat;
    background-size: auto;
  background-repeat: no-repeat;
  background-size: cover;
}



/\*\*\* Section Title \*\*\*/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}



/\*\*\* Service \*\*\*/
.service-item {
    position: relative;
    height: 350px;
    padding: 30px 25px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
      box-shadow: 0 11px 18px 0 rgba(0, 0, 0, 0.29);
}

.service-item\:hover {
  background-color: #e7fbff;
  box-shadow: 0 11px 18px 0 rgba(0, 0, 0, 0.29);
  transform: translateY(-5px);
 color: #023e8a !important;
}

.service-item p\:hover {
color: #0077b6;
}
.service-item p{
  color: #0c0c0c !important;
}
.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    transition: .5s;
}

.service-item\:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

/\* .service-item\:hover h5,
.service-item\:hover p {
    color: var(--light);
} \*/

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item\:hover a.btn {
    color: white;
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.service-item\:hover a.btn::before {
    width: 100%;
   background-image: linear-gradient(270deg, #030b63, #0179af);
   
}



/\*\*\* Project Portfolio \*\*\*/
.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item\:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item\:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}



/\*\*\* Footer \*\*\*/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social\:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link\:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a\:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.abouttop
{
  text-align: center;
  padding-top: 100px;
  position: relative;
  background-image: url(../img/section-courses.png);
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
  background-size: cover;
  background-position: center;
  height: 200px;  
}



/\* -------------------Conatct Us------------------- \*/
 
.contactus
{
  /\* background-image: linear-gradient(45deg, #864ef2, #6755F4); \*/
  background-image: linear-gradient(rgba(243, 245, 253, 1), rgba(243, 245, 253, 1)) !important;
  padding: 10px;
}
.contactus h1{
  text-align: center;
  margin-top: 20px;
} 
.contactus p{
  text-align: center;
}
\#image{
  background-image: url('./../../assets/img/contctbackground.webp'); 
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
}

.contctustitle {
position: absolute;
top: 120px;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 30px;
}
.main{
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.container-fuild{
  margin-top: 70px;
}
.contentbox{
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 10px 10px 25px 5px #9e9e9e;
  box-shadow: 16px 16px 8px rgba(0, 0, 0, .1);
  border-radius: 10px;
  border: 1px solid black;
 /\* animation: container 1.5s ease;\*/

}
@keyframes contentbox {
  0%{
      margin-top: -100%;
  }
  100%{
      top: 0;
  }
}
.contentbox .image {
  width: 50%;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  /\* बदल: वेळ 0.8s वरून 2.5s केला आणि स्मूथनेससाठी ease-in-out वापरला \*/
  animation: smoothBounce 1s ease-in-out infinite alternate;
}

/\* नवीन स्मूथ बाउन्स ॲनिमेशन \*/
@keyframes smoothBounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px); /\* हलकेच १५ पिक्सेल वर-खाली होईल \*/
  }
}
.contentbox .image::before{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #f0f6ff;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.contentbox .image img{
 margin-left: 82px;
 height: 300px;
 z-index: 1;
}
.contentbox .form-area{
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /\*animation: form 1.8s ease;\*/
}
@keyframes form {
  0%{
      margin-left: 500px;
  }
  100%{
      left: 0;
  }
}
.contentbox .form-area h2{
  font-size: 30px;
  font-family: Arial, Helvetica, sans-serif;
}
.contentbox .form-area form{
  width: 60%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.contentbox .form-area form input{
  padding: 15px 5px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
}
.contentbox .form-area form input::placeholder{
  color: black;
  letter-spacing: 1px;
}

.contentbox .form-area form input\:hover::placeholder,
.contentbox .form-area form textarea\:hover::placeholder{
  transition: .3s all ease-in-out;
}
.contentbox .form-area form input\:focus{
  border-bottom: 1px solid #62c3fc;
  animation: border .5s ease;
}

.contentbox .form-area form textarea\:focus{
  border-bottom: 1px solid #62c3fc;
  animation: border .3s ease;
}

.contentbox .form-area form textarea{
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  resize: none;
}
.contentbox .form-area form textarea::placeholder{
  font-size: 14px;
  color: black !important; 
  letter-spacing: 1px;
}
.contentbox .form-area form button{
  margin-top: 10px;
  border: none;
  padding: 10px 0px;
  border-radius: 30px;
  background-color: #62c3fc;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: .3s all ease-in-out;
  margin-bottom: 20px;
}
.contentbox .form-area form button\:hover{
  background-color: #2fa5e9;
}
.contentbox .form-area .social-icons{
  margin-top: 50px;
  display: flex;
}

@keyframes border {
  0%{
      width: 0%;
  }
  100%{
      width: 100%;
  }
}

@media (min-width:1200px)
{
  .main .contentbox{
      height: 85vh;
      background: #fff;
      margin-top: 40px;
      width: 1180px;
  }
  
}

@media (max-width:1200px) and (min-width:900px){
  body::before{
      height: 200px;
      width: 200px;
  }
  .main .contentbox{
      height: 85vh;
  }
  .main .contentbox .image img{
      margin-left: 30px;
  }
  .main .contentbox .form-area h2{
      font-size: 25px;
  }
  .form-area h2{
      color\:white;
  }
}

@media (max-width:900px) and (min-width:600px){
  body::before{
      height: 150px;
      width: 150px;
  }
  .main .contentbox{
      width: 750px;
      background: #fff;
  }
  .main .contentbox .image img{
      height: 150px;
      margin-left: 30px;
  }
  .main .contentbox .form-area form{
      width: 90%;
  }
  .form-area h2{
      color\:white;
  }

}
@media (max-width:600px){
  body{
      height: auto;
  }
  body::before{
      height: 100px;
      width: 100px;
  }
  .main .contentbox{
      width:300px;
      height: auto;
      flex-direction: column;
      margin: 20px 0px;
      box-shadow: none;
      background: #fff;
  }
  .main .contentbox .image{
      height: 200px;
      width: 100%;
      display: flex;
      justify-content: center;
  }
  .main .contentbox .image::before{
      height: 200px;
      clip-path: polygon(0% 0%, 100% 0, 100% 81%, 50% 100%, 0 81%);
  }
  .main .contentbox .image img{
      height: 150px;
      margin-left: 0px;
      margin-top: -40px;
  }
  .main .contentbox .form-area{
      width: 100%;
  }
  .main .contentbox .form-area h2{
      font-size: 25px;
  }
  .main .contentbox .form-area form{
      width: 90%;
      margin-top: 10px;
  }
  .main .contentbox .social-icons{
      margin: 20px 0px;
  }

}
.contct\_title h1{
  text-align: center;
  color: white;
 font-family: Livvic, sans-serif !important;
  font-weight: 500 !important;

}
.contct\_title p{
  text-align: center;
  color: white;
}

.contct\_title h4{
  text-align: center;
  color: white;
  margin-bottom: 30px;
  font-family: Livvic, sans-serif !important;
}

.contact\_info{
  padding:40px;
  background-image: url(../img/bag2.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
}
 .card\_contact{
  padding:25px;
  position\:relative;
  max-width: 400px;
  border-radius:10px;
  margin:20px;
  background-image\:url("[https://i.ibb.co/Phq8X4f/pattern.png](https://i.ibb.co/Phq8X4f/pattern.png)");
  background-repeat\:no-repeat;
  background-position\:top left;
  text-align\:center;
  /\* box-shadow:0px 1px 2px -1px rgba(1,1,1,0.5); \*/
  /\* box-shadow: 0px 8px 15px rgba(211, 211, 211, 0.7), 
  0px -8px 15px rgba(211, 211, 211, 0.7), 
  -8px 0px 15px rgba(211, 211, 211, 0.7), 
  8px 0px 15px rgba(211, 211, 211, 0.7);  \*/
  transition:0.5s;
  border:1px solid white;
  background-color: white;
  }
  
   .card\_contact\:hover{
  box-shadow:0px 4px 14px -4px rgba(1,1,1,0.5);
  }
  
.card\_contact .tag{
  position\:absolute;
  display\:flex;
  align-items\:center;
  justify-content\:center;
  padding:10px;
  border-radius:50%;
  position\:absolute;
  top:2%;
  right:2%;
  }
  
 .card\_contact img{
  width:100px;
  display\:block;
  margin\:auto;
  }
  
  .card\_contact h1{
  font-size:1.5em;
  }
  
 .card\_contact p{
  color\:rgba(1,1,1,0.7);
  line-height:1.8em;
  }
  
  
  @media (max-width:820px){
  .card\_contact{
  padding:1rem;
  margin:20px 0;
  }
  }
  .card\_contact h5{
    font-size: 16px;
  }
  
/\* ========================= Services =========================== \*/

.servicetop {
    text-align: center;
    padding-top: 200px;
    position: relative;
    background-image: url(../img/section-courses.png);
    background-size: cover;
    background-position: center;
    height: 200px;
    background-color: white;
}

.services\_section {
    background-image: url("../img/servicebg.png"), url("../img/servicebg.png");
    grid-template-rows: auto;
    border-radius: 20px;
    background-color: #e7fbff;
    background-position: 100% 50%, 0% 50%;
    background-size: 528px 528px, 528px 528px;
    background-repeat: no-repeat, no-repeat;
}

.services\_section1 {
    background-image: url("../img/section-new\.png");
    background-position: top center;
}

.services\_section h1 {
    text-align: center;
    margin-top: -100px;
}

.card\_data {
    display: flex; /\* फ्लेक्सबॉक्स जोडला जेणेकरून रो आणि कॉलम बदलता येतील \*/
    background: #F3F5FD;
    min-height: 106px;
    border: 1px solid black;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px; /\* कॉर्नर्स स्मूथ केले \*/
    padding: 15px;
}
.primary-button{
    padding: 7px 25px;
  border-radius: 25px;
  background-image: -webkit-gradient(linear, right top, left top, from(#030b63), to(#0179af));
  background-image: linear-gradient(270deg, #030b63, #0179af);
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
  font-family: Rajdhani, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  text-decoration: none;
  border\:none !important;
}
.primary-button\:hover{
color: white;
}

/\* रिस्पॉन्सिव्ह इमेज: मोबाईलवर इमेज बाहेर जाणार नाही \*/
.imgservice {
    width: 100%;
    max-width: 500px;
    height: 300px;
}

.data\_science\_details {
    font-size: 16px;
}

.sdetails {
    color: #0c0c0c;
}

.sstitle {
    color: #023e8a;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
}

.stitle {
    color: #0077b6;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
}



/\* 1. Mobile Devices (Extra Small: 0px to 575px) \*/
@media (max-width: 575.98px) {
    .corsehighligt h1 {
        font-size: 1.5rem;
    }
    .services\_section h1 {
        margin-top: -20px; /\* मोबाईलवर हेडिंग वर जाणार नाही \*/
    }
    .card\_data {
        flex-direction: column !important; /\* कंटेंट एकाखाली एक येईल \*/
        text-align: center;
        align-items: center;
    }
    .card\_course img {
        margin-bottom: 10px;
    }
    .coursesectioncard {
        width: 100% !important; /\* कार्ड पूर्ण रुंदी घेईल \*/
        margin: 10px 0 !important;
    }
    .col-6 {
        width: 100% !important; /\* बूटस्ट्रॅपचे col-6 मोबाईलवर 100% होईल \*/
    }
    .services\_section {
        background-size: 200px 200px; /\* मोबाईलवर बॅकग्राउंड इमेज लहान केली \*/
    }
}

/\* 2. Small Devices / Tablets (576px to 767px) \*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .card\_data {
        flex-direction: row;
        text-align: left;
    }
    .corsehighligt h1 {
        font-size: 1.8rem;
    }
    .coursesectioncard {
        width: 100% !important;
    }
}

/\* 3. Medium Devices / Laptops (768px to 991px) \*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .coursesectioncard {
        width: 280px !important;
    }
    .corsehighligt h1 {
        font-size: 2.2rem;
    }
    .card\_data {
        flex-direction: row;
    }
}

/\* 4. Large Desktops (992px to 1399px) \*/
@media (min-width: 992px) and (max-width: 1399.98px) {
    .card\_data {
        flex-direction: row;
    }
    .coursesectioncard {
        width: 320px !important;
    }
    .corsehighligt h1 {
        font-size: 2.8rem;
    }
}

/\* 5. Ultra-wide Screens (1400px and up) \*/
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    .corsehighligt {
        padding: 40px;
    }
    .corsehighligt h1 {
        font-size: 3.5rem;
    }
}



/\* 
/\* How We Work Section Base \*/
.how-we-work-section {
    background-color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
}
/\* १. कार्डची मूळ स्थिती (Base Class) \*/
.work-step-card {
    /\* मूळ पॅडिंग आधीच सेट करून ठेवा, जेणेकरून होव्हरवर धक्का बसणार नाही \*/
    padding: 50px 30px 25px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px; /\* कोपरे थोडे गोल करण्यासाठी \*/
    background-color: transparent;
    
    /\* FIXED: स्मूथ इफेक्टसाठी ट्रान्झिशन जोडले \*/
    transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

/\* २. माउस नेल्यावर होणारा बदल (\:hover) \*/
.work-step-card\:hover {
    background-color: #e7fbff;
    box-shadow: 0 11px 18px 0 rgba(0, 0, 0, 0.29);
    transform: translateY(-5px); 
}

.section-title {
    color: #023e8a;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
}

.section-subtitle{
  color: #0c0c0c !important;
}

/\* नंबर आणि इमेज एकत्र ठेवणारा रिलेटिव्ह बॉक्स \*/
.step-content-wrapper {
    position: relative;
    width: 160px;  /\* इमेज आणि नंबरसाठी सुरक्षित स्पेस \*/
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: flex-end; /\* इमेज तळाशी ठेवण्यासाठी \*/
    margin: 0 auto;
}

/\* FIXED: नंबरची पोझिशन डाव्या बाजूला आणि वर केली \*/
.step-number {
    position: absolute;
    top: -10px;
    left: -12px;
    font-size: 2.5rem;
    font-weight: 700;
   font-family: Rajdhani, sans-serif;
    color: #0077b6;
    line-height: 1;
    z-index: 1;
    opacity: 0.3;
}

/\* इमेज आयकॉन डिझाईन \*/
.step-icon-wrap {
    position: relative;
    z-index: 2; /\* इमेज नंबरच्या थोडी वर ओव्हरलॅप होईल \*/
}

.step-icon-wrap img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/\* टायटल \*/
.step-title {
    color: #023e8a;
    font-weight: 700;
    font-size: 1.35rem;
    margin-top: 15px;
    white-space: nowrap;
}

/\* Responsive Tweaks \*/
@media (max-width: 575.98px) {
    .section-title { font-size: 2rem; }
    .work-step-card { margin-bottom: 25px; }
}
 \*/



/\* =====================================Review======================= \*/

    .testimonial-section-wrapper, 
    .testimonial-section-wrapper \* {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6fdff));
    }

    .testimonial-section-wrapper {
        width: 100%;
        background-color: #ffffff;
        padding: 60px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: sans-serif;
        overflow: hidden;
    }

    .testimonial-section-wrapper .main-title {
        font-family: 'Rajdhani', sans-serif;
        font-size: 46px;
        font-weight: 800;
        color: #023e8a;
        margin-bottom: 50px;
        text-align: center;
    }

    .slider-outer-container {
        position: relative;
        width: 100%;
        max-width: 1440px;
        padding: 0 70px;
    }

    .swiper-container.mySwiper {
        width: 100%;
        overflow: hidden;
        padding: 20px 10px 60px 10px;
    }

    .swiper-container.mySwiper .swiper-wrapper {
        display: flex !important;
        align-items: stretch !important;
    }

    /\* 🚨 OPACITY GAME: बाजूचे दोन्ही कार्ड्स फेंट (अंधुक) \*/
    .swiper-container.mySwiper .swiper-slide {
        height: auto !important;
        display: flex !important;
        align-items: stretch !important;
        opacity: 0.35 !important; 
        transition: opacity 0.3s ease-in-out;
    }

    /\* 🚨 PERFECT CENTER HIGH-LIGHT: मधल्या कार्डची ओपॅसिटी FULL \*/
    .swiper-container.mySwiper .swiper-slide-active + .swiper-slide {
        opacity: 1 !important;
    }

    /\* टेस्टीमोनिअल कार्ड डिझाईन \*/
    .swiper-container.mySwiper .testimonial-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: center;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.06) 0px 10px 35px;
        border-radius: 12px;
        padding: 15px 30px 40px 30px;
        position: relative;
        width: 100%;
        border: 1px solid #f7f7f7;
        text-align: center;
        flex: 1 !important;
        border:0.5px solid gray;
    }

    /\* फक्त मधल्या कार्डचे कोट्स निळे \*/
    .swiper-container.mySwiper .testimonial-card .quotes-icon {
        font-size: 80px;
        line-height: 1;
        font-weight: 900;
       color: #03a9f4; 
    
        transition: color 0.3s ease;
    }
    .swiper-container.mySwiper .swiper-slide-active + .swiper-slide .testimonial-card .quotes-icon {
        color: #03a9f4; 
    }

    .swiper-container.mySwiper .testimonial-card .info-text {
        font-size: 15px;
        line-height: 1.6;
        font-family: Livvic, sans-serif;
  color: #0c0c0c;
        margin-bottom: 10px;
        flex-grow: 1 !important;
    }

    .swiper-container.mySwiper .card-footer-info {
        margin-top: auto !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .swiper-container.mySwiper .testimonial-card .rating-img {
        width: 110px !important;
        height: auto !important;
        margin-bottom: 15px;
    }

    .swiper-container.mySwiper .testimonial-card .user-name {
        font-family: 'Rajdhani', sans-serif;
        font-size: 22px;
        font-weight: 700;
       color: #023e8a;
        margin-bottom: 5px;
    }

    .swiper-container.mySwiper .testimonial-card .user-desig {
        font-size: 13px;
       color: #0077b6;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    /\* अ‍ॅरोज \*/
    .custom-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        z-index: 10;
        cursor: pointer;
    }
    .custom-nav-btn.prev-arrow { left: 15px; }
    .custom-nav-btn.next-arrow { right: 15px; }
    .custom-nav-btn img { width: 100%; height: 100%; object-fit: contain; }

    .swiper-pagination-container { position: absolute; bottom: 15px !important; width: 100%; text-align: center; }
    .swiper-pagination-bullet { width: 8px; height: 8px; background: #cccccc !important; opacity: 1; margin: 0 5px !important; }
    .swiper-pagination-bullet-active { background: #03a9f4 !important; }

    @media (max-width: 768px) {
        .slider-outer-container { padding: 0 45px; }
        .custom-nav-btn { display: none; }
        .swiper-container.mySwiper .swiper-slide { opacity: 1 !important; }
    }

    .aboutus{
        color: #023e8a;
        font-family: 'Rajdhani', sans-serif;
    }
    .abouttitle{
         color: #023e8a;
        font-family: 'Rajdhani', sans-serif;
    }
    .servicetitles{
          color: #023e8a;
        font-family: 'Rajdhani', sans-serif;
    }

    .lunchedproject{
          color: #023e8a;
        font-family: 'Rajdhani', sans-serif;
    }
    .ourservice{
        background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6fdff));
}
.service-item h5{
       color: #023e8a;
        font-family: 'Rajdhani', sans-serif; 
        font-weight: 700;
}
    



    /\* बेसिक रीसेट आणि फॉन्ट \*/
    .tech-section-container, 
    .tech-section-container \* {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .tech-section-container {
        width: 100%;
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px; /\* दोन्ही कॉलममधील स्पेस \*/
    }

    /\* --- डावा कॉलम: इमेज एरिया --- \*/
    .tech-image-block {
        flex: 1;
        position: relative;
        width: 100%;
    }

    /\* मुख्य इमेज \*/
    .tech-image-block .main-banner-img {
        width: 100%;
        height: 440px;
        display: block;
        object-fit: cover;
    }

    /\* इमेजच्या वरचा डाव्या कोपऱ्यातील गोल लोगो/बॅज \*/
    .tech-image-block .floating-badge {
        position: absolute;
        top: 25px;
        left: 25px;
        width: 70px;
        height: 70px;
        background-color: #21162e; /\* इमेजमधील तो डार्क कलर \*/
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
    }

    /\* बॅजच्या आतला आयकॉन/इमेज \*/
    .tech-image-block .floating-badge img {
        width: 65%;
        height: auto;
    }

    /\* --- उजवा कॉलम: कॉन्टेंट एरिया --- \*/
    .tech-content-block {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /\* मुख्य हेडिंग \*/
    .tech-content-block .section-heading {
        font-size: 48px;
        font-weight: 500;
        color: #023e8a;
        font-family: 'Rajdhani', sans-serif;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    /\* सब-हेडिंग / हायलाईट टेक्स्ट \*/
    .tech-content-block .sub-heading {
        font-size: 20px;
        font-weight: 400;
       color: #0077b6;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    /\* पॅराग्राफ डिस्क्रिप्शन \*/
    .tech-content-block .desc-text {
        font-size: 15px;
        line-height: 1.6;
       color: #0c0c0c;
        margin-bottom: 35px;
    }

    /\* बटन स्टाईल \*/
    .tech-content-block .pricing-btn {
        display: inline-block;
        align-self: flex-start; 
        background-color: #5c3bf5; 
        color: #ffffff;
        text-decoration: none;
        padding: 14px 35px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 30px;
        box-shadow: rgba(92, 59, 245, 0.3) 0px 10px 20px;
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .tech-content-block .pricing-btn\:hover {
        background-color: #492ad4;
        transform: translateY(-2px);
    }

    /\* ==========================================================================
       🚨 RESPONSIVE MEDIA QUERIES (मोबाईल आणि टॅबलेटसाठी)
       \========================================================================== \*/
    @media (max-width: 991px) {
        .tech-content-block .section-heading {
            font-size: 38px;
        }
        .tech-section-container {
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .tech-section-container {
            flex-direction: column; /\* मोबाईलवर एकाखाली एक येणार \*/
            text-align: left;
            gap: 40px;
            margin: 40px auto;
        }

        .tech-content-block .section-heading {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .tech-image-block .floating-badge {
            top: 15px;
            left: 15px;
            width: 55px;
            height: 55px;
        }
    }
    
    
