p.mb-0 {
    font-size: 16px;
    font-weight: var(--fw-regular);
}

:root {
    --bs-primary: var(--color-primary);
    /* Theme Green */
    --bs-primary-rgb: 157, 194, 37;
    --bs-primary-light: rgba(157, 194, 37, 0.08);
    --bs-dark: var(--color-text);
    /* Dark Gray */
    --bs-muted: var(--color-text-muted);
    /* Muted Gray */
    --bs-border-radius: 1rem;
    --card-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    --bs-btn-color: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-color: var(--color-white);
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-focus-shadow-rgb: 157, 194, 37;
    --bs-btn-active-color: var(--color-white);
    --bs-btn-active-bg: var(--color-primary);
    --bs-btn-active-border-color: var(--color-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--color-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--color-primary);
}

h3 {
    color: var(--bs-dark);
    font-weight: var(--fw-semibold);
    letter-spacing: -0.025em;
}

.lead {
    font-size: 1.25rem;
    font-weight: var(--fw-regular);
    color: var(--bs-muted);
    line-height: 1.7;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

/* Enhanced accordion styling */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--bs-border-radius) !important;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.accordion-button {
    background: var(--color-white);
    border: none;
    font-weight: var(--fw-semibold);
    color: var(--bs-dark);
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--bs-primary-light);
    color: var(--bs-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(157, 194, 37, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--color-white);
}

.feature-card {
    text-align: start;
}

/* Pricing Tabs Styles */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-toggle-btn {
    padding: 10px 30px;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    font-weight: var(--fw-semibold);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.pricing-toggle-btn:first-child {
    border-radius: 50px 0 0 50px;
}

.pricing-toggle-btn:last-child {
    border-radius: 0 50px 50px 0;
    border-left: none;
}

.pricing-toggle-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.pricing-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.pricing-tab-content.active {
    display: block;
}

#tutorial .video-wrapper {
    width: 100%;
}

#tutorial h4 {
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.plan-list span {
    font-size: 14px;
}

.pricing-title span {
    font-size: 14px;
}

@media (max-width: 576px) {
    .pricing-toggle-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

.featured-on-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    /* padding: 2rem 0; */
    max-width: 100%;
    margin: 0 auto;
}

.featured-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
    min-height: 120px;
    width: 100%;
    border: none;
}

.featured-card img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    display: block;
    transition: 0.3s ease;
    border-radius: 20px;
}

.featured-card:hover img {
    filter: brightness(0.9);
}

@media (max-width: 1024px) {
    .featured-on-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    .featured-on-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .featured-card {
        min-height: 100px;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .featured-on-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-card {
        min-height: 80px;
        padding: 0;
    }
}

.pricing-card1 a:hover {
    background: var(--color-text);
    color: var(--color-white);
}


.video-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.video-image {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Play button styles */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid var(--color-white);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* Ripple wave animation */
.play-button::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

section.footer-top {
    padding: 0px;
}

.col-md-4.p-4.col-sm-12 h4 {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-size: 1.2rem;
}

/* --- FAQ SECTION CSS --- */
/* General Page Styling */
.faq-page-wrapper {
    padding: 40px 20px;
    /* Standard padding for all screen sizes */
    background-color: var(--color-white);
}

.faq-container {
    max-width: 1200px;
    /* Constrain the width to 1200px */
    margin: 0 auto;
    /* Center the container horizontally */
}

/* Header Section */
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    /* Primary green color */
    font-weight: bold;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Navigation Tabs */
.faq-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.filter-tab {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: var(--color-off-white);
    color: var(--color-text-body);
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    background-color: var(--color-primary);
}

.filter-tab.active {
    background-color: var(--color-primary);
    /* Active state style */
    color: var(--color-white);
}

/* FAQ Category Blocks Styling */
.faq-category-block {
    margin-bottom: 30px;
    border: 1px solid var(--color-primary-light);
    border-radius: 12px;
    /* MODIFICATION: Rounded all corners */
    /* REMOVED padding, moved to child element */
}

.category-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    background: var(--color-off-white);
    padding: 30px 20px;
    /* Corrected PADDING to lowercase */
    display: flex;
    margin-bottom: 0px;
    align-items: center;
    gap: 12px;
    border-radius: 12px 12px 0 0;
}

/* ADDED: New rule to handle padding for the list of questions */
.faq-list {
    padding: 10px 25px;
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-primary-lighter);
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: bold;
}

