@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
}

:root {
    --bluecolor: #065974;
    --warning: #FFCC00;
    /* global scope */
}

.bluecolor {
    color: var(--bluecolor);
}

.warning {
    background-color: var(--warning);
}

.bluebg {
    background-color: var(--bluecolor) !important;
}

body {
    overflow-x: hidden !important;
    font-size: 15px !important;
    width: 100% !important;
    font-family: "Mulish", sans-serif !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.1s ease-in-out;
}

.loader-gif {
    width: 150px;
    height: auto;
}

.loaded {
    opacity: 0;
    visibility: hidden;
}

/* .container {
    margin: 0 auto;
    padding: 18px;
    max-width: 1060px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
} */

.container--vertical {
    flex-direction: column;
}


.template__brand {
    font-size: 16px;
    /* text-transform: lowercase; */
}

.template__header {
    position: fixed;
    top: 0;
    width: 100vw !important;
    background: var(--bluecolor);
    color: #FFFFFF;
    z-index: 1000;
}

.template__nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.template__nav-item {
    font-size: 16px !important;
    text-transform: capitalize;
}

.template__nav-item a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 30px;
    padding: 5px 10px;
    display: block;
}

.template__section {
    padding-top: 80px;
}

.template .active {
    color: #FFCC00;
    font-weight: bold !important;
}

/* Hamburger Styles - Hidden on Desktop */
.hamburger {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.margin_video_hero {
    background-image: url(../Images/Gemini_Generat.png);
    background-size: 100% 100%;
    /* width: 100vw !important; */
    height: 200px;
}

/* Mobile-Specific Styles */
@media screen and (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .template__header .container {
        justify-content: space-between;
    }

    .template__nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        background: var(--bluecolor);
        transition: height 0.3s ease-in-out;
    }

    .template__nav.open {
        height: auto;
        padding-bottom: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .template__nav-item a {
        margin: 0;
        padding: 10px 18px;
        border-bottom: 1px solid #333333;
    }

    .template__nav-item a.active {
        background-color: #000000;
    }

    .hamburger.open .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.logo_website {
    width: 60px;
}

.about_imgs {
    width: 100%;
    border-radius: 20px;
}


.atithya-box {
    background: var(--bluecolor);
    color: #fff;
    border-radius: 5px;
    padding: 30px 30px;
    position: relative;
    z-index: 2;

}

.atithya-box2 {
    background: var(--bluecolor);
    color: #fff;
    border-radius: 5px;
    padding: 30px 30px;
    position: relative;
    z-index: 2;
}

.corner-border {
    position: relative;
    padding: 25px;
}

/* Top-Left corner */
.corner-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    /* line size */
    height: 80px;
    border-top: 5px solid #ffc107;
    border-left: 5px solid #ffc107;
    border-radius: 3px;
}

/* Bottom-Right corner */
.corner-border::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 80px;
    border-bottom: 5px solid #ffc107;
    border-right: 5px solid #ffc107;
    border-radius: 3px;
}

.step-icon .icon {
    width: 60px;
    height: auto;
}

.step-box p.small {
    font-size: 0.9rem;
}

/* how work */


.step-box {
    background: #ffffff;
    transition: 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
    border-radius: 50px 0 50px 0 !important;
    border-top: 5px solid var(--bluecolor);
    border-bottom: 5px solid var(--bluecolor);
    cursor: pointer;
}

/* Black Overlay Slide Top → Bottom */
.step-box::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bluecolor);
    opacity: 0.85;
    transition: 0.4s ease-in-out;
    z-index: 1;
}

.step-box:hover::before {
    top: 0;
}

/* Text & number white on hover */
.step-box:hover h5,
.step-box:hover p,
.step-box:hover .step-number {
    color: #ffffff !important;
    z-index: 2;
    position: relative;
}

/* Step number */
.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff6a00;
    color: white;
    font-weight: bold;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    z-index: 2;
}

.step-content {
    position: relative;
    z-index: 2;
}

/* ICON hover disabled */
.icon {
    width: 80px;
    transition: none !important;
    filter: none !important;
    border-radius: 10px !important;
}


.info-card {
    background-color: var(--bluecolor);
    border-radius: 8px;
    position: relative;
    color: white;
}

/* counter up */

.container_Success {
    background-color: var(--bluecolor);
    color: #ffffff;
    border-radius: 8px;
}

.how-title {
    font-size: 2.5rem;
}

.counteup_size {
    font-size: 60px;
    font-weight: 900 !important;
    line-height: 1.2;
}

