* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Barlow", sans-serif;
}

html {
    scroll-behavior: smooth;
}


section {
    scroll-margin-top: 80px;
    /* header height ke hisaab se change karo */
}

a,
a:hover {
    text-decoration: none !important;
}




.bg-img {
    background-repeat: no-repeat;
    background-size: cover;
}

.text-black {
    color: #000 !important;
}

.text-blue {
    color: #00689C !important;
}

.text-green {
    color: #9ECB54 !important;
}



.weight-500 {
    font-weight: 500;
}

.weight-600 {
    font-weight: 600;
}

.weight-700 {
    font-weight: 700;
}

.weight-800 {
    font-weight: 800;
}


.text-14 {
    font-size: 14px !important;
}

.text-12 {
    font-size: 12px !important;
}

.text-18 {
    font-size: 18px !important;
}

.text-20 {
    font-size: 20px !important;
}

.text-24 {
    font-size: 24px !important;
}

.text-26 {
    font-size: 26px !important;
}

.text-28 {
    font-size: 28px !important;
}

.text-30 {
    font-size: 30px !important;
}

.text-40 {
    font-size: 40px !important;
}


.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.panel-space {
    padding: 80px 0;
}

.h2-heading {
    font-size: 36px;
    font-weight: 600;
}


.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    position: relative;
    z-index: 2;
    width: 95%;
}

a {
    display: inline-block;
    -webkit-transition: color 300ms, background-color 300ms;
    -moz-transition: color 300ms, background-color 300ms;
    -o-transition: color 300ms, background-color 300ms;
    transition: color 300ms, background-color 300ms;
    text-decoration: none;
}




button:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar-brand img {
    width: 210px;
}

.fixed-header {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.header .navbar-nav .nav-link {
    color: #000000E5;
    font-weight: 700;
    font-size: 18px;
    padding: 0 0px;
}

.header .navbar-nav .nav-item {
    padding: 0 30px;
}

.banner {
    padding: 122px 0 0 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-custom {
    background-color: #FF9D23;
    padding: 13px 30px;
}

.btn-custom,
.call-back {
    display: inline-block;
    color: #000;
    padding: 13px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-custom:hover,
.call-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    color: #000;
}

.banner-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    animation: textReveal 0.9s ease forwards;
}

.reveal.delay {
    animation-delay: 0.3s;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.call-back {
    border: 1px solid #000;
    /* min-width: 190px; */
    text-align: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}



.call-back:hover {
    background-color: #ff9d23;
    color: #000;
    border-color: #ff9d23;
}


.banner-btn {
    display: flex;
    gap: 22px;
}


.join-heading {
    color: #000;
    margin-top: 30px;
    font-family: sans-serif;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-left: -17px;
    transition: transform 0.2s ease, z-index 0.2s;
    position: relative;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-group img:hover {
    transform: translateY(-5px);
    z-index: 10;
    cursor: pointer;
}

.join-section {
    position: relative;
    margin-bottom: 30px;
}


.banner-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    animation: floatPhone 3s ease-in-out infinite;
}

/* 
@keyframes floatPhone {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
} */

.banner-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 90%);
    animation: arrowDrawLoop 2.8s ease-in-out infinite;
    transform-origin: left center;
}

@keyframes arrowDrawLoop {
    0% {
        opacity: 0;
        transform: translate(-60%, 90%) scale(0.85);
    }

    40% {
        opacity: 1;
        transform: translate(-50%, 90%) scale(1);
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 90%) scale(1.05);
    }
}



/* .banner-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 90%);
} */


@media (max-width: 768px) {
    .join-heading {
        font-size: 2.5rem;
    }

    .avatar-group img {
        width: 50px;
        height: 50px;
        margin-left: -20px;
        border-width: 4px;
    }
}

.trusted-section {
    background-color: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #eaeaea;
}

.trusted-text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #212529;
}

