.main-header {
    width: 100%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 64px;
    position: relative;
    z-index: 1000;
}

.logo-img {
    width: 148px;
    height: 60px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FBBA2C;
    border-bottom: 1px solid #FBBA2C;
}

.login-btn {
    background: #FBBA2C;
    color: #000;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
   
}

.login-btn:hover {
    background: #f7b000;
}

/* Toggle Button */
.navbar-toggler {
    display: none;
    font-size: 28px;
    color: #FBBA2C;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

/* Desktop Login */
.desktop-login {
    display: flex;
    align-items: center;
    gap: 12px;
   


}

/* ---------- Desktop (≥992px) ---------- */
@media (min-width: 992px) {
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        width: auto;
        background: transparent;
    }

    .mobile-login {
        display: none;
    }

    .navbar-toggler {
        display: none;
    }
}

/* ---------- Tablet & Mobile (≤991px) ---------- */
@media (max-width: 991px) {
    .main-header {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 12px 32px;
    }

    .desktop-login {
        display: none;
    }

    .navbar-toggler {
        display: block;
        font-size: 28px;
        margin-left: auto;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 16px 0;
        gap: 14px;
        position: static; /* ← fixed here */
        box-shadow: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 15px;
        padding: 8px 0;
    }
}

/* ---------- Mobile (≤768px) ---------- */
@media (max-width: 768px) {
    .main-header {
        padding: 12px 24px;
    }

    .logo-img {
        width: 120px;
        height: 50px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .navbar-toggler {
        font-size: 26px;
    }
}

/* header section end */

/* ----------home Hero Section ---- */

.hero-section {
    background: url('../images/header_bg_1.png') no-repeat center center;
    background-size: cover;
    width: 100%;

    height: 680px;
    padding: 120px 64px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-top: 84px;

}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
}

.hero-buttons .btn-demo,
.hero-buttons .btn-courses {
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-demo {
    background: #FBBA2C !important;
    color: #000;
}

.btn-demo:hover {
    background: #f0ac1a !important;
}

.btn-courses {
    background: #F76102 !important;
    color: #000;
}

.btn-courses:hover {
    background: #e05200 !important;
}

/* ---------- Floating Icons ---------- */
.floating-buttons {

    /* position: absolute; */
    right: 0px;
    bottom: 40%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-buttons img {
    width: 32px;
    height: 32px;
    cursor: pointer;
}


@media (max-width: 992px) {
    .hero-section {
        padding: 120px 40px 80px;
        min-height: 700px;

        margin: 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .floating-buttons {
        right: 0;
        /* still at edge */
        bottom: 32%;
        /* move up slightly */
        gap: 8px;
    }

    .floating-buttons img {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 30px 60px;
        min-height: 600px;
        /* text-align: center;
        align-items: center; */
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .floating-buttons {
        right: 0;
        /* stick to edge */
        bottom: 24%;
        /* keep visible */
        gap: 6px;
    }

    .floating-buttons img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 90px 20px 60px;
        min-height: 520px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .floating-buttons {
        right: 0;
        /* stay at screen edge */
        bottom: 18%;
        /* lift slightly higher */
        gap: 6px;
    }

    .floating-buttons img {
        width: 28px;
        height: 28px;
    }
}

/* ---------- trust SECTION ------*/

.trust-section {
    background: #000000;
    display: flex;
    padding: 80px 64px;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    align-self: stretch;
    width: 100%;
}

.trust-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.trust-cards {
    width: 100%;
    margin: 0 auto;
}

.trust-card {
    display: flex;
    width: 313px;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 24px;
    border: 2px solid #FBBA2C;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-card img {
    width: 72px;
    height: 72px;
    border: 1px solid #FBBA2C;
    border-radius: 50px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.trust-card h3 {
    color: #FFF;
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}

.trust-card p {
    color: #FFF;
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

/* ---------- Responsive ------*/
@media (max-width: 992px) {
    .trust-section {
        padding: 60px 32px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 40px 20px;
    }

    .trust-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .trust-card {
        width: 100%;
        max-width: 350px;
    }
}

/* view course start */

.viewcourse-section {
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    align-self: stretch;
    color: white;
    padding: 80px 64px;
}

/* ---------- Header ---------- */
.viewcourse-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 60px;
    gap: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.section-subtitle {
    font-size: 16px;
    color: #ccc;
    max-width: 600px;
    line-height: 1.6;
}

.view-all-wrapper {
    margin-top: 10px;
}

.view-all-btn {
    background-color: #FBBA2C;
    color: #000;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.view-all-btn:hover {
    background-color: #ffcc4a;
}

/* ---------- Individual Course Card ---------- */
.course-card {
    display: flex;
    width: 100%;
    max-width: 424px;
    height: 262px;
    padding: 32px;
    align-items: center;
    border-radius: 32px;
    border: 1px solid #FBBA2C;
    background: #3A3939;
    box-sizing: border-box;
}

/* ---------- Card Content ---------- */
.card-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-text {
    text-align: left;
}

.card-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.card-text p {
    font-size: 14px;
    color: #ccc;
    margin: 4px 0;
}

/* ---------- Course Image---------- */
.course-card img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: 16px;
    max-width: 100%;
    /* ensures image never overflows card */
    box-sizing: border-box;
}

/* ---------- Course Button ---------- */
.course-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FBBA2C;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.32px;
    border: none;
    border-radius: 8px;
    width: 140px;
    height: 40px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* ----------response---------- */

@media (max-width: 1024px) {
    .viewcourse-section {
        padding: 70px 48px;
    }

    .viewcourse-header {
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .course-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 28px;
        border-radius: 28px;
        height: auto;
        max-width: 100%;
        overflow: hidden;
        text-align: center;
        background: #111;
    }

    .card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    .course-card img {
        width: 140px;
        height: 140px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .card-text {
        text-align: center;
        flex: 1;
    }

    .card-text h3 {
        font-size: 20px;
    }

    .card-text p {
        font-size: 14px;
        line-height: 1.4;
    }

    .course-btn {
        margin-top: 12px;
        width: 130px;
        height: 38px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .viewcourse-section {
        padding: 60px 32px;
    }

    .viewcourse-header {
        align-items: center;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .course-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: 100%;
        height: auto;
        padding: 24px;
    }

    .card-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .course-card img {
        width: 130px;
        height: 130px;
        margin: 16px 0 0 0;
        object-fit: contain;
    }

    .card-text {
        text-align: center;
    }

    .course-btn {
        margin-top: 12px;
    }
}

@media (max-width: 425px) {
    .viewcourse-section {
        padding: 50px 20px;
    }

    .viewcourse-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .course-card {
        padding: 20px;
        border-radius: 24px;
        max-width: 100%;
    }

    .course-card img {
        width: 110px;
        height: 110px;
        margin-top: 12px;
    }

    .card-text h3 {
        font-size: 16px;
    }

    .card-text p {
        font-size: 13px;
    }

    .course-btn {
        width: 120px;
        height: 36px;
        font-size: 14px;
    }
}


/* end view course */

/* ------result SECTION ----*/

.result-section {
    background-color: #000000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    align-self: stretch;
    padding: 80px 64px;
}

/* ===== Headings ===== */
.result-container h2 {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.result-container p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 50px;
    text-align: center;
}

/* ===== Grid Layout ===== */
.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* ===== Individual Card ===== */
.result-card {
    background: #111;
    border: 1px dashed #FBBA2C;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    /* card to card side gap */
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px;
    /* consistent card width */
    box-sizing: border-box;
}

/* ===== Image Box ===== */
.image-box {
    background-color: #FBBA2C;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 273px;
    margin-bottom: 20px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Card Text ===== */
.result-card h3 {
    font-weight: 700;
    font-size: 18px;
    margin: 10px 0;
    text-align: center;
}

.result-card p {
    font-size: 15px;
    margin: 3px 0;
    color: #ddd;
    text-align: center;
}

.result-card span {
    font-weight: 700;
    color: #fff;
}

/* ===== Button ===== */
.view-results {
    margin-top: 60px;
}

.view-results a {
    background-color: #FBBA2C;
    color: #000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
}

/* Tablets <=992px */
@media (max-width: 992px) {
    .result-section {
        padding: 60px 32px;
    }

    .result-card {
        max-width: 45%;
    }
}

/* Mobile <=768px */
@media (max-width: 768px) {
    .result-section {
        padding: 40px 20px;
    }

    .result-card {
        max-width: 100%;
    }

    .image-box {
        height: auto;
    }
}

/*end style results */

/* detail secetion start */

.detail-innovate {
    background-color: #3A3939;
    padding: 80px 64px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.innovate-title {
    color: #FFF;
    font-family: Poppins;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.innovate-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.innovate-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FBBA2C;
    padding: 6px;
    object-fit: contain;
}

.innovate-image img.fixed-aspect {
    width: 396px;
    height: 352px;
    object-fit: contain;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .detail-innovate {
        padding: 60px 32px;
    }

    .innovate-image img.fixed-aspect {
        width: 100%;
        max-width: 396px;
        height: auto;
    }

    .align-items-md-center {
        align-items: center !important;
    }
}

/* Tablet: ≤768px */
@media (max-width: 768px) {
    .detail-innovate {
        padding: 40px 20px;
        gap: 32px;
    }

    .innovate-title {
        font-size: 32px;
        text-align: center;
    }

    .innovate-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    /* Image on top */
    .innovate-image {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .innovate-image img.fixed-aspect {
        width: 100%;
        max-width: 396px;
        height: auto;
        margin: 0 auto;
    }

    /* Items container: combine left + right */
    .innovate-content>.col-md-6 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        order: 2;
        gap: 16px;
    }

    /* Keep icon + text in row */
    .innovate-item {
        flex: 1 1 calc(33.33% - 16px);
        /* 3 items per row */
        max-width: 180px;
        flex-direction: row;
        /* icon + text side by side */
        align-items: center;
        text-align: left;
        gap: 8px;
    }

    .innovate-item img {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .innovate-item span {
        font-size: 14px;
    }
}

/* Mobile: ≤425px */
@media (max-width: 425px) {
    .detail-innovate {
        padding: 30px 16px;
        gap: 24px;
    }

    .innovate-title {
        font-size: 28px;
        text-align: center;
    }

    .innovate-content>.col-md-6 {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .innovate-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex: 1 1 100%;
        max-width: 320px;
        width: 100%;
        gap: 10px;
        text-align: left;
    }

    .innovate-item img {
        width: 30px;
        height: 30px;
        padding: 5px;
        flex-shrink: 0;
        /* keeps icon from shrinking */
        display: inline-block;
    }

    .innovate-item span {
        font-size: 15px;
        line-height: 1.4;
        display: inline-block;
        vertical-align: middle;
        word-break: break-word;
    }

    .innovate-image {
        text-align: center;
        width: 100%;
    }

    .innovate-image img.fixed-aspect {
        max-width: 280px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}


/* detail invaotive section end*/

/*start student section */


.student-says-section {
    background: #000;
    color: #fff;
    padding: 80px 64px;
    text-align: center;
}

.student-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.student-subtitle {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 40px;
}

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.8s ease;
    gap: 20px;
}

/* Cards */
.testimonial-card {
    background-color: #3a3939;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    text-align: left;
    flex: 0 0 auto;
}

/* Left section */
.testimonial-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
}

.testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: white;
    color: black;
    border-radius: 50%;
    font-size: 14px;
    padding: 4px 6px;
    font-weight: bold;
}

.student-info {
    margin-top: 10px;
    text-align: center;
}

.student-info h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.student-info .designation {
    font-size: 13px;
    color: #ccc;
}

/* Right section (Quote Text) */
.testimonial-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonial-text .quote {
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    padding-left: 18px;
    color: #fff;
}

.testimonial-text .quote::before {
    content: '“';
    font-size: 26px;
    position: absolute;
    left: 0;
    top: -6px;
    color: #fff;
}

.testimonial-text .quote::after {
    content: '”';
    font-size: 26px;
    position: absolute;
    right: 0;
    bottom: -8px;
    color: #fff;
}

/* Pagination */
.testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.nav-arrow {
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #777;
    display: inline-block;
}

.dot.active {
    background: #FBBA2C;
}

/* Desktop (≥1024px)  */
@media (min-width: 1024px) {
    .testimonial-card {
        width: calc((100% - 40px) / 3);
    }
}

/* Tablet (768px–1023px)  */
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonial-card {
        width: calc((100% - 20px) / 2);
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .testimonial-card {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .testimonial-left {
        width: 100%;
        margin-bottom: 16px;
    }

    .testimonial-text {
        justify-content: center;
    }
}


/*end student section  */

/* ===== Free Demo Section ok ===== */
.free-demo-section {
    position: relative;
    background: url('/images/free-demo1.jpeg') center center/cover no-repeat;
    padding: 80px 64px;
    overflow: hidden;

}

/* layout flex */
.free-demo-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

/* ===== Left: Form ===== */
.demo-form-card {
    flex: 1;
    min-width: 320px;
    border-radius: 24px;
    background: rgba(96, 94, 94, 0.40);
    backdrop-filter: blur(4px);
    padding: 30px;
}

.demo-form-card h3 {
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.demo-form-card input,
.demo-form-card select {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-size: 15px;
}

.demo-form-card input:focus,
.demo-form-card select:focus {
    outline: none;
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.6);
}

.btn-submit {
    width: 100%;
    height: 46px;
    background: #ffc107;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background: #ffb100;
    color: #000;
}

/* ===== Right: Text ===== */
.demo-text {
    flex: 1;
    min-width: 300px;
    padding-left: 20px;
}

.demo-text h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.demo-text p {
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.demo-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}
/*added*/
 .free-limit{
    font-style: 'lato';
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2%;
    text-align: center;

} 


@media (max-width: 1024px) {
    .free-demo-section {
        padding: 70px 48px;
        background-position: center;
        background-size: cover;
    }

    .free-demo-flex {
        gap: 32px;
        justify-content: center;
    }

    .demo-text {
        padding-left: 0;
    }

    .demo-text h2 {
        font-size: 1.8rem;
    }

    .demo-text p {
        font-size: 1rem;
    }

    .demo-form-card {
        padding: 28px;
    }

    /*added*/
    .free-limit {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .free-demo-section {
        padding: 60px 32px;
        overflow: hidden;
    }

    .free-demo-flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
    }

    .demo-form-card {
        width: 100%;
        padding: 24px;
        border-radius: 20px;
    }

    .demo-form-card h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .demo-text {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .demo-text h2 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .demo-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .demo-text ul {
        font-size: 0.95rem;
    }

    .free-limit {
        font-size: 0.95rem;
    }
}

@media (max-width: 425px) {
    .free-demo-section {
        padding: 50px 20px;
        background-position: center;
        background-size: cover;
        overflow: hidden;

    }

    .free-demo-flex {
        flex-direction: column;
        gap: 24px;
    }

    .demo-form-card {
        padding: 20px;
        min-width: 100%;
    }

    .demo-form-card input,
    .demo-form-card select {
        height: 44px;
        font-size: 14px;
    }

    .btn-submit {
        height: 44px;
        font-size: 15px;
    }

    .demo-text h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .demo-text p {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .demo-text ul {
        font-size: 0.9rem;
    }

    .free-limit {
        font-size: 0.9rem;
    }

}

/*end free demo section*/
/* ===== Footer Section ===== */
.site-footer {
    background: #3d3d3d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding-top: 50px;
}

.footer-container {
    padding-bottom: 40px;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-style: italic;
    color: #eaeaea;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a svg {
    transition: 0.3s;
    fill: #fff;
}

/* Footer Headings */
.footer-links h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
    color: #eaeaea;
}

.footer-links ul li a {
    color: #eaeaea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffb100;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 2px solid #fff;
    padding: 15px 0;
    font-family: Poppins;
    font-size: 16px;
    background: #3d3d3d;
}

.footer-policy a {
    color: #fff;
    margin: 0 4px;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 991px) {
    .footer-links {
        margin-top: 30px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .footer-policy {
        margin-top: 10px;
    }
}