﻿
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

.testimonial-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 20px auto;
}

.testimonial-video {
    flex: 1;
    min-width: 320px;
    max-width: 36%;
    height: 600px;
}

    .testimonial-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.testimonial-text {
    flex: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

    .testimonial-text .quote {
        font-size: 50px;
        line-height: 60px;
        font-weight: 500;
        margin-bottom: 40px;
        color: #000;
    }

    .testimonial-text .name {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #000;
    }

    .testimonial-text .designation {
        font-size: 18px;
        color: #666;
    }

.testimonial-title-text {
    margin: 15px 0px 15px;
    margin-top: auto;
}





.comparison-card {
    max-width: 1000px;
    margin: 30px auto;
    border-radius: 15px;
    overflow: hidden;
}

.top-section {
    display: flex;
    background: #fff;
    padding: 40px;
}

.left-box {
    flex: 1;
    padding-right: 20px;
    padding-top: 50px;
}

    .left-box h5 {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 10px;
        color: #000;
    }

    .left-box h2 {
        font-size: 42px;
        line-height: 50px;
        color: #000;
    }

.right-box {
    flex: 1;
}

.portfolio-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.portfolio-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.percentage {
    font-size: 18px;
    font-weight: bold;
}

    .percentage .up {
        color: green;
        font-size: 14px;
    }

.opportunity {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.rebalance-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .rebalance-info div p {
        font-size: 12px;
        color: #555;
    }

.rebalance-btn {
    background: #1da889;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.note {
    font-size: 11px;
    color: #888;
    margin-top: 8px;
}

.bottom-section {
    display: flex;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 20px;
    position: relative;
}

.vs-circle {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border-radius: 50%;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #fff;
}

.traditional h4 {
    margin: 0;
    font-size: 16px;
}

.traditional p {
    margin: 5px 0 0;
    color: #bbb;
}



.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 93%), rgb(0 0 0 / 0%));
}


.services {
    background: #000;
    color: #fff;
    padding: 50px 20px;
    text-align: left;
}

.service-cards {
    display: flex;
    flex-wrap: wrap; /* ✅ allow wrapping */
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    flex: 1;
    min-width: 300px; /* ✅ prevents card from shrinking too small */
    overflow: hidden;
    transition: all 0.4s ease;
}

    .service-card:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        outline: 1px solid #fff;
        outline-offset: -20px;
        top: 0;
    }

    .service-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        transform: scale(1);
        transition: all 0.5s ease;
    }

    .service-card .card-content {
        position: absolute;
        bottom: -100%;
        left: 0;
        width: 100%;
        padding: 40px;
        color: #fff;
        background: linear-gradient(to bottom, transparent 0%, black 100%);
        transition: bottom 0.5s ease;
    }

    .service-card:hover:after {
        outline-color: #c78909;
    }

    .service-card h3 {
        margin: 0;
        font-size: 28px;
        font-weight: bold;
    }

    .service-card p {
        margin: 10px 0 0;
        font-size: 20px;
        color: #fff;
        line-height: 24px;
    }

    .service-card:hover {
        border-color: #ffcc00;
    }

        .service-card:hover img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .service-card:hover .card-content {
            bottom: 0;
        }

/* 🔥 Responsive Breakpoints */
@media (max-width: 1024px) {
    .service-card {
        flex: 1 1 calc(50% - 20px); /* 2 per row on tablets */
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%; /* full width on mobile */
        min-width: auto;
    }

        .service-card .card-content {
            padding: 30px;
        }

        .service-card h3 {
            font-size: 24px;
        }

        .service-card p {
            font-size: 16px;
        }
}


.sub-heading {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 50px;
}

.aboutus {
    position: relative;
    padding: 100px 0px;
    margin-bottom: 100px;
}

.about-text {
    margin-bottom: 50px;
}



/*------------------------------------header menu-----------------------------*/


.mxd-nav .menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
    margin-left: 45px;
}

.menu > .menu-item > a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    padding: 8px 0;
    display: inline-block;
    position: relative;
}

    .menu > .menu-item > a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        left: 2px;
        bottom: 2px;
        background: #ffffff;
        transition: 0.3s;
    }

    .menu > .menu-item > a:hover::after {
        width: 100%;
    }