.trusted-text .highlight {
    color: #4472c4;
    font-weight: 800;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


.features-panel {

    background-color: #fff;
    overflow: hidden;
    position: relative;
    font-family: sans-serif;
}




.green-blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background: linear-gradient(123.69deg, rgba(255, 157, 35, 0.01) 14.32%, #FF9D23 87.11%);
    box-shadow: 3px 4px 12.7px 0px #00000017;
}


.feature-item {
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #9bd652;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.icon-wrapper:hover {
    transform: scale(1.1);
}

.text-wrapper h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.text-wrapper p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.phone-mockup-wrapper {
    position: relative;
    z-index: 2;
}

.main-phone-img {
    max-height: 620px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.bg-gradiant {
    position: absolute;
    bottom: 50px;
}

@media (max-width: 991px) {
    .green-blob-bg {
        width: 100%;
        height: 100%;
    }

    .feature-item {
        text-align: center;
        padding: 0 15px;
    }

    .icon-wrapper {
        margin: 0 auto 20px auto;
    }
}






.main-dash-img {
    transform: perspective(1000px) rotateY(2deg);
    transition: transform 0.3s ease;
}

.main-dash-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.eyebrow-text {
    display: block;
    margin-bottom: 0;
    font-weight: 500;
    color: #898787;
}

.feature-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.feature-subtext {
    font-size: 1rem;
    color: #000;
    margin-bottom: 60px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.list-icon {
    color: #4CAF50;
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.list-text {
    font-size: 20px;
    line-height: 1.5;
}

.list-text strong {
    color: #000;
    font-weight: 700;
}


.esy-booking-img {
    width: 54%;
    position: absolute;
    top: 0%;
    right: -40px;
    bottom: auto;
}




.step-card {
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, #33659B 0%, #0B7CBA 100%);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    opacity: 1;
}

.step-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 0;
}


.app-card {
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 4px 4px 14.4px 0px #0000001C;
    background: #E4F6FFAB;
}

.app-card:hover {
    transform: translateY(-5px);
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.feature-desc {
    color: #5B5959;
    font-size: 18px;
    margin-bottom: 25px;
}



.card-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.bottom-app-img,
.card-image-wrapper.order-1 {
    height: 440px;
}

.phone-mockup {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* testimonial css */

.testimonial-card {
    background: #fff;
    padding: 20px 30px 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 50px;
    text-align: left;
}

.image-wrapper {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    background: #fff;
    box-shadow: -4px -4px 17px 0px #00000040;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    margin-top: 30px;
    padding: 25px;
    /* padding-bottom: 0; */
}

.quote-icon {
    width: 40px;
    margin-bottom: 20px;
}

.review-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.vt-card-container {
    position: relative;
    width: 100%;
    height: 280px;
    margin-top: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.vt-card-container:hover {
    transform: scale(1.02);
}

.vt-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(0.9);
}

.vt-profile-pic {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    background: #fff;
}

.vt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
    transition: background 0.3s;
    z-index: 1;
}

.vt-card-container:hover .vt-play-btn {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.vt-play-btn i {
    color: #555;
    font-size: 24px;
    margin-left: 4px;
}

.vt-modal-parent .modal-content {
    background-color: black;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.vt-modal-parent .modal-body {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.vt-modal-parent video {
    width: 100%;
    max-height: 80vh;
    display: block;
}

.vt-modal-parent .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1056;
    width: 30px;
    height: 30px;
    background-size: 12px;
}

.vt-modal-parent .btn-close:hover {
    opacity: 1;
    background-color: #fff;
}

.testimonial-slider .testimonial-card,
.testimonial-slider .vt-card-container {
    transition: all 0.5s ease-in-out;
    margin-top: 0;
    transform: scale(0.9);
}

.testimonial-slider .owl-item.active.center .testimonial-card,
.testimonial-slider .owl-item.active.center .vt-card-container {
    margin-top: 50px;
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.testimonial-slider .owl-stage {
    padding: 70px 0 40px;
    height: 470px;
}

.testimonial-slider .owl-dots .owl-dot.active span {
    background: #FF9D23;
    width: 40px;
    transition: width 0.3s ease;
}

.testimonial-slider .owl-dots {
    text-align: center;
}

.testimonial-slider .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 5px 5px;
    border-radius: 20px;
    background: #D9D9D9;
    display: block;
    transition: all 0.3s ease;
}


.requests-demo {
    background-repeat: no-repeat;
    background-size: cover;
}

.study-smarter {
    background-size: cover;
    background-repeat: no-repeat;
}


/* FAQ section css */


.accordion-item {
    border: none;
    border-bottom: 1px solid #EAECF0;
    background: transparent;
}

.accordion-button {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 30px 0;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 20px;
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: transparent;
}

.faq-panel .accordion-button::after {
    display: none;
}

.custom-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #3b71ca;
    color: #3b71ca;
    flex-shrink: 0;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.custom-icon i {
    font-size: 12px;
}

.accordion-button.collapsed .custom-icon .fa-minus {
    display: none;
}

.accordion-button.collapsed .custom-icon .fa-plus {
    display: block;
}

.accordion-button:not(.collapsed) .custom-icon {
    border-color: #ff4d4d;
    color: #ff4d4d;
    transform: rotate(180deg);
}

.accordion-button:not(.collapsed) .custom-icon .fa-plus {
    display: none;
}

.accordion-button:not(.collapsed) .custom-icon .fa-minus {
    display: block;
}

.accordion-body {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

.accordion-item:last-child {
    border: 0;
}

/* footer section css */


.footer-section {
    background-color: #00689C;
    color: #ffffff;
    padding-top: 70px;
    padding-bottom: 30px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1e8ff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}



.footer-logo-box img {
    height: auto;
    margin-bottom: 20px;
}

.contact-info p {
    color: #d1e8ff;
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-info span {
    font-weight: 600;
    color: #fff;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 50px;
    margin-bottom: 30px;
}

.copyright-text {
    font-size: 13px;
    color: #a8d4ff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.social-link:hover {
    background-color: white;
    color: #006599;
}

@media (max-width: 768px) {
    .footer-section {
        text-align: left;
    }

    .social-icons {
        margin-top: 20px;
    }
}



.nav-link.active,
.nav-link:focus,
.nav-link:hover {
    color: #9ECB54 !important;
    /* aapka brand color */
    font-weight: 600;
    position: relative;
}

.nav-link.active::after,
.nav-link:focus::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #9ECB54;
}

.modal-content {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-control {
    border-radius: 8px;
    padding: 10px 14px;
}


/* animation css  */


.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.logo-wrapper:hover {
    animation-play-state: paused;
}

.client-logo {
    max-height: 96px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.managing-library-manually .card {
    position: relative;
    width: 100%;
    border-radius: 33px;
    padding: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    overflow: hidden;
    background-position: bottom;
    height: 520px;
    box-shadow: 0px 5px 29.5px 0px #0000001F;
    border: 0;
}



.managing-library-manually .card .content {
    position: relative;
    z-index: 1;
}

.managing-library-manually .card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.managing-library-manually .card ul {
    list-style: none;
    padding: 0;
}

.managing-library-manually .card ul li {
    font-size: 20px;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

/* Pain Points ❌ */


.pain-card ul li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

/* Solutions ✅ */


.solution-card ul li::before {
    /* content: "\f00c"; */
    content: "✔";
    position: absolute;
    left: 0;
    color: #1ed26c;
    font-weight: bold;

    /* font-family: 'FontAwesome';*/
}





.feature-accordion .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #f9fafb;
}

.feature-accordion .accordion-button {
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: flex-start;
}

.feature-accordion .accordion-button:not(.collapsed) {
    background: #f3f4f6;
    box-shadow: none;
}

.feature-accordion .accordion-button:focus {
    box-shadow: none;
}

.feature-accordion .list-icon {
    color: #4CAF50;
    font-size: 22px;
    flex-shrink: 0;
    margin: 0 8px 0 0;
}

/* Right arrow */
.feature-accordion .accordion-button::after {
    background-size: 16px;
}

/* Body */
.feature-accordion .accordion-body {
    font-size: 16px;
    color: #555;
    padding: 20px 22px;
    background: #fff;
}

.feature-accordion .accordion-button::after {
    content: '\f0d7';
    font-family: 'FontAwesome';
    background-image: none;
    width: auto;
    height: auto;
}


.library-types {
    background: #FF9D230F;
}

.faq-panel {
    background: #FF9D2312;
}


.library-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #10b418;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.library-whatsapp img {
    width: 60px;
    z-index: 2;
}

.library-whatsapp::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background: #10b418;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    animation: pulse 1.8s ease-out infinite;
}


.library-whatsapp:hover {
    background: #20bf6b;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    25% {
        transform: scale(0.3);
        opacity: 1;
    }

    50% {
        transform: scale(0.6);
        opacity: 0.6;
    }

    75% {
        transform: scale(0.9);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}



.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 20px;
}

.currency {
    font-size: 22px;
    margin-right: 4px;
    color: #5B5959;
    font-weight: 600;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
}

.price-panel .card-content {
    padding-bottom: 30px;
    margin-top: 0 !important;
}

.price-panel .feature-desc {
    margin-bottom: 0;

    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 5px 0;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #FF9D2312;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 22px;
    color: #ff9d23;
}