/* Floating Buttons Container */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 9999;
}

/* Common Style */
.floating-contact a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

/* WhatsApp */
.floating-contact .whatsapp {
    background: #25D366;
}

.floating-contact .whatsapp:hover {
    transform: scale(1.1);
}

/* Call */
.floating-contact .call {
    background: #007bff;
}

.floating-contact .call:hover {
    transform: scale(1.1);
}

.bt-footer-wrapper.style-2 {
    padding: 30px 0 30px;
}

.section-padding {
    padding: 35px 0;
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 40px 0 40px;
    z-index: 9;
    text-align: center;
}

.bt-footer-wrapper.style-2 {
    padding: 8px 0 8px;
}


.small-card p {
    font-size: 14px;
    margin: 15px 0;
}

.small-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.small-card span {
    font-size: 13px;
    color: #777;
}

.quote-icon i {
    font-size: 20px;
    color: #ff6600;
}

.bt-testimonial-box-items {
    border-radius: 18px;
    background: #F2F4F7;
    padding: 19px 11px;
    margin-top: 7px;
}

.bt-hero-1 {
    padding: 23px 0;
    position: relative;
}

.bt-hero-1 .hero-shape-1 {
    position: absolute;
    top: 1%;
    left: 5%;
}

h2 {
    font-size: 43px;
    font-weight: 600;
    line-height: 113%;
}


@media (max-width: 992px) {
    h2 {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    h2 {
        font-size: 25px;
        line-height: 120%;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    /* higher than header */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    display: flex;
    /* center properly */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */

    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
}

/* Modal Box */
.modal-content {
    background: #fff;
    width: 100%;
    max-width: 420px;
    /* responsive width */
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;

    animation: fadeIn 0.3s ease;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inputs */
.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Button */
.modal-content button {
    width: 100%;
    margin-top: 10px;
}

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

/* Mobile Fix */
@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
        border-radius: 10px;
    }
}

.course-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: 0.3s;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
}

.course-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #007bff;
}

.course-card ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.course-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.course-card .theme-btn {
    display: inline-block;
    margin-top: 10px;
}


.course-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
    position: relative;
}

.course-card:hover {
    border-color: #0d584e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Highlight card */
.course-card.highlight {
    border: 2px solid #0d584e;
}

/* Tag */
.tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffe37f;
    color: #000;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* Title */
.course-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0d584e;
}

/* List */
.course-card ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.course-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

/* Custom bullet */
.course-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: #ffe37f;
    border-radius: 50%;
}

/* Button */
.btn-register {
    display: inline-block;
    background: #0d584e;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-register:hover {
    background: #083f38;
}


.payment-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.payment-box h4 {
    margin-bottom: 15px;
    color: #0d584e;
    font-weight: 600;
}

.payment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.payment-list li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
}

.upi-scanner {
    text-align: center;
}

.upi-scanner img {
    width: 150px;
    margin-bottom: 8px;
}

.upi-scanner p {
    font-size: 13px;
    color: #777;
}

.event-card {
    max-width: 420px;
    margin: 36px auto;
    padding: 20px 22px;
    border-radius: 16px;
    background: rgb(0 79 68);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    margin-left: 10px;
}


/* FLEX LAYOUT */
.event-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* LEFT SIDE */
.event-info {
    display: flex;
    flex-direction: column;
}

/* TITLE */
.event-title {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    /* ✅ Capital */
    letter-spacing: 0.5px;
    /* ✅ Premium spacing */
}

/* DATE */
.event-date {
    font-size: 13px;
    margin-top: 6px;
    color: #eee;

    text-transform: uppercase;
    /* ✅ Capital */
    letter-spacing: 0.6px;
    /* ✅ Better readability */
}

/* DATE LABEL */
.event-date span {
    color: #ffe074;
    font-weight: 600;
    margin-right: 6px;
    /* ✅ Proper gap after "DATE :" */
}

/* BUTTON */
.register-btn {
    padding: 10px 16px;
    border-radius: 25px;
    background: #f4951c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.register-btn:hover {
    background: #fff;
}