.bg_story {
    /* background-color: rgba(255, 255, 255, 0.05); */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.story_4 {
    border-right: none;
}

/* For each box */
.story_1 {
    background-image: linear-gradient(#065974d5, #065974d5), url("../images/bg_story.png");
    background-repeat: no-repeat;
    height: 200px;
    background-position: center;
    background-size: contain;
}

.story_2 {
    background-image: linear-gradient(#065974d5, #065974d5), url("../images/second.png");
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.story_3 {
    background-image: linear-gradient(#065974d5, #065974d5), url("../images/third.png");
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.story_4 {
    background-image: linear-gradient(#065974d5, #065974d5), url("../images/fourth.png");
    height: 200px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* partner */


.client-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 10px;
}

.client-logo {
    max-width: 80%;
    max-height: 80px;
    width: auto;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out;
}

.client-logo:hover {
    opacity: 1;
}

.client-carousel .owl-nav button {
    font-size: 2rem;
    color: #007bff !important;
    background: none !important;
}

.client-carousel .owl-dots .owl-dot span {
    background: #007bff !important;
}

/* end of */
.unstyleds2 {
    padding-left: 0;
    list-style: circle;
}

/* contact form */
.contact_us {
    /* max-width: 900px; */
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control {
    border-radius: 5px;
    padding: 10px;
}

.btn-dark {
    background-color: var(--bluecolor);
    transition: background-color 0.3s;
}

.btn-dark:hover {
    background-color: var(--warning);
    color: var(--bluecolor);
}

/* footer */
.bluebg {
    background-color: #2c3e50;
}

/* लोगो स्टाइलिंग */
.footer-logo {
    width: 100px;
    height: auto;
    max-width: 100%;
}

/* उपयुक्त लिंक्स स्टाइलिंग */
.footer-links-list li {
    margin-bottom: 8px;
}

.footer-link,
.footer-link-contact {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover,
.footer-link-contact:hover {
    color: #ffd700 !important;
}

.footer-heading {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}



.social-icons-container a {
    margin: 0 5px;
}

@media (max-width: 767.98px) {
    .footer-description {
        text-align: left !important;
    }

    .footer-description,
    .footer-link,
    .footer-link-contact,
    .small {
        font-size: 0.95rem;
    }
}

/* end of footer */

.footer-copyright-section {
    border-top: 1px solid #eee;
}

.copyright-content {
    font-size: 14px;
}

.brand-name,
.designer-link {
    color: #065974;
    font-weight: bold;
    font-size: 16px;
}

.designer-link {
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.designer-link:hover {
    color: #043e50;
}

/* testimonial */

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* owl carousal */
.testi-card {
    position: relative;
    background: #f7f7f7;
    border-radius: 6px;
    border: 1px solid #065974;
    padding: 35px 30px 25px 80px;
    height: 350px !important;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.09); */
}

.testi-left-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 30%;
    background: var(--bluecolor);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testi-left-shape i {
    color: #fff;
    font-size: 28px;
}

.testi-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    text-align: justify;
}

.testi-name {
    margin-top: 8px;
    font-weight: bold;
    font-size: 16px;
}

.testi-role {
    font-size: 14px;
    color: #555;
}

.star i {
    color: var(--bluecolor);
    margin-right: 3px;
}

.testi-left-shape i {
    color: #fff;
    font-size: 28px;
}


/* clent */
@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logosclient {
    overflow-x: hidden;

    position: relative;

    padding: 30px 0px;
    white-space: nowrap;
}

.logosclient:before,
.logosclient:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}

/* .logosclient:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.229));
}

.logosclient:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(0, 0, 0, 0.229));
} */

.logo_items {
    display: inline-block;
    animation: 85s slides infinite linear;
}

.logosclient:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img {
    height: 120px;
    margin: 0px 30px;
    background-color: #f7f7f7;
    border: 1px solid var(--bluecolor);
    border-radius: 10px;

    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.logo_items img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* client */
@media (max-width: 767.98px) {
    .testi-footer {
        text-align: center !important;
        float: none !important;
        margin-top: 15px;
        width: auto;
    }
}

.atithya-img {
    width: 100% !important;
}



/* /////////////////// */



/* तुमच्या थीमचा रंग निश्चित करा */
:root {
    --bluecolor: #065974;
}

/* -------------------------------------- */
/* 1. Animation Box Container */
/* -------------------------------------- */
.animation-box {
    position: relative;
    height: 32px;
    width: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* -------------------------------------- */
/* 2. Animated Text */
/* -------------------------------------- */
.ani-text {
    position: absolute;
    width: 100%;
    /* सुरुवातीला टेक्स्ट दिसू नये म्हणून: */
    left: -100%;
    opacity: 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--warning);
    text-transform: uppercase;
    /* 4 सेकंदात सायकल, जलद आणि सतत */
    animation: slideInAndOut 4s infinite;
}

/* 3. Second Text (t2) साठी विलंब (Delay) */
.ani-text.t2 {
    animation-delay: 2s;
    /* 2 सेकंदांनंतर सुरू होईल */
}

/* -------------------------------------- */
/* 4. Keyframes (slideInAndOut) */
/* -------------------------------------- */
@keyframes slideInAndOut {

    /* 0% (0s): टेक्स्ट स्क्रीनच्या डावीकडे पूर्णपणे लपलेला आहे */
    0% {
        left: -100%;
        opacity: 0;
    }

    /* 10% (0.4s): टेक्स्ट स्क्रीनवर दिसणे सुरू होते */
    10% {
        left: 0%;
        opacity: 1;
    }

    /* 40% (1.6s): टेक्स्ट पूर्ण दृश्यमान राहतो */
    40% {
        left: 0%;
        opacity: 1;
    }

    /* 65% (2.6s): टेक्स्ट स्क्रीनवरून उजवीकडे बाहेर जाण्यास सुरुवात करतो */
    65% {
        left: 100%;
        opacity: 0;
    }

    /* 100% (4s): टेक्स्ट पूर्णपणे बाहेर जातो (नवीन सायकलसाठी तयार) */
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* /////////////////// */



/* end  */
@media (max-width: 767.98px) {
    .copyright-content {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 13px;
    }
}

/* end of contact form */
@media (max-width: 991.98px) {
    .bg_story {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .story_4 {
        border-bottom: none;
    }

    .story_1,
    .story_2 {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .story_2 {
        border-right: none;
    }
}


@media (max-width: 767.98px) {

    .story_1,
    .story_2,
    .story_3 {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ---------- */

@media (min-width: 992px) {

    .margin_video_hero {
        height: 700px;
    }

    .logo_website {
        width: 70px;
    }

    .atithya-box {
        margin-top: 180px !important;
        margin-right: -120px !important;
    }

    .atithya-box2 {
        margin-top: 180px !important;
        margin-left: -120px !important;
    }

    .contact_us {
        width: 70vw;
    }

    .testi-card {
        height: 285px;
    }
}