.mxd-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    list-style: none;
    padding: 10px 0;
    /* margin: 10px 0px; */
    display: none;
    min-width: 250px;
    border-radius: 6px;
}

    .mxd-nav .submenu li a {
        color: #fff;
        padding: 8px 0px 8px 20px;
        display: block;
        text-decoration: none;
        font-size: 17px;
    }

        .mxd-nav .submenu li a:hover {
            background: rgba(255,255,255,0.1);
            color: #f4b400;
        }

.menu-item:hover .submenu {
    display: block;
}

.top-links {
    display: flex;
    align-items: center;
}

    .top-links a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        margin-left: 20px;
        transition: color 0.3s;
    }

        .top-links a:hover {
            color: #d4af37;
        }

.search-icon {
    font-size: 16px;
    margin-left: 20px;
    cursor: pointer;
    color: #fff;
}

    .search-icon:hover {
        color: #d4af37;
    }

.mxd-nav .menu-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-left: 6px;
    position: relative;
    text-align: center;
    line-height: 20px;
    /* margin-top: 10px; */
}

    .mxd-nav .menu-arrow::before {
        content: "›";
        font-size: 22px;
        color: #000000;
        transform: rotate(90deg);
        display: block;
        line-height: 30px;
        /* left: 10px; */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: -5px;
        /* margin: 0 auto; */
    }



.marquee__item:hover {
    animation-play-state: paused; /* Stop on hover */
}
/*--------------------------------------end-----------------------------------*/
.mxd-services-stack__title h3 {
    font-size: 6rem;
    font-weight: 600;
}

/*---------------------------------------footer----------------------------------*/
.custom-footer {
    background: #1c1c1c;
    color: #ddd;
    padding: 100px 20px 20px;
}

/* Grid Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

/* Logo */
.footer-logo {
    max-width: 100%;
    margin-bottom: 15px;
}

/* Columns */
.footer-col h4 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

    .footer-col h4::after {
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background: #ffffff; /* Yellow underline */
        margin-top: 10px;
    }

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

        .footer-col ul li a {
            color: #bbb;
            text-decoration: none;
            transition: 0.3s;
            font-size: 22px;
        }

            .footer-col ul li a:hover {
                color: #f4b400;
                padding-left: 5px;
            }

/* Contact Info */
.footer-col p {
    margin: 6px 0;
    font-size: 20px;
    display: flex;
    align-items: baseline;
    /* word-break: break-all; */
    color: #bbb;
}
.footer-col p a{
      color: #bbb;
      display: flex;
      align-items: baseline;
}
.footer-col p i {
    color: #ffffff;
    margin-right: 8px;
    font-size: 20px;
}

/* Social Icons */
.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #2e2e2e;
    color: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

    .footer-social a:hover {
        background: #f4b400;
        color: #111;
    }

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 80px;
    padding-top: 20px;
}

    .footer-bottom p {
        font-size: 18px;
        color: #aaa;
    }

.btn-caption {
    font-size: 22px;
}

.footer-text {
    margin-bottom: 20px;
}


.whatsapp {
    display: inline-block;
    position: fixed;
    right: 28px;
    bottom: 110px;
    background: limegreen;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff !important;
    text-align: center;
    line-height: 60px;
    z-index: 99999999999;
    animation: ripple-out 1.5s ease-in-out infinite;
}

    .whatsapp i {
        font-size: 32px;
    }

@keyframes ripple-out {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}





.hero-section {
    position: relative;
    background: url('../img/services/home-responsibleImg.jpg') no-repeat center center/cover;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50%;
    padding: 60px 0;
    margin-bottom: 40px;
}

.hero-content {
    max-width: 700px;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    background: linear-gradient(19.34deg, rgba(255, 255, 255, .02) .46%, rgba(255, 255, 255, .24) 93.22%);
    border-radius: 6px;
    border: 1px solid hsla(0, 0%, 100%, .2784313725);
    padding: 25px;
}

    .hero-content h5 {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        color: #ddd;
    }

    .hero-content h1 {
        font-size: 44px;
        font-weight: 500;
        line-height: 47px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
        color: #eee;
    }

.hero-link {
    display: inline-block;
    font-size: 16px;
    color: #e6a23c;
    text-decoration: none;
    border-bottom: 1px solid #e6a23c;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

    .hero-link:hover {
        color: #fff;
        border-color: #fff;
    }

/*-----------------------------------------end-----------------------------------*/




@media (min-width: 1200px) and (max-width: 1399.98px) {
    .menu-item {
        margin-left: 30px;
    }

    .menu > .menu-item > a {
        font-size: 16px;
        display: flex;
        align-items: center;
    }

    .mxd-header {
        width: -moz-calc(100% - 11.6rem);
        width: calc(100% - 11.6rem);
        display: flex;
        align-items: center;
    }

    .hero-05-title {
        font-size: 7rem;
        line-height: 70px;
    }

    .sub-heading {
        font-size: 22px;
    }

    .mxd-manifest {
        font-size: 3.4rem;
        line-height: 45px;
    }

    .mxd-stats-simple__inner {
        height: 215px;
    }

    .mxd-stats-number {
        font-size: 6rem;
    }

    .mxd-services-stack__title h3 {
        font-size: 4.5rem;
    }

    .testimonial-video {
        min-width: 220px;
        height: 380px;
    }

    .testimonial-text .quote {
        font-size: 35px;
        line-height: 35px;
    }

    .testimonial-text .name {
        font-size: 20px;
    }

    .testimonial-text .designation {
        font-size: 16px;
    }

    .testimonial-text {
        padding: 26px;
    }

    .footer-col p {
        font-size: 20px;
    }

    .footer-col ul li a {
        font-size: 20px;
    }

    .footer-col h4 {
        font-size: 24px;
    }

    .footer-col ul {
        gap: 0px;
    }

    .services h2 {
        font-size: 5rem;
    }
}



.expertise-section {
    background: #1c1c1c;
    color: #fff;
    padding: 100px 0px;
    margin-bottom: 70px;
}

.expertise-title h2 {
    font-size: 60px;
    font-weight: 500;
    border-top: 3px solid #fff;
    display: inline-block;
    padding-top: 15px;
}

.expertise-accordion {
    margin-top: 20px;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
    padding: 30px 0px;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    padding: 0px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .accordion-header .icon {
        font-size: 28px;
        transition: transform 0.3s ease;
        font-weight: 500;
    }

.accordion-body {
    display: none;
    padding: 10px 0 20px;
    font-size: 16px;
    color: #ddd;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .icon {
    content: "−";
    transform: rotate(180deg);
}

.accordion-body p {
    color: #fff;
    font-size: 19px;
}



/*-----------------------------------------features----------------------------------*/
.features-section {
    /* background: #fff; */
    padding: 60px 20px;
    position: relative;
    margin-top: -150px;
}

.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 15px 15px;
    /* text-align: center; */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1 1 220px; /* responsive width */
    max-width: 310px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .feature-card .icon {
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
        /* margin-left: auto; */
        /* margin-right: auto; */
    }

        .feature-card .icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .feature-card h3 {
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #000;
    }

    .feature-card p {
        font-size: 16px;
        color: #7f7e7e;
        line-height: 25px;
        font-weight: 400;
    }

/*------------------------------------------end----------------------------------------*/

.team-section {
    padding: 30px 0px 80px;
    position: relative;
}

.team-member {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
    background-color: #252525;
    padding: 30px;
    border-radius: 30px;
    /* align-items: center; */
}

.member-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #ffffff;
}

.member-info h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        align-items: center;
    }

    .member-image img {
        width: 100%;
        height: 100%;
    }
}



.dir-title {
    text-align: left;
    margin-top: 20px;
}

    .dir-title h4 {
        font-size: 20px;
        color: #000000;
        margin-bottom: 6px;
    }

    .dir-title p {
        text-align: left;
        font-size: 14px;
        margin-bottom: 0px !important;
        line-height: 22px;
        color: #fff;
    }






.contact-section {
    position: relative;
    margin-top: 30px;
}

.contact-container {
    max-width: 720px;
}

.contact-title {
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 20px;
}

.contact-row {
    display: flex;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

    .contact-row .label {
        width: 180px;
        font-weight: 500;
        color: #fff;
        font-size: 21px;
    }

    .contact-row .text {
        flex: 1;
        color: #fff;
        line-height: 1.5;
        font-size: 21px;
    }

.mxd-section-inner-form {
    padding: 0px 0px 80px;
}


.letter-heading {
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px;
}

.salutation {
    margin: 0 0 20px;
    font-size: 16px;
}

.letter-text {
    margin: 0 0 18px;
    font-size: 17px;
    color: #fff;
}

.letter-container a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}


.csr-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.csr-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 35px;
}

.diamond-img {
    width: 500px;
    height: auto;
    margin: 0 0px;
    /* transform: rotate(45deg); */
    overflow: hidden;
    /* text-align: right; */
    border-radius: 10px;
}

    .diamond-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* transform: rotate(-45deg); */
    }

.csr-text p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.we-do {
    position: relative;
    padding: 50px 0px 80px;
}

.our-invesment {
    position: relative;
    padding: 50px 0px 80px;
}

.our-impact {
    position: relative;
    padding: 50px 0px 80px;
}

.letter-list {
    padding-left: 25px;
    padding-top: 20px;
}

    .letter-list li {
        margin-bottom: 15px;
        list-style: disc;
    }

        .letter-list li h4 {
            font-size: 22px;
            color: #fff;
            margin-bottom: 5px;
        }

        .letter-list li p {
            font-size: 17px;
            color: #fff;
        }

.letter-section h5 {
    font-size: 25px;
    margin-bottom: 5px;
}


/*------------------------------------------bredcrumb-----------------------------*/
.breadcrumb-banner {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    /* padding: 200px 0px; */
}


    .breadcrumb-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }


.banner-text {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}


    .banner-text .subheading {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: -10px;
        display: block;
    }


    .banner-text .heading {
        font-size: 45px;
        font-weight: 600;
        margin: 0;
        display: inline-block;
        position: relative;
    }


        .banner-text .heading::after {
            content: "";
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #f7a325;
        }

/*-------------------------------------------end----------------------------------*/

.milestone{
    position:relative;
   margin-bottom:14rem;
}

.pb-80{
    padding-bottom:80px !important;
}

.section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 0px;
      gap: 40px;
    }
    .text-and-chart {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 85px;
      width: 100%;
    }
    .text-block {
      /* max-width: 30%; */
    }
    .text-block h2 {
      font-size: 4rem;
      font-weight: 600;
      line-height: 1.4;
    }
    .text-block h2 span {
      font-weight: 800;
    }

    .text-block h5{
        font-weight: 300;
        font-size: 45px;
    }
    .cta-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 22px;
      background: #fff;
      color: #000;
      border-radius: 25px;
      font-size: 20px;
      text-decoration: none;
      font-weight: 500;
    }
    .chart-card {
      background: #1a1a1a;
      border-radius: 12px;
      padding: 20px;
      width: 500px;
    }
    .chart-title {
      font-size: 14px;
      margin-bottom: 10px;
      color: #bbb;
    }
    .chart-footer {
      font-size: 12px;
      margin-top: 10px;
      color: #999;
    }
    .disclaimer {
      font-size: 11px;
      color: #666;
      margin-top: 5px;
      text-align: right;
    }


    .timeline-img{
        border-bottom:3px solid #fff;
    }




    /*------------------------founder note--------------------*/
.founder-note-section {
    padding: 80px 0;
    position: relative;
    background-color: #000;
}


.founder-note-content {
    background: url('../img/aboutus/Founder-note.jpg') no-repeat center top;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.88);
    padding: 225px 20px 70px;
    font-size: 16px;
    line-height: 1.8;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.founder-note-section.zoomed {
    background-size: 150% 150% !important;
    background-position: center top !important;
    min-height: 600px !important;
}

.founder-note-content h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
    margin-top: 20px;
}

.founder-img {
    width: 400px;
    max-width: 100%;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
    margin: 0 auto;
}

.founder-note-content p {
    margin-bottom: 14px;
    color: #000;
}

.signature-img {
    margin-top: 0px;
    max-width: 163px;
    height: auto;
    margin-bottom: 60px;
}

.f-note {
    margin-top: 30px;
}

.letter-text a{
    color:#000;
    font-weight:600;
}
.letter-text a:hover{
    color:#000 !important;
    font-weight:600;
}
/*--------------------------end---------------------------*/


/*---------------------------------------------responsive--------------------------*/
@media (max-width: 767px) {
    .hero-05-title {
        font-size: 34px;
        line-height: 43px;
        margin-bottom: 10px;
    }

    .sub-heading {
        font-size: 18px;
    }

    .mxd-services-stack__title h3 {
        font-size: 30px;
        font-weight: 600;
    }

    .services-stack {
        height: 128vh;
        min-height: 480px;
        margin-top: 30px;
    }

    .mxd-container.grid-container {
        padding: 0px;
    }

    .custom-footer {
        padding: 40px 20px 20px;
    }

    .mxd-container {
        padding: 5px;
    }

    .footer-col p {
        font-size: 17px;
    }

    .footer-col ul li a {
        font-size: 17px;
    }

    .footer-col h4 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .footer-col ul li {
        margin-bottom: 0px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .footer-container {
        gap: 20px;
    }

    .footer-bottom p {
        font-size: 15px;
    }

    .about-text {
        padding: 20px;
        margin-bottom: 10px;
    }

    .aboutus {
        position: relative;
        padding: 40px 0px;
    }

    .mxd-section.padding-pre-grid {
        padding-bottom: 5rem;
    }

    p.t-small-mobile {
        font-size: 20px;
    }

    .expertise-section {
        padding: 100px 20px;
    }

    .expertise-title h2 {
        font-size: 35px;
    }

    .accordion-header {
        font-size: 18px;
    }

    .accordion-item {
        padding: 20px 0px;
    }

    .accordion-body p {
        font-size: 17px;
    }

    .mxd-section.padding-pre-title {
        padding-bottom: 5rem;
    }

    .hero-content h1 {
        font-size: 35px;
        line-height: 43px;
    }

    .banner-text .heading {
        font-size: 30px;
    }

    .breadcrumb-banner {
        min-height: 320px;
    }

    .mxd-section.padding-default {
        padding-bottom: 4rem;
    }

    .holder-head {
        padding: 0px 20px;
    }

    .team-section {
        padding: 30px 0px 30px;
    }

    .inner-headline__title {
        font-size: 3.5rem;
    }

    p.t-large {
        font-size: 2rem;
    }

    .inner-headline__text {
        margin-top: 1.3rem;
    }

    .mxd-section-inner-headline {
        padding-top: 5rem;
        padding-bottom: 5rem !important;
    }

    .letter-heading {
        font-size: 30px;
    }

    .we-do {
        padding: 30px 0px 30px;
    }

    .mxd-page-content.inner-page-content {
        padding-top: 0.6rem;
    }

    .our-impact {
        padding: 30px 10px 30px;
    }

    .diamond-img {
        width: 100%;
        margin: 16px 0px;
    }

    .csr-title {
        font-size: 30px;
    }

    .mxd-section-inner-form {
        padding: 0px 0px 30px;
    }

    .mxd-logo__image {
        width: 18.6rem;
    }
    .mxd-section.padding-stacked-section {
        padding-bottom: 5.1rem;
    }

    .features-section {
        margin-top: -80px;
     
    }
}

/*-------------------------------------------end------------------------------------*/

.how-it-works{
	padding: 80px 0px 0px;
}

.how-it-works-item,
.service-item,
.why-choose-us-item,
.download-app-item{
	padding: 12px;
	/* text-align: center; */
	/* background: rgb(255 255 255); */
	/* border: 1px solid rgb(0 0 0 / 3%); */
	border-radius: 10px;
	/* backdrop-filter: blur(5px); */
	-webkit-backdrop-filter: blur(5px);
	/* min-height: 420px; */
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	/* box-shadow: 0px 21px 46px rgb( 0 0 0 /10%); */
}
.how-it-works-item{
    position: relative;
    background-size: cover;
    background-repeat: repeat;
    /* background-attachment: fixed; */
    background-position: center center;
    z-index: 1;
    /* border: none; */
}
.how-it-works-item:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: #0a0a0a; */
    z-index: -1;
    background: #;
    /* border: 1px solid #ddd; */
    border-radius: 12px;
    /* backdrop-filter: blur(5px); */
    -webkit-backdrop-filter: blur(5px);
}

.how-it-works-item .icon-box,
.service-item .icon-box,
.why-choose-us-item .icon-box{
	margin-bottom: 16px;
	border: 1px solid #fff;
	display: inline-block;
	border-radius: 50%;
	height: 90px;
	width: 90px;
	line-height: 85px;
	/* padding: 5px; */
	/* background-color: #fff; */
	/* background: rgb(255 255 255); */
	border: 1px solid rgb(255 255 255 / 0%);
	/* border-radius: 10px; */
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.how-it-works-item .icon-box img,
.service-item .icon-box img,
.why-choose-us-item .icon-box img{
	width: 52px;
	height: auto;
	filter: brightness(0) invert(1);
}

.how-it-works-item h3,
.service-item h3,
.why-choose-us-item h3,
.download-app-item h3{
	font-size: 26px;
	margin-bottom: 20px;
	color: #ffffff;
	font-weight: 600;
	line-height: 32px;
}

.how-it-works-item p,
.service-item p,
.why-choose-us-item p{
	margin-bottom: 30px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
}

.start-now {
    color: #000000;
    font-size: 18px;
    /* border: 1px solid #ffffff; */
    padding: 8px 14px;
    margin-top: auto;
    margin: 0px 0 -5px;
    margin-top: auto;
    background: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    width: 130px;
    text-align: center;
}






.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.card {
  background: linear-gradient(135deg, #1fa2ff, #0f7d2f);
  color: #fff;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-direction: row;
  min-height: 114px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0px 21px 46px rgb(0 0 0 /10%);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card .icon {
  font-size: 40px;
  color: #fff;
  filter: brightness(0) invert(1);
  width: 38px;
  height: auto;
  flex: none;
}

.card p {
  margin: 0;
  font-size: 18px;
  text-align: left;
  font-weight: 600;
}

.icon-box svg{
    width: 60px;
    height:auto;
    color: #fff;
}



.contact-list {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
}

.contact-list p {
    margin: 5px 0;
    white-space: pre;
}
.custom-left{
    display:flex;
    align-items:baseline;
}

.custom-left .icon-box{
    margin-right:8px;
}
















.connect-section {
    background-color: #ffffff;
    text-align: center;
    padding: 80px 0px 0px;
    color: #fff;
}

.connect-section h5 {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.connect-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.connect-section h2 span {
    color: #ff7c2d;
}

.connect-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 15px;
    color: #eaeaea;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.social-icons a {
    font-size: 40px;
    background: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0px 11px 46px rgb(0 0 0 /10%);
}

/* ICON COLORS */
.facebook i { color: #1877f2; }
.instagram i { color: #e4405f; }
.twitter i { color: #000; }
.youtube i { color: #ff0000; }
.telegram i { color: #0088cc; }

.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

.client-section {
    background-color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.client-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
}

.client-section h2 span {
    color: #000000;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.client-item {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 10px;
    border: 1px solid #ddd;
}

.client-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.client-item img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.client-item:hover img {
    filter: grayscale(0%);
}

/* remove link underline */
.client-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


.team-member {
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 306px;
}
.team-member:hover {
    transform: translateY(-5px);
}
.team-member .icon img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    width: 80px;
    height: auto;
    margin: 0 auto;
}
.team-member h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}
.team-member p {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6;
}




.service-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.service-section h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #f7b500;
    display: block;
    margin-top: 8px;
}

.service-section p {
    color: #ffffff;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 10px;
}

.service-section .service-feature h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-section .icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-section .service-image img {
    transition: transform 0.3s ease;
}

/*.service-section .service-image img:hover {
    transform: scale(1.05);
}*/

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}


.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.td-hero-2-thumb {
    clip-path: polygon(90px 0, 100% 0, 100% calc(100% - 90px), calc(100% - 90px) 100%, 0 100%, 0 90px);
    border-radius: 120px 10px 120px 10px;
}


.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: pointer;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
    width: 100%;
    aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 20px;
}



@media (min-width: 1200px) and (max-width: 1399.8px){
    .breadcrumb-banner {
       min-height: 400px;
  
}
}


@media (max-width: 767px){
    .how-it-works-item .icon-box, .service-item .icon-box, .why-choose-us-item .icon-box {
    margin-bottom: 0px;
}
    .how-it-works-item p, .service-item p, .why-choose-us-item p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
}
    .how-it-works-item h3, .service-item h3, .why-choose-us-item h3, .download-app-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 28px;
}
    .mxd-section.padding-grid-pre-mtext {
    padding-bottom: 7.3rem;
}
.mxd-hero-05 {
    padding-top: 7rem;
}
.mxd-section.padding-pre-pinned-img {
    padding-bottom: 3rem;
}
h2 {
    font: normal var(--fw-medium) 3.4rem/1.1 var(--_font-accent);
}
.mxd-services-stack__inner {
    padding: 10px;

}
.how-it-works-item .icon-box, .service-item .icon-box, .why-choose-us-item .icon-box {
    height: 60px;
    width: 60px;

}
.icon-box svg {
    width: 50px;
}
.start-now {
    font-size: 15px;
    padding: 6px 14px;
 
}
.mxd-stats-simple {
    padding: 10px;
}
.service-content{
      padding: 10px;
}
.service-section h2 {
    font-size: 28px;
}
.service-section .service-feature h4 {
    font-size: 22px;
}
.f-6 {
    font-size: 4rem !important;
}
.student-card {
    padding: 20px !important;

}
.login-image {
    display: none;
}
.login-form {
    padding: 50px 16px !important;
}
    .services-stack .custom-m {
        height: 50vh;
        min-height: 400px;
    }
}



.light-green{
    color: #e5ff44;
}

.content-soon{
    text-align:center;
}

.soon{
    position:relative;
    padding:100px 0px;
}
.content-soon h1{
    font-size:35px;
    font-weight:600;
    color:#fff;
    margin-bottom:0px;
}




.telegram {
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #0088cc;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: 0.3s ease;
}

.telegram:hover {
  background-color: #007ab8;
  transform: scale(1.1);
}

/* Modal Overlay */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content Box */
.custom-modal-content {
  background-color: #1c1c1c;
  color: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  animation: fadeIn 0.4s ease;
  position: relative;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Telegram Link Options */
.telegram-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 25px;
}

.telegram-option {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.telegram-option i {
  font-size: 40px;
  color: #0088cc;
  margin-bottom: 8px;
  transition: transform 0.3s, color 0.3s;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 50%;
  line-height: 30px;
}

.telegram-option:hover i {
  transform: scale(1.1);
  color: #00a6ff;
}

.telegram-option span {
  font-size: 15px;
}

.custom-modal-content h3{
    font-size:30px;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.f-6{
    font-size:6rem;
}



.title-slide-gradient {
    background-image: -webkit-linear-gradient(90deg, #201b17 0%, #f96501 50%, #201b17 100%);
    background-image: -moz-linear-gradient(90deg, #201b17 0%, #f96501 50%, #201b17 100%);
    background-image: -ms-linear-gradient(90deg, #201b17 0%, #f96501 50%, #201b17 100%);
    background-image: -o-linear-gradient(90deg, #201b17 0%, #f96501 50%, #201b17 100%);
    background-image: linear-gradient(90deg, #201b17 0%, #f96501 50%, #201b17 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    -moz-animation: sliderTitle3 2s ease-in-out 1s forwards infinite alternate;
    -webkit-animation: sliderTitle3 2s ease-in-out 1s forwards infinite alternate;
    animation: sliderTitle3 2s ease-in-out 1s forwards infinite alternate;
    background-size: 150% 150%;
}

@keyframes sliderTitle3{
    0% {
    background-position: 0%;
}
100% {
    background-position: 100%;
}
}


.ins-list{
    padding-left:18px;
    margin-bottom:20px;
}


.ins-list li{
     font-size: 17px;
    color: #fff;
    list-style: disc;
}







/*.student-profile-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
   background-color: #f5f6fa; 
  min-height: 100vh;
}*/

.student-card {
  background: #1c1c1c;
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 100%;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.student-card:hover {
  transform: translateY(-5px);
}

.section-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  left: 21%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #f7a325;
  border-radius: 2px;
}

.student-details p,
.student-course p {
  font-size: 15px;
  margin: 8px 0;
}


.student-details p strong {
  font-size: 17px;
  font-weight:600;
}
.student-course p strong{
      font-size: 17px;
  font-weight:600;
}
.course-validity {
  margin-top: 25px;
  /* text-align: center; */
}

.course-validity h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffffff;
}

.timer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-align: center;
}

.timer div {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 8px;
  border-radius: 10px;
  width: 22%;
}

.timer span {
  display: block;
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}

.timer small {
  display: block;
  font-size: 12px;
  color: #aaa;
}



/*----------------------------------login css----------------------------*/
.student-login {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
}

.login-container {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background: #202020;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.login-form {
  flex: 1;
  padding: 50px 60px;
}

.login-form h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}

.login-form h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f7a325;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

.login-form p {
  text-align: center;
  color: #ffffff;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 14px;
  position: relative;
}

.form-group label {
  display: block;
  color: #a5a5a5;
  font-size: 17px;
  margin-bottom: 8px;
}

.form-group input {
  line-height: 60px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #646464;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  transition: all 0.3s;
  background: transparent;
  height: 40px;
}

.form-group input:focus {
  border-bottom: 2px solid #f7a325;
}


.btn-submit:hover {
  background: #0056b3;
}

.login-image {
  flex: 1;
  background-color: #f0f3ff;
}

.login-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*----------------------------------end------------------------------------*/