/* MOBILE */
@media (max-width: 576px) {
    .event-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .register-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

.bt-hero-1 .bt-hero-content span {
    color: var(--theme);
    padding: 7px 0px;
    line-height: 1;
    border-radius: 30px;
    background: rgba(0, 79, 68, 0.1);
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* LEFT */
.header-top-wrapper ul {
    display: flex;
    gap: 20px;
    margin: 0;
}

/* CENTER */
.top-marquee {
    flex: 1;
    overflow: hidden;
}

.top-marquee marquee {
    color: #ff0404;
    /* ✅ red text */
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* RIGHT */
.social-icon a {
    color: #004F44;
    margin-left: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .header-top-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-marquee {
        width: 100%;
    }
}

/* MODAL BACKGROUND */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.8);
}

/* MODAL CONTENT */
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 80px auto;

    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

/* VIDEO */
.video-modal iframe {
    width: 100%;
    height: 450px;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.stock-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

/* Common */
.stock-grid-3 .img {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.stock-grid-3 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s;
}

/* Bottom full image */
.stock-grid-3 .full {
    grid-column: span 2;
    height: 160px;
}

/* Hover effect */
.stock-grid-3 .img:hover img {
    transform: scale(1.07);
}

/* Overlay text */
.stock-grid-3 .img::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.lab-pro {
    padding: 80px 0;
    background: #fff;
}

/* HERO */
.lab-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lab-text h1 {
    font-size: 42px;
    font-weight: 700;
}

.lab-text p {
    color: #555;
    margin: 20px 0;
}

.lab-img img {
    width: 100%;
    border-radius: 15px;
}

/* STRIP */
.problem-strip {
    margin: 50px 0;
    background: #004f44;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
}

/* CARDS */
.lab-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.card i {
    font-size: 22px;
    color: #004f44;
    margin-bottom: 10px;
}

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

/* SPLIT */
.lab-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 70px;
    align-items: center;
}

.split-img img {
    width: 100%;
    border-radius: 12px;
}

.split-text ul {
    margin-top: 15px;
}

/* PROCESS */
.process {
    display: flex;
    justify-content: space-between;
    margin: 80px 0;
    text-align: center;
}

.step span {
    font-size: 28px;
    font-weight: bold;
    color: #004f44;
}

/* CTA */
.lab-cta {
    text-align: center;
}

.btn-main {
    background: #004f44;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
}

/* MOBILE */
@media(max-width:768px) {

    .lab-hero,
    .lab-split,
    .lab-cards {
        grid-template-columns: 1fr;
    }

    .process {
        flex-direction: column;
        gap: 20px;
    }
}


.process {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 80px 0;
}

/* LINE CONNECTOR */
.process::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

/* CARD */
.step-card {
    width: 30%;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid #eee;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* ICON */
.step-card .icon {
    width: 60px;
    height: 60px;
    background: #004f44;
    color: #fff;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* NUMBER */
.step-card span {
    display: inline-block;
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: #004f44;
}

/* TEXT */
.step-card p {
    color: #666;
}

/* MOBILE */
@media(max-width:768px) {
    .process {
        flex-direction: column;
        gap: 20px;
    }

    .process::before {
        display: none;
    }

    .step-card {
        width: 100%;
    }
}

.lab-cta-pro {
    margin-top: 80px;
    padding: 50px 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, #004f44, #00796b);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* subtle glow background */
.lab-cta-pro::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.lab-cta-pro h2 {
    font-size: 32px;
    font-weight: 700;
}

.lab-cta-pro p {
    margin: 15px 0 25px;
    color: #e0f2f1;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-main {
    background: #ffe074;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-main:hover {
    background: #ffd54f;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lab-points {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.lab-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}

/* custom dot */
.lab-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: #004f44;
    border-radius: 50%;
}

.form-group {
    margin-bottom: 15px;
}

.error {
    color: #ff4d4d;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

input.error-border,
textarea.error-border {
    border: 1px solid #ff4d4d;
}

#formMsg {
    margin-top: 15px;
    font-weight: 600;
}


.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content h3 {
    font-size: 20px;
    margin-top: 20px;
}