/* Individual FAQ Item (Accordion) */
.faq-item {
    border-bottom: 1px solid #eef;
    padding: 15px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
}

.faq-answer {
    max-height: 0;
    /* Initially collapsed */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    /* Smooth transition for accordion */
    color: var(--color-text-body);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer p {
    padding: 15px 5px 0;
    margin: 0;
}

/* When active, the answer expands */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question {
    /*background: #f9fcf2;*/
    color: var(--color-primary);
}

/* Accordion Toggle Icon (Chevron) */
.toggle-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.faq-item.active .toggle-icon {
    transform: rotate(-135deg);
}

/* Contact Section Styling */
.faq-contact-section {
    text-align: center;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #888;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.faq-contact-section h3 {
    font-size: 1.6rem;
    margin: 0 0 10px 0;
}

.faq-contact-section p {
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-btn {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.contact-btn.primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.contact-btn.primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.contact-btn.secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.contact-btn.secondary:hover {
    background-color: #f7f7f7;
}

/* --- CSS TO FIX INVISIBLE SLICK ARROWS --- */

/* Style the arrow buttons themselves */
.slick-prev,
.slick-next {
    width: 50px;
    /* Set a specific width */
    height: 50px;
    /* Set a specific height */
    background: white;
    /* Give them a background color */
    border-radius: 50%;
    /* Make them circular */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Add a subtle shadow */
    z-index: 100 !important;
    /* IMPORTANT: Ensures they are on top of other content */
    display: block !important;
    /* Ensure they are not hidden */
}

/* Position the "previous" button */
.slick-prev {
    left: -20px;
    /* Adjust this value to position it */
}

/* Position the "next" button */
.slick-next {
    right: -20px;
    /* Adjust this value to position it */
}

/* This is a common fix: The default theme sometimes hides the icons */
.slick-prev::before,
.slick-next::before {
    /* We use Font Awesome, so we hide the default Slick font icon */
    content: "" !important;
}

/* Style the Font Awesome icon inside our buttons */
.slick-prev i,
.slick-next i {
    color: var(--color-text);
    /* Set a visible color for the arrow icon */
    font-size: 24px;
    /* Make the icon bigger and easier to see */
}

/* features */
.madrasa-section {
    padding: 60px 20px;
    background: var(--color-off-white);
    text-align: center;
}

.madrasa-section h2 {
    font-size: var(--font-size-section-title);
    font-weight: var(--fw-semibold);
    margin-bottom: 10px;
}

.madrasa-section .highlight {
    color: var(--color-primary);
}

.madrasa-section .subtitle {
    font-size: var(--font-size-section-label);
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    border: 1px solid var(--color-border-light);
    border-radius: 15px;
    padding: 25px 20px;
    background: var(--color-white);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

@media (min-width: 550px) and (max-width: 767px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    /*border: 1px solid #a3c434;*/
    padding: 10px;
    background: var(--color-bg-feature);
    /*border-radius: 50px;*/
    transition: all 0.3s ease;
    /* Smooth transition */
}

.feature-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* Hover styling on the parent .feature-box */
.feature-box:hover .feature-icon {
    border: 1px solid var(--color-primary);
    padding: 10px;
    background: var(--color-bg-feature);
    border-radius: 50px;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(163, 196, 52, 0.3);
}

/* --- MOVED FROM style.css --- */
.hero-section {
    background-color: transparent;
    /*background-image: linear-gradient(180deg, var(--color-white) 0%, #1840012E 100%);*/
    background: var(--color-bg-green-light);
    /*height: 100vh !important;*/
    height: fit-content;
    padding-bottom: 70px;
}

.h1-title {
    font-weight: var(--fw-semibold);
    font-size: var(--font-size-hero-section-title);
}

.highlight {
    color: var(--color-primary);
}

.images-div {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.member-div {
    width: 310px;
    background-color: var(--color-white);
    padding: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: #18171714;
    border-radius: 60px;
    margin: auto;
    margin-bottom: 30px;
}

.users {
    font-size: 0.9rem;
    margin-bottom: 0px;
    font-weight: var(--fw-semibold);
}

img.person {
    width: 6rem;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--fw-semibold);
}

.text-muted {
    color: var(--color-text-muted) !important;
}

p.para {
    padding: 0px 80px;
    color: var(--color-text-light);
    margin-top: 10px;
    margin-bottom: 30px;
}


.trust-badge {
    background: var(--color-white);
    padding: 10px;
    border-radius: 50px;
    width: fit-content;
    font-size: 12px;
}

/*.btn-primary {*/
/*    background-color: var(--color-primary);*/
/*    font-size: 14px;*/
/*    font-weight: var(--fw-regular);*/
/*    color: var(--color-white);*/
/*    border-radius: 10px;*/
/*    text-decoration: none;*/
/*    padding: 10px;*/
/*    border: 1px solid var(--color-primary);*/
/*    transition: transform 0.3s ease, background-color 0.3s ease;*/
/*}*/


.btn-tour {
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    text-decoration: none;
    padding: 10px;
    background: var(--color-white);
    width: 200px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-tour:hover {
    border: 1px solid var(--color-primary);
    background: var(--color-white);
    transform: scale(1.05);
}

.hero-btn {
    background-color: var(--color-primary);
    font-size: 14px;
    font-weight: var(--fw-regular);
    color: var(--color-white);
    border-radius: 10px;
    text-decoration: none;
    padding: 10px;
    border: 1px solid var(--color-primary);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-demo {
    width: 200px;
}

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

.image-column::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

img.right-icon {
    width: 20px;
}

.image-column {
    position: relative;
}

img.support-icons {
    width: 80px;
    border: 1px solid var(--color-primary);
    padding: 15px;
    background: var(--color-white);
    border-radius: 50%;
}

.language-support {
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    padding: 20px;
    background: var(--color-white);
}

.support-card {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.image-column {
    background-image: url(https://ilmify.app/wp-content/uploads/2025/07/ilmify-banner-image-scaled.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    color: var(--color-white);
}

.im

/* Underline hover animation */
.underline-animate {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.underline-animate::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    /* Green */
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.underline-animate:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

span.popular {
    font-size: var(--font-size-section-label);
    background: var(--color-primary);
    padding: 5px 10px;
    border-radius: 50px;
    color: var(--color-white);
}

.pricing-section {
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.pricing-section h2 {
    font-size: var(--font-size-section-title);
    margin-bottom: 10px;
}

.pricing-section h2 span {
    color: var(--color-primary);
}

/* .pricing-section p {
  color: #666;
  margin-bottom: 40px;
} */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.pricing-card {
    border: 2px solid var(--color-border);
    border-radius: 16px;
    padding: 30px 20px;
    background: var(--color-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card img {
    max-width: 100%;
    height: fit-content;
    width: 100px;
}

img.right-icon {
    width: 20px;
}

.plan-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.pricing-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pricing-price {
    font-size: var(--font-size-section-title);
    color: var(--color-primary);
    margin: 15px 0;
}

.pricing-card.border-color {
    border: 2px solid var(--color-primary);
}

span.plan-per-month {
    font-size: 14px;
    color: #8c8c8c;
}

.pricing-head {
    text-align: left;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 30px;
}

.pricing-card a {
    margin-top: 20px !important;
    background-color: var(--color-white);
    color: var(--color-text);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    border: 1px solid var(--color-primary);
}

.pricing-card a:hover {
    background: var(--color-text);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 25px 15px;
    }


}


/*img*/


.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}

.marquee {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-white);
    padding: 30px 0;
    border-radius: 20px;
    position: relative;
}

@media (max-width: 600px) {
    .slick-initialized .slick-slide {

        text-align: center;
    }

    .marquee {
        width: 95%;
    }

    #primary-menu {
        left: 30px;
    }

    .panel-0017 {
        width: 100%;
    }
}

.marquee-content {
    display: flex;
    width: max-content;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee-left .marquee-content {
    animation-name: scroll-left;
}

.marquee-right .marquee-content {
    animation-name: scroll-right;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.marquee-content img {
    height: 200px;
    object-fit: cover;
    margin: 0 30px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

section#solution {
    background: var(--color-white);
    padding-bottom: 240px;
}

.left-content {
    width: 60%;
}

.right-content {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.video-title {
    margin-bottom: 20px;
}

.video-link {
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
}

#shared-video-container {
    margin-top: 20px;
    text-align: center;
}

.laptop-frame>iframe {
    width: 100%;
    height: 60vh;
    border-radius: 8px;
}

.promo-video-inline021.active {
    padding: 0px 20px;
    background: var(--color-primary);
    border-radius: 50px;
    color: white;
}

/* Laptop-style frame */
.laptop-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Default for smallest screens */
.laptop-frame {
    padding: 20px !important;
}

.laptop-frame>iframe {
    width: 100% !important;
    height: 250px !important;
    /* Adjusted default */
    border-radius: 8px !important;
}

@media (max-width: 480px) {
    .head1 {
        margin-top: 30px;
    }

    .promo-video-inline021 {
        font-size: 15px !important;
        display: flex !important;
        align-items: center !important;
    }

    .laptop-frame {
        padding: 24px !important;
    }

    .laptop-frame>iframe {
        height: 200px !important;
    }
}

/* ≥ 768px */
@media (min-width: 768px) {
    .laptop-frame {
        padding: 32px !important;
    }

    .laptop-frame>iframe {
        height: 400px !important;
    }
}

/* ≥ 1024px */
@media (min-width: 1024px) {
    .laptop-frame {
        padding: 36px !important;
    }

    .laptop-frame>iframe {
        height: 60vh !important;
    }
}

/* ≥ 1280px */
@media (min-width: 1280px) {
    .laptop-frame {
        padding: 40px !important;
    }

    .laptop-frame>iframe {
        height: 60vh !important;
    }
}


@media (min-width: 0px) and (max-width: 575.98px) {
    .hero-section-container {
        width: 90%;
        text-align: center;
        margin: auto;
        margin-top: 70px;
    }

    .hero-section {
        padding-top: 50px;
    }

    .h1-title {
        font-weight: var(--fw-semibold);
    }

    .highlight {
        color: var(--color-primary);
    }

    p.para {
        padding: 0px;
    }

    .users {
        font-size: 0.8rem;
        margin-bottom: 0px;
        font-weight: var(--fw-semibold);
    }

    img.person {
        width: 4rem;
        height: 100%;
    }

    .member-div {
        width: 250px;
    }

    img.mobile-image {
        display: block;
        width: 100%;
    }

    .hero-btn {
        background-color: var(--color-primary);
        font-size: 12px;
        font-weight: var(--fw-regular);
        color: var(--color-white);
        border-radius: 40px 40px 40px 40px;
        text-decoration: none;
        padding: 10px 15px 10px 15px;
    }

    .hero-image {
        margin: auto !important;
        width: 100%;
        display: block !important;
        margin-top: 45px !important;
    }

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

    .float {
        position: fixed;
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 20px;
        background-color: var(--color-whatsapp);
        color: var(--color-white);
        border-radius: 50px;
        text-align: center;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
    }

    .my-float {
        margin-top: 16px;
    }

    .whatsapp-img {
        width: 50px;
    }

    .btn-demo {
        width: fit-content;
    }

    .btn-tour {
        width: fit-content;
    }

    .row-reverse-mobile {
        flex-direction: column-reverse;
    }

    .video-link {
        margin-top: 50px;
    }

    .text-column {
        width: 370px;
    }

    .image-column {
        background-image: unset !important;
        min-height: unset !important;
    }

}

@media (min-width: 576px) {
    .float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        left: 25px;
        background-color: var(--color-whatsapp);
        color: var(--color-white);
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
    }

    .whatsapp-img {
        width: 60px;
    }

    .my-float {
        margin-top: 16px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section-container {
        width: 90%;
        text-align: center;
        margin: auto;
        margin-top: 70px;
    }

    .hero-section {
        padding-top: 70px;
    }

    .h1-title {
        font-weight: var(--fw-semibold);
    }

    .highlight {
        color: var(--color-primary);
    }

    p.para {
        padding: 0px 30px;
    }

    .hero-image {
        margin: auto !important;
        width: 90%;
        display: block !important;
        margin-top: 45px !important;
    }

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

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section-container {
        width: 90%;
        text-align: center;
        margin: auto;
        margin-top: 80px;
    }

    .tab-padding {
        padding: 80px 0px !important;
    }

    p.para {
        padding: 0px 40px;
    }

    .hero-image {
        margin: auto !important;
        width: 90%;
        display: block !important;
        margin-top: 45px !important;
    }

    .hero-section {
        padding-top: 70px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {

    .hero-section-container {
        width: 70%;
        text-align: center;
        margin: auto;
        margin-top: 100px;
    }

    .hero-image {
        margin: auto !important;
        width: 75%;
        display: block !important;
        margin-top: 45px !important;
    }

    .hero-section {
        padding-top: 70px;
    }
}

@media (min-width: 1200px) {

    .hero-section-container {
        width: 60%;
        text-align: center;
        margin: auto;
        margin-top: 100px;
    }

    .hero-image {
        margin: auto !important;
        width: 75%;
        display: block !important;
        margin-top: 45px !important;
    }
}


/* feature */
.card.features {
    padding: 30px !important;
    border-radius: 25px;
    border: 1px solid var(--color-border);
}

h3.fs-2.text-body-emphasis {
    font-size: 1.4rem !important;
}

a.icon-link {
    font-size: 16px;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    color: var(--color-primary);
    align-items: center;
    font-weight: var(--fw-semibold);
}

i.bi.bi-arrow-up-right {
    font-size: 10px;
    color: var(--color-white);
    border-radius: 50px;
    background-color: var(--color-primary);
    line-height: 0;
    padding: 8px;
}

.feature.col-md-12.section-title {
    display: block;
    margin: auto;
}



/* footer */

section.footer-top {
    background-image: linear-gradient(180deg, var(--color-white) 0%, #1840012E 100%) !important;
}

h3.fw-semibold {
    font-weight: var(--fw-semibold) !important;
    font-size: 1.2rem !important;
}

.footer-padding {
    padding: 80px 0px 0px 0px;
}

img.social-icons {
    width: 24px;
}

.footer-section {
    padding-bottom: 30px;
}

.footer-c4 {
    padding-bottom: 30px;
}

.contact-icons-mb {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    text-decoration: none;
}



.seciton-padding {
    padding: 40px 0px 40px 0px;
}

h4.footer-banner-title {
    color: var(--color-white);
    font-size: var(--font-size-section-title);
}

p.footer-banner-para {
    color: var(--color-secondary);
}

.ptx-lan-footer-copyright {
    padding: 20px 0px;
    border-top: 1px solid var(--color-primary);
}

@media (min-width: 0px) and (max-width: 991.98px) {
    .copyright-text2 {
        text-align: center;
        padding-top: 0px;
    }

    .copyright-social {
        display: flex;
        justify-content: center;
    }

    .copyright-text {
        text-align: center;
    }

    .ptx-lan-footer-copyright {
        padding: 20px 0px;
        border-top: 1px solid var(--color-primary);
        gap: 10px;
    }

    .footer-banner-section {
        width: 90%;
    }

    .seciton-padding {
        padding: 0px;
    }

    .contact-tabs {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.artby {
    color: var(--color-primary);
    text-decoration: none;
}

@media (min-width: 992px) {
    .copyright-text2.col-lg-4.col-sm-12 {
        text-align: right;
    }

    .copyright-social {
        display: flex;
        justify-content: space-evenly;
    }
}

.addpadding {
    height: 200px;
}

/*about us*/
.single-blog-title-margin {
    margin-bottom: 3.6rem;
}

h1.vd-post-title {
    font-size: var(--font-size-section-title);
    text-align: center;
}

#single-blog-title {
    height: 30px;
    padding: 60px;
    color: var(--color-primary);
    background-image: linear-gradient(180deg, var(--color-white) 0%, #1840012E 100%) !important;
}

/*contact us*/
img.info-icon-list {
    width: 80px;
    padding: 15px;
    background: var(--color-secondary);
    border-radius: 20px;
    height: 80px;
    margin-bottom: 25px;
}









.text_success {
    color: var(--color-text);
    font-size: 0.75rem;
    margin: 0px;
}

b.star {
    color: red;
}

.wp-block-group {
    padding-bottom: 2rem;
}

/* --- Section Header Styles (Theme Based) --- */
.section-label {
    font-size: var(--font-size-section-label);
    font-weight: var(--fw-semibold);
    letter-spacing: 1.5px;
    color: var(--bs-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary-light);
    border-radius: 40px;
}

.section-title em {
    font-style: normal;
    color: var(--bs-primary);
    font-weight: var(--fw-semibold);
}

.section-subtitle {
    font-size: var(--font-size-section-desc);
    color: var(--bs-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: var(--fw-regular);
}

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

input#contactusMessage1 {
    height: 100px;
}

.form-control {
    padding: 0.75rem .75rem;
    line-height: 2;
}

#contactus-submit {
    width: 100%;
    text-align: center;
    color: var(--color-white);
    padding: 10px 14px;
    border-radius: 6px;
    box-shadow: 0 0 0 #b8b9be, 0 0 0 var(--color-white);
    border: 1px solid var(--color-secondary) !important;
    font-size: var(--font-size-section-label);
    cursor: pointer;
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
}

/* Add your CSS styles here */
.loader-icon {
    display: none;
    /* Hide the loader icon by default */
}

.loading-text {
    display: none;
    /* Hide the loading text by default */
}

.loading {
    position: relative;
}

.loading .loader-icon,
.loading .loading-text {
    display: inline-block;
    vertical-align: middle;
    display: none;
}

.success-body {
    display: none;
}

.contact-tabs {
    display: block;
    height: 100%;
    min-height: 400px;
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 15px;
    background: var(--color-white);
    box-shadow: var(--color-shadow-card);
}

iframe {
    width: 100%;
    height: 100%;
}

/*screenshot*/

img.screenshot-image {
    width: fit-content;
    height: 233px;
    margin: auto;
}


.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    height: 100%;
    /* Ensure consistent height */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card img {
    width: 100%;
    max-height: 230px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px var(--color-border) !important;
}

.card:hover img {
    transform: scale(1.1);
}

.screenshot-name {
    margin: 15px 0 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-text);
}

/* Fullscreen image styles */
.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.fullscreen img {
    max-width: 90%;
    max-height: 90%;
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);*/
    border-radius: 10px;
}

.hidden {
    display: none;
}

.fullscreen {
    cursor: pointer;
}


/*app screenshot*/
.app-slider img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.slick-prev,
.slick-next {
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    color: white;
    border-radius: 50%;
    /* Circular buttons */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-dots {
    bottom: 10px;
}

.slick-dots li button:before {
    color: white;
    /* Customize dot color */
}

.slick-slide {
    margin: 0 10px;
    /* Add gap between slides */
}

.slick-list {
    margin: 0 -10px;
    /* Adjust container margins to account for the gap */
}


/* Large devices (992px to 1199.98px) */
@media (min-width: 992px) {

    /* Your styles for large devices */
    #tutorial {
        padding: 100px 0px;
    }

    .ayg-player-container {
        padding: 40px;
        background: #202020;
        border-radius: 30px;
        backdrop-filter: blur(10px);
    }

    .desktop-padding {
        padding: 120px 0px !important;
    }
}



#popupOverlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.popupContent {
    background: var(--color-white);
    padding: 30px 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.closeBtn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.fieldlabels {
    display: block;
    margin-top: 15px;
    font-weight: var(--fw-semibold);
}

.input-wrapper {
    margin-bottom: 10px;
}

.form-title {
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 480px) {
    .popupContent {
        padding: 20px 15px;
    }
}

button.slick-next.slick-arrow {
    display: none !important;
}

button.slick-prev.slick-arrow {
    display: none !important;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeUp 0.7s ease-out;
}

.section-title {
    font-size: var(--font-size-section-title);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.section-title em {
    color: var(--color-primary);
    /* font-style: italic; */
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: var(--font-size-section-desc);
}

.testimonials-container {
    position: relative;
    /* padding: 20px 0; */
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
    border: 1px solid var(--color-border-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin: 0 15px;
    height: auto;
}

/* .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} */

.stars {
    margin-bottom: 1.5rem;
}

.slick-list.draggable {
    padding: 50px 30px !important;
}

.star {
    color: var(--color-star);
    font-size: 1.2rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-body);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-border-card);
}

.author-info h5 {
    margin: 0;
    color: var(--color-text);
    font-weight: var(--fw-semibold);
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.student-count {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-darker));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
}

/* Custom Slick Slider Styles */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-initialized .slick-slide {
    display: block;
}



/* Hide default dots */
.slick-dots {
    display: block !important;
}

/* Custom controls */
.slider-controls {
    text-align: center;
    margin-top: 2rem;
    display: none;
    /* Hide since we're using slick arrows */
}

.auto-scroll-indicator {
    text-align: center;
    margin-top: 1rem;
    color: var(--color-primary);
    font-size: 0.9rem;
}




@media (max-width: 768px) {
    .section-title {
        font-size: var(--font-size-section-title);
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0 10px;
    }


}




.pricing-card img {
    width: 100px !important;
}

@media (max-width: 767px) {
    .main-header h1 {
        font-size: var(--font-size-hero-section-title);
    }

    .values-header h2,
    .team-header h2,
    .testimonials-header h2 {
        font-size: var(--font-size-section-title);
    }

    .slick-prev,
    .slick-next {
        display: none !important;
    }
}