:root {
    --primary: #046e42;
    --secondary: #97bc62;
    --accent: #d4af37;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --hero-bg: #01221c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
}

html {
    overflow-x: hidden;
}

.navbar {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    transition: all 0.3s;
}

.navbar-scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0.5rem;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--accent) !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #d2b47e !important;
}

/* Navbar Logo Styling - Logo bari, navbar choti */
.navbar-logo {
    width: 120px;
    /* Logo ki width increase */
    height: 120px;
    /* Logo ki height increase */
    object-fit: contain;
    margin-right: 10px;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    mix-blend-mode: normal;
    /* Ye properties logo ko navbar ke bahar extend karein gi */
    position: relative;
    z-index: 1000;
    /* Logo sab ke upar rahe */
}

/* Navbar adjustments - height control */
#mainNav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    overflow: visible;
    /* Logo ko crop na ho */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .navbar-logo {
        width: 80px;
        height: 80px;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    #mainNav {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .navbar-logo {
        width: 70px;
        height: 70px;
        top: -5px;
    }

    .navbar-brand {
        font-size: 1rem;
    }
}

/* Hero Section with Image Slider */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Desktop Banner Images */
.banner-slide-1 {
    background-image: url('image/Bannar\ 04.jpg');
}

.banner-slide-2 {
    background-image: url('image/Bannar\ 05.jpg');
}

.banner-slide-3 {
    background-image: url('image/Bannar\ 06.jpg');
}

/* Mobile Banner Images */
@media (max-width: 768px) {
    .banner-slide-1 {
        background-image: url('image/Bannar\ 04\ PH.jpg');
    }

    .banner-slide-2 {
        background-image: url('image/Bannar\ 05\ PH.jpg');
    }

    .banner-slide-3 {
        background-image: url('image/Bannar\ 06\ PH.jpg');
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
}

/* Slide 1 - Text Left */
.slide-content-1 {
    display: none;
}

.slide-content-1.active {
    display: block;
}

.slide-content-1.active .hero-title {
    animation: fadeInRight 3s ease-in-out;
}

.slide-content-1.active .hero-subtitle {
    animation: fadeInUp 2s ease-in-out;
}

/* Slide 2 - Text Right */
.slide-content-2 {
    display: none;
}

.slide-content-2.active {
    display: block;
}

.slide-content-2.active .hero-title {
    animation: bounceInLeft 3s ease-in-out;
}

.slide-content-2.active .hero-subtitle {
    animation: fadeInLeft 3s ease-in-out;
}

/* Slide 3 - Text Left */
.slide-content-3 {
    display: none;
}

.slide-content-3.active {
    display: block;
}

.slide-content-3.active .hero-title {
    animation: alternateFadeIn 3s ease-in-out;
}

.slide-content-3.active .hero-subtitle {
    animation: fadeInRight 3s ease-in-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

    60% {
        opacity: 1;
        transform: translateX(10px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Alternate Fade Animations */
@keyframes alternateFadeIn {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes alternateFadeInSubtitle {

    0%,
    100% {
        opacity: 0.95;
    }

    50% {
        opacity: 0.6;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-custom {
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    font-size: 1.1rem;
}

.btn-primary-custom {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary-custom:hover {
    background: #2c5f2d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Banner Navigation */
.banner-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--accent);
    border-color: white;
    width: 45px;
    border-radius: 7px;
}

/* Arrow Navigation */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.banner-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav-prev {
    left: 30px;
}

.banner-nav-next {
    right: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-custom {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .banner-nav {
        width: 40px;
        height: 40px;
    }

    .banner-nav-prev {
        left: 15px;
    }

    .banner-nav-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-custom {
        width: 100%;
        padding: 12px 25px;
    }

    .banner-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .banner-indicators {
        bottom: 20px;
    }
}


.hero-title .text-accent {
    background: linear-gradient(85deg, #d2b47e, #ffed4e, #d2b47e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: inline-block;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    /* Glow effect */
}


.hero-subtitle {
    color: white;
    /* Explicitly white */
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    /* Readable shadow */
}

/* Responsive */
@media (max-width: 991px) {

    /* Center alignment for tablet and below */
    .hero-content {
        text-align: center !important;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
        padding: 0 20px;
        color: white;
        /* Explicitly white */
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.8);
        /* Readable shadow */
    }

    .hero-buttons {
        justify-content: center !important;
    }

    .btn-custom {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .banner-nav {
        width: 40px;
        height: 40px;
    }

    .banner-nav-prev {
        left: 15px;
    }

    .banner-nav-next {
        right: 15px;
    }

    /* All slides center */
    .slide-content-1 .col-lg-6,
    .slide-content-1 .col-md-8,
    .slide-content-2 .col-lg-6,
    .slide-content-2 .col-md-8,
    .slide-content-3 .col-lg-6,
    .slide-content-3 .col-md-8 {
        margin: 0 auto;
    }

    /* Override desktop text alignment */
    .slide-content-2 .hero-content {
        text-align: center !important;
    }

    .slide-content-2 .hero-buttons {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 1.5rem;
        text-align: center !important;
    }

    .hero-title {
        font-size: 2rem;
        padding-top: 2rem !important;
        text-align: center;
    }

    .hero-title .text-accent {
        display: block;
        margin-top: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        padding: 0 15px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center !important;
    }

    .btn-custom {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
    }

    .banner-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 1.7rem;
        padding-top: 1.5rem !important;
        line-height: 1.4;
        text-align: center;
    }

    .hero-title .text-accent {
        font-size: 1.8rem;
        display: block;
        margin-top: 5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 1.5rem;
        text-align: center;
        color: white;
        /* Explicitly white */
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.8);
        /* Readable shadow */
    }

    .banner-indicators {
        bottom: 20px;
    }

    .btn-custom {
        max-width: 280px;
        font-size: 0.95rem;
    }
}


.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--accent);
    bottom: -10px;
    left: 20%;
}

.course-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.course-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2rem;
    text-align: center;
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bg-light {
    background: #fffff5 !important;
}

/* Why Choose Section - All Unique Classes with "ustaz-" prefix */
.ustaz-why-choose-section {
    background: #fffff5;
    padding: 80px 0;
}

.ustaz-section-title {
    color: #2c5f2d;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ustaz-section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Card Wrapper - for proper spacing */
.ustaz-card-wrapper {
    padding-top: 65px;
    height: 100%;
}

/* Why Choose Cards */
.ustaz-why-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    overflow: visible;
    border: 3px solid #e3f2e4;
    position: relative;
}

.ustaz-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.15);
    border-color: var(--primary);
}

/* Icon Circle at Top */
.ustaz-card-icon-circle {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    z-index: 10;
}

.ustaz-icon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffe8cc 0%, #ffd9a8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 200, 130, 0.3);
    transition: all 0.4s ease;
}

.ustaz-why-card:hover .ustaz-icon-bg {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 30px rgba(255, 200, 130, 0.5);
}

.ustaz-icon-bg i {
    font-size: 3.5rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Content */
.ustaz-card-content {
    padding: 80px 30px 30px 30px;
    text-align: center;
}

.ustaz-card-content h4 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.ustaz-card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .ustaz-section-title {
        font-size: 2.2rem;
    }

    .ustaz-card-wrapper {
        padding-top: 60px;
    }

    .ustaz-card-icon-circle {
        width: 120px;
        height: 120px;
        top: -60px;
    }

    .ustaz-icon-bg i {
        font-size: 3rem;
    }

    .ustaz-card-content {
        padding: 75px 25px 25px 25px;
    }

    .ustaz-card-content h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 992px) {
    .ustaz-why-choose-section {
        padding: 60px 0;
    }

    .ustaz-section-title {
        font-size: 2rem;
    }

    .ustaz-card-icon-circle {
        width: 110px;
        height: 110px;
        top: -55px;
    }

    .ustaz-why-card {
        margin-top: 55px;
    }

    .ustaz-icon-bg i {
        font-size: 2.8rem;
    }

    .ustaz-card-content {
        padding: 70px 25px 25px 25px;
    }

    .ustaz-card-content h4 {
        font-size: 1.2rem;
    }

    .ustaz-card-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .ustaz-why-choose-section {
        padding: 50px 0;
    }

    .ustaz-section-title {
        font-size: 1.8rem;
    }

    .ustaz-section-subtitle {
        font-size: 1rem;
    }

    .ustaz-card-icon-circle {
        width: 100px;
        height: 100px;
        top: -50px;
    }

    .ustaz-why-card {
        margin-top: 50px;
    }

    .ustaz-icon-bg i {
        font-size: 2.5rem;
    }

    .ustaz-card-content {
        padding: 65px 20px 20px 20px;
    }

    .ustaz-card-content h4 {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .ustaz-why-card {
        border-radius: 15px;
        margin-top: 45px;
    }

    .ustaz-card-icon-circle {
        width: 90px;
        height: 90px;
        top: -45px;
    }

    .ustaz-icon-bg i {
        font-size: 2.2rem;
    }

    .ustaz-card-content {
        padding: 60px 15px 20px 15px;
    }

    .ustaz-card-content h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .ustaz-card-content p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
}


/* -------------------------------------- end why choose home page ------------------------------------- */

.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-img {
    height: 250px;
    object-fit: cover;
}

.pricing-card {
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    transform: scale(1.08);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
}

.pricing-card.featured .price {
    color: var(--accent);
}

/* ------------------------------ Core feature styles ------------------------------ */

.card-container {
    perspective: 1000px;
}

.feature-card {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 380px;
    margin: 0 auto;
    border-radius: 180px 180px 180px 180px / 190px 190px 190px 190px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    background: white;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.2), rgba(151, 188, 98, 0.2));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
    border-radius: inherit;
    /* Important: inherit card's border radius */
}

.feature-card:hover::before {
    opacity: 0;
    /* Disable background overlay on hover */
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.card-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}


.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 40px 25px 25px;
    z-index: 2;
    transition: all 0.4s ease;
}

.card-title {
    color: #d2b47e;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /* text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); */
    line-height: 1.4;
    position: relative;
    z-index: 3;
}

.feature-card:hover .card-overlay {
    padding-bottom: 35px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
}

/* Floating Animations */
.float-animation-1 {
    animation: float1 3.5s ease-in-out infinite;
}

.float-animation-2 {
    animation: float2 4s ease-in-out infinite;
    animation-delay: 0.3s;
}

.float-animation-3 {
    animation: float3 4.2s ease-in-out infinite;
    animation-delay: 0.6s;
}

.float-animation-4 {
    animation: float4 3.8s ease-in-out infinite;
    animation-delay: 0.9s;
}

.float-animation-5 {
    animation: float5 4.5s ease-in-out infinite;
    animation-delay: 1.2s;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-22px);
    }
}

@keyframes float5 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-28px);
    }
}

.section-title-core {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    text-align: center;
    margin-bottom: 70px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.section-title-core::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Icon Badge */
.card-icon-badge {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(0, 0, 0, 0.3);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .card-icon-badge {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
}

/* Shine effect */
.feature-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 60%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
    z-index: 5;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
    left: 100%;
}

.info-section {
    background: white;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

/* --------------------------------- end of core feature styles --------------------------------- */

/* ===============================
   BLOG META (DATE & AUTHOR)
================================ */

.blog-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    gap: 14px;
    font-size: 0.85rem;
    color: #777;
}

.blog-text ul li {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-text ul li::before {
    content: "•";
    color: #999;
    font-size: 0.7rem;
}

.blog-text ul li:first-child::before {
    content: "";
}

/* ===============================
   BLOG CARD (UPDATED)
================================ */

.blog-card {
    height: 260px;
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Image */
.blog-image {
    flex: 1;
    max-width: 240px;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Text */
.blog-text {
    flex: 2;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #222;
}

/* Read More */
.blog-text a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.blog-text a:hover {
    text-decoration: underline;
}

/* Blog Section Container */
.deal-crd {
    overflow: hidden;
    /* Prevent overflow */
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fffff5;
}

.core-cour {
    background-color: #fffff5;
}

/* Swiper Overflow Fix */
.blogSwiper {
    overflow: hidden;
    padding: 10px 0;
}

.blogSwiper .swiper-wrapper {
    padding-bottom: 10px;
}

.blogSwiper .swiper-slide {
    height: auto;
}

/* ===============================
   SLIDER ARROWS
================================ */

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow i {
    font-size: 14px;
}

.slider-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
    .feature-card {
        max-width: 240px;
        height: 340px;
    }
}

@media (max-width: 991px) {
    .blog-card {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .blog-text ul {
        justify-content: center;
    }

    .blog-image {
        max-width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        max-width: 300px;
        height: 380px;
        margin-bottom: 40px;
    }

    .section-title-core {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .blog-title {
        font-size: 1.1rem;
    }

    .blog-price {
        font-size: 1rem;
    }

    .blog-desc {
        font-size: 0.9rem;
    }
}

/* ===============================
   TESTIMONIAL SECTION - FIXED
================================ */

.testimonial-section {
    background: #fffff5;
    padding: 80px 0;
    overflow: hidden;
    /* Prevent horizontal scroll */
}

/* Container overflow fix */
.testimonial-section .container {
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
}

/* CRITICAL FIX: Slick Slider Spacing */
.testimonial-slider {
    padding: 20px 0;
    margin: 0 -15px;
    overflow: hidden;
    /* Prevent overflow */
}

.testimonial-slider .slick-slide {
    padding: 0 15px;
    /* Space between cards */
}

.testimonial-slider .slick-list {
    margin: 0 -15px;
    /* Balance padding */
    overflow: visible;
    /* Prevent cutting shadows */
}

.testimonial-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

/* ===============================
   TESTIMONIAL CARD - REDESIGNED
================================ */

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Hover Effect - NO BACKGROUND COLOR */
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

/* Subtle gradient overlay on hover */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

/* Image */
.testimonial-header img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Name & Designation */
.testimonial-header h5 {
    margin: 0 0 5px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-header span {
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
}

/* Testimonial Text */
.testimonial-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    flex-grow: 1;
    margin: 0;
    font-style: italic;
}

/* Quote Icon */
.testimonial-card::after {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 80px;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

/* ===============================
   RESPONSIVE FIX
================================ */

@media (max-width: 767px) {
    .testimonial-card {
        min-height: 360px;
        padding: 30px 25px;
    }

    .testimonial-header img {
        width: 65px;
        height: 65px;
    }

    .testimonial-header h5 {
        font-size: 1rem;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }
}

/* ------------------------------ footer styles ------------------------------ */
footer {
    background: linear-gradient(135deg, var(--dark), #2c2c2c);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent);
}

/* Mobile screens ke liye center alignment */
@media (max-width: 768px) {
    footer .col-md-4 {
        text-align: center;
    }

    footer .col-md-4 ul {
        padding-left: 0;
    }

    footer .col-md-4 p,
    footer .col-md-4 h5 {
        text-align: center;
    }
}

.footer-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle;
}

/* Mobile ke liye */
@media (max-width: 768px) {
    .footer-logo {
        width: 80px;
        height: 80px;
    }
}

.eprt-tech {
    background-color: #fffff5;
}

.home-pre-cour {
    background-color: #fffff5;
    padding: 40px 0;
}

footer a {
    color: #d2b47e;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #d2b47e;
    text-decoration: underline;
}

.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 20px 20px 0 0;
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(151, 188, 98, 0.25);
}


/* ------------------------ stats section ------------------------ */

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: #fffff5;
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
}

/* Left Stats Column */
.stats-left,
.stats-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Individual Stat Item */
.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.stats-right .stat-item {
    flex-direction: row-reverse;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

/* Stat Icon Circle */
.stat-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(13, 111, 111, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 30px rgba(13, 111, 111, 0.5);
}

/* Stat Text */
.stat-text {
    text-align: left;
}

.stats-right .stat-text {
    text-align: right;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Arial Black', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
}

/* Center Circle */
.stats-center {
    position: relative;
    width: 280px;
    height: 280px;
    min-width: 280px;
    opacity: 0;
    transform: scale(0);
    animation: zoomIn 0.8s ease forwards;
    animation-delay: 0.6s;
}

.center-circle {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(13, 111, 111, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.center-circle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--primary);
    border-radius: 0 0 50% 50%;
}

.center-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    position: relative;
    z-index: 2;
    font-family: 'Arial Black', sans-serif;
}

.center-label {
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

/* Glow Effect */
.center-circle::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(13, 111, 111, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Counter Animation */
.counting {
    display: inline-block;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-container {
        gap: 50px;
    }

    .stats-center {
        width: 240px;
        height: 240px;
        min-width: 240px;
    }

    .center-number {
        font-size: 3.5rem;
    }

    .center-label {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stats-left,
    .stats-right {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .stats-right .stat-item {
        flex-direction: row;
    }

    .stats-right .stat-text {
        text-align: left;
    }

    .stat-item,
    .stats-right .stat-item {
        transform: translateY(30px);
        animation: slideInUp 0.8s ease forwards;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 15px;
    }

    .stats-left,
    .stats-right {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .stat-item {
        max-width: 280px;
        width: 100%;
    }

    .stats-center {
        width: 200px;
        height: 200px;
        min-width: 200px;
    }

    .center-number {
        font-size: 3rem;
    }

    .center-label {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 50px 10px;
    }

    .stat-item {
        max-width: 250px;
    }

    .stats-center {
        width: 180px;
        height: 180px;
        min-width: 180px;
    }

    .center-number {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

.swiper {
    overflow: hidden;
    width: 100%;
}

.swiper-wrapper {
    width: 100%;
}


/* ------------------------------------- about page styles ------------------------------------- */


.why-choose-section {
    padding: 80px 0;
}

.reason-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s;
    border-left: 4px solid var(--secondary);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent);
}

.reason-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.reason-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 15px;
}

.timeline-section {
    background: #fffff5;
    padding: 80px 0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.timeline-year {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cta-section {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section-home {
    background: var(--primary);
    color: white;
    padding: 0 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.feature-icon {
    color: var(--primary);
}


/* ----------------------------- plan page style -----------------------------  */
.plan-section {
    padding: 120px 0 80px;
    background: #fffff5;
}

.plan-header {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.currency-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    /* Mobile par wrap ho jayega */
}

.currency-btn {
    padding: 10px 30px;
    border: 2px solid var(--secondary);
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.currency-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.currency-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Mobile screens ke liye */
@media (max-width: 768px) {
    .currency-selector {
        gap: 10px;
        margin: 20px 0;
    }

    .currency-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Very small screens ke liye */
@media (max-width: 480px) {
    .currency-selector {
        gap: 8px;
    }

    .currency-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .currency-btn i {
        font-size: 0.8rem;
    }
}


/* Pricing Table */
.pricing-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.pricing-table table {
    width: 100%;
    margin: 0;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.pricing-table th {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
}

.pricing-table tbody tr:hover {
    background: #f8f9fa;
}

.pricing-table tbody tr td:first-child {
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    padding-left: 30px;
}

.price-amount {
    font-weight: bold;
    color: var(--accent);
    font-size: 1.1rem;
}

/* Mobile Responsive - Table Fit */
@media (max-width: 768px) {
    .plan-section {
        padding: 100px 0 60px;
    }

    .plan-header {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .plan-header h1 {
        font-size: 1.5rem;
    }

    .plan-header .lead {
        font-size: 0.9rem;
    }

    .plan-header .text-muted {
        font-size: 0.8rem;
    }

    /* Table adjustments */
    .pricing-table {
        border-radius: 10px;
    }

    .pricing-table table {
        width: 100%;
        table-layout: fixed;
        /* Columns equal width */
    }

    .pricing-table th {
        padding: 12px 5px;
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .pricing-table td {
        padding: 10px 5px;
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .pricing-table tbody tr td:first-child {
        padding-left: 8px;
        padding-right: 5px;
        font-size: 0.7rem;
        text-align: center;
        /* Mobile pe center */
    }

    .price-amount {
        font-size: 0.75rem;
    }

    .register-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
        width: 90%;
    }

    .info-box {
        padding: 15px;
        margin-bottom: 15px;
        font-size: 0.85rem;
    }

    .refund-policy {
        padding: 15px;
    }

    .refund-policy h4 {
        font-size: 1rem;
    }

    .refund-policy ul li {
        font-size: 0.8rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .plan-header h1 {
        font-size: 1.3rem;
    }

    .plan-header .lead {
        font-size: 0.85rem;
    }

    .pricing-table th {
        padding: 10px 3px;
        font-size: 0.65rem;
    }

    .pricing-table td {
        padding: 8px 3px;
        font-size: 0.65rem;
    }

    .pricing-table tbody tr td:first-child {
        padding-left: 5px;
        padding-right: 3px;
        font-size: 0.6rem;
    }

    .price-amount {
        font-size: 0.65rem;
    }

    /* Last row with phone */
    .pricing-table tbody tr:last-child td {
        font-size: 0.6rem;
        padding: 8px 3px;
    }

    .register-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .plan-header h1 {
        font-size: 1.1rem;
    }

    .plan-header .lead {
        font-size: 0.8rem;
    }

    .pricing-table th {
        padding: 8px 2px;
        font-size: 0.6rem;
    }

    .pricing-table td {
        padding: 6px 2px;
        font-size: 0.6rem;
    }

    .pricing-table tbody tr td:first-child {
        padding-left: 3px;
        font-size: 0.55rem;
    }

    .price-amount {
        font-size: 0.6rem;
    }

    /* Icons ko chhota karo */
    .pricing-table i {
        font-size: 0.5rem;
    }
}

/* Landscape mode */
@media (max-width: 768px) and (orientation: landscape) {

    .pricing-table th,
    .pricing-table td {
        font-size: 0.7rem;
        padding: 8px 4px;
    }
}

/* Bounce Animation for Register Button */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

.register-btn {
    animation: bounce 2s infinite;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent), #f0c040);
    color: var(--dark);
    border: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.register-btn:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary);
}

.refund-policy {
    background: #e8f5e9;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #4caf50;
}

.refund-policy h4 {
    color: var(--primary);
    margin-bottom: 20px;
}

.refund-policy ul {
    list-style: none;
    padding-left: 0;
}

.refund-policy ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.refund-policy ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4caf50;
}




/* ------------------------------ courses page edits ------------------------------  */
.course-section {
    background: #d2b47e;
    padding: 130px 0 40px;
    color: white;
    opacity: 0.8;
}

.section-title-courses {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.section-title-courses span {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
    background: none !important;
}

.filter-container {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.course-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 25px;
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.filter-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.3);
}

.filter-btn.active {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.4);
}

.card-item {
    display: flex;
    margin-bottom: 30px;
}

.courses-card {
    width: 100%;
    height: 100%;
    min-height: 480px;
    /* Fixed minimum height */
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.courses-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(44, 95, 45, 0.3);
}

.courses-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.courses-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.courses-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.badge-beginner {
    background-color: #d4edda !important;
    color: #155724 !important;
}

.badge-intermediate {
    background-color: #fff3cd !important;
    color: #856404 !important;
}

.badge-advanced {
    background-color: #f8d7da !important;
    color: #721c24 !important;
}

.badge-special {
    background-color: #d1ecf1 !important;
    color: #0c5460 !important;
}

.courses-card .card-text {
    flex-grow: 1;
    margin-bottom: 15px;
}

.best-for {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    margin-top: auto;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.outcomes {
    color: #2c5f2d;
    font-weight: 600;
    margin-top: 0;
}

/* Responsive heights */
@media (min-width: 1200px) {
    .courses-card {
        min-height: 500px;
        /* Large screens */
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .courses-card {
        min-height: 520px;
        /* Medium screens */
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .courses-card {
        min-height: 480px;
        /* Tablet */
    }
}

@media (max-width: 767px) {
    .courses-card {
        min-height: auto;
        /* Mobile - auto height */
    }
}

/* ------------------------ blog page edits ------------------------ */

/* Blog Styles */
/* Blog Styles */
.blog-header {
    background: #d2b47e;
    color: white;
    padding: 8rem 0 4rem 0;
    text-align: center;
    margin-top: 10px;
    opacity: 0.8;

}

.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .card-title {
    color: #2c5f2d;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.blog-card .card-text {
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.btn-read-more {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-read-more:hover {
    background: #97bc62;
    color: white;
    transform: scale(1.05);
}

a.btn-read-more-blog {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

a.btn-read-more-blog:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    text-decoration: none;
}

a.btn-read-more-blog:visited,
a.btn-read-more-blog:link,
a.btn-read-more-blog:active {
    color: white;
    text-decoration: none;
}

.blog-detail {
    padding: 8rem 3rem 3rem 3rem;
}

.blog-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-content h3 {
    color: #2c5f2d;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.back-btn {
    background: #2c5f2d;
    color: white;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    transition: all 0.3s;
    cursor: pointer;
}

.back-btn:hover {
    background: #97bc62;
    color: white;
}

.badge-category {
    background: #97bc62;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.hidden {
    display: none !important;
}

.quran-verse {
    background: #f8f9fa;
    border-left: 4px solid #2c5f2d;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 8px;
}

/* Responsive Styles for Blog Page */
@media (max-width: 768px) {
    .blog-header {
        padding: 6rem 0 2rem 0;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-header .lead {
        font-size: 1rem;
    }

    .blog-img {
        height: 200px;
    }

    .blog-detail {
        padding: 6rem 1rem 2rem 1rem;
    }

    .blog-detail-img {
        height: 250px;
    }

    .blog-content {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }

    .back-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .badge-category {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .blog-card .card-title {
        font-size: 1rem;
    }

    .blog-card .card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .blog-header {
        padding: 5rem 0 1.5rem 0;
    }

    .blog-header h1 {
        font-size: 1.5rem;
    }

    .blog-img {
        height: 180px;
    }

    .blog-detail {
        padding: 5rem 0.5rem 1rem 0.5rem;
    }

    .blog-detail-img {
        height: 200px;
        border-radius: 10px;
    }

    .blog-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .blog-content h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .quran-verse {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .btn-read-more {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .blog-card {
        margin-bottom: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .blog-header h1 {
        font-size: 1.3rem;
    }

    .blog-detail-img {
        height: 180px;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }
}

/* -------------------- whatsapp floating button --------------------  */
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 2px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}


/* -------------------------------- learn quran home page styles -------------------------------- */
/* Learn Quran Section Styles */
.learn-quran-section {
    background: #fffff5;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin-top: 15px;
}

.mission-box {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 95, 45, 0.2);
}

.mission-box h3 {
    color: white;
}

.content-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-icon-header {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-card h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.4rem;
}

.adults-section,
.teachers-highlight,
.kids-advantage-box {
    background: white;
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.adults-section h3,
.teachers-highlight h3,
.kids-advantage-box h3 {
    color: var(--primary);
    font-weight: 700;
}


/* Main Container */
.quran-features-infographic {
    background: var(--primary);
    border-radius: 25px;
    padding: 80px 60px;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

/* Rows Layout */
.qf-top-row,
.qf-middle-row,
.qf-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.qf-middle-row {
    margin-bottom: 30px;
}

.qf-bottom-row {
    margin-bottom: 0;
}

/* Feature Cards */
.qf-card {
    background: white;
    border: 3px solid var(--primary);
    border-radius: 15px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    max-width: 450px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.qf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.qf-card-center {
    margin: 0 auto;
    max-width: 420px;
}

/* Icon Circles */
.qf-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(90, 143, 93, 0.4);
}

/* Content */
.qf-content {
    flex: 1;
}

.qf-content h6 {
    color: #2c5f2d;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.qf-content a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.qf-content a:hover {
    color: var(--primary);
}

/* Center Circle */
.qf-center-circle {
    width: 240px;
    height: 240px;
    min-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
}

.qf-circle-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    border: 6px solid #7fb869;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.qf-illustration {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qf-illustration-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.qf-illustration-item:first-child {
    top: 10px;
    left: 30px;
    transform: rotate(-15deg);
}

.qf-illustration-item:nth-child(2) {
    top: 10px;
    right: 30px;
    transform: rotate(15deg);
}

.qf-illustration-item i {
    font-size: 1.8rem;
    color: #2c5f2d;
}

.qf-illustration-person {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5f2d, #5a8f5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.qf-illustration-person i {
    font-size: 2.2rem;
    color: white;
}

.qf-illustration-devices {
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 10px;
}

.qf-device {
    width: 35px;
    height: 45px;
    background: linear-gradient(135deg, #64b5f6, #42a5f5);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1976d2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.qf-device.qf-tablet {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #ef5350, #e53935);
    border-color: #c62828;
}

.qf-device i {
    font-size: 1.2rem;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .quran-features-infographic {
        padding: 60px 40px;
    }

    .qf-card {
        padding: 18px 20px;
        gap: 15px;
    }

    .qf-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.4rem;
    }

    .qf-content h6 {
        font-size: 0.95rem;
    }

    .qf-center-circle {
        width: 200px;
        height: 200px;
        min-width: 200px;
        margin: 0 20px;
    }

    .qf-circle-inner i {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .quran-features-infographic {
        padding: 50px 30px;
    }

    .qf-top-row,
    .qf-middle-row,
    .qf-bottom-row {
        flex-direction: column;
        gap: 25px;
    }

    .qf-card,
    .qf-card-center {
        max-width: 100%;
        width: 100%;
    }

    .qf-center-circle {
        margin: 20px auto;
        order: -1;
    }
}

@media (max-width: 768px) {
    .quran-features-infographic {
        padding: 40px 20px;
    }

    .qf-card {
        padding: 16px 18px;
        gap: 12px;
    }

    .qf-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }

    .qf-content h6 {
        font-size: 0.9rem;
    }

    .qf-content a {
        font-size: 0.85rem;
    }

    .qf-center-circle {
        width: 170px;
        height: 170px;
        min-width: 170px;
    }

    .qf-circle-inner {
        padding: 30px;
        gap: 15px;
    }

    .qf-circle-inner i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .quran-features-infographic {
        padding: 30px 15px;
        border-radius: 15px;
    }

    .qf-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .qf-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .qf-center-circle {
        width: 150px;
        height: 150px;
        min-width: 150px;
    }

    .qf-circle-inner {
        padding: 25px;
        gap: 10px;
    }

    .qf-circle-inner i {
        font-size: 1.8rem;
    }
}

.cta-box {
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.05), rgba(151, 188, 98, 0.05));
    padding: 50px 30px;
    border-radius: 20px;
    border: 2px solid #2c5f2d;
}

.cta-box h3 {
    color: #2c5f2d;
    font-weight: 700;
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {

    .mission-box,
    .content-card,
    .adults-section,
    .teachers-highlight,
    .kids-advantage-box {
        padding: 25px;
    }

    .cta-box {
        padding: 35px 20px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .feature-pill {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Kids Learning Section Buttons */
.kid-learn-btn-primary {
    background: #2c5f2d !important;
    color: white !important;
    border: 2px solid #2c5f2d !important;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.kid-learn-btn-primary:hover {
    background: #97bc62 !important;
    color: white !important;
    border-color: #97bc62 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(151, 188, 98, 0.3);
}

.kid-learn-btn-outline {
    background: white !important;
    color: #2c5f2d !important;
    border: 2px solid #2c5f2d !important;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.kid-learn-btn-outline:hover {
    background: #2c5f2d !important;
    color: white !important;
    border-color: #2c5f2d !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.3);
}

/* Button Container */
.cta-box .btn {
    min-width: 200px;
}

/* Responsive */
@media (max-width: 576px) {

    .kid-learn-btn-primary,
    .kid-learn-btn-outline {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 160px;
    }
}

.great-crd {
    background-color: #fffff5;
}

/* ---------------------------- home page faq -------------------------------- */
/* FAQ Section */
.home-faq-section {
    background: #fffff5;
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    color: #2c5f2d;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Items Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 2px solid #e3f2e4;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.1);
}

.faq-item.active {
    border-color: #2c5f2d;
}

/* FAQ Question */
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question-text {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
    flex: 1;
}

.faq-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px 25px;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

/* Hidden FAQs */
.faq-hidden {
    display: none;
}

.faq-hidden.show {
    display: block;
}

/* Read More Button */
.faq-read-more-container {
    text-align: center;
    margin-top: 40px;
}

.faq-read-more-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.faq-read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

.faq-read-more-btn.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 20px 18px 20px;
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 1.1rem;
    }

    .faq-read-more-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* -------------------------------- Contact Page ---------------------------- */
/* Contact Page Styles */
.contact-page-section {
    padding: 80px 0;
    background: #fffff5;
}

.contact-section-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 3px solid #e3f2e4;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
    border-color: var(--primary);
}

.contact-info-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-items {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #e3f2e4;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-info-text {
    color: #333;
    font-size: 1rem;
    margin: 0;
}

.contact-social-section {
    text-align: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #e3f2e4;
}

.contact-social-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.contact-social-btn.facebook {
    background: #1877f2;
    color: white;
}

.contact-social-btn.twitter {
    background: #1da1f2;
    color: white;
}

.contact-social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.contact-social-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-social-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Form Cards */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 3px solid #e3f2e4;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
    border-color: var(--primary);
}

.contact-form-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-form-label {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    border: 2px solid #e3f2e4;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(127, 184, 105, 0.25);
    outline: none;
}

.contact-submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
    background: var(--primary);
}

/* Left Column Sticky */
@media (min-width: 992px) {
    .contact-left-column {
        position: sticky;
        top: 120px;
        align-self: flex-start;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section-title {
        font-size: 2rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ----------------------- end contact --------------------- */

/* Social Icons Styling */
.nav-social-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
    margin: auto 10px;
    display: none;
}

.nav-social-wrapper {
    padding: 0 !important;
}

.nav-social-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav-social-link {
    padding: 8px 12px !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-social-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-social-link:hover {
    transform: translateY(-3px);
}

.nav-social-link:hover i {
    color: #d2b47e !important;
}

/* Desktop View - Show divider */
@media (min-width: 992px) {
    .nav-social-divider {
        display: block;
    }

    .nav-social-container {
        gap: 0;
    }

    .nav-social-link {
        padding: 8px 10px !important;
    }
}

/* Mobile View - One Line with Space Between */
@media (max-width: 991px) {
    .nav-social-wrapper {
        width: 100%;
    }

    .nav-social-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 20px;
    }

    .nav-social-link {
        flex: 0 0 auto;
        padding: 12px 20px !important;
    }

    .nav-social-link i {
        font-size: 1.5rem;
    }

    /* First icon (Facebook) - align start */
    .nav-social-link:first-child {
        margin-right: auto;
    }

    /* Last icon (WhatsApp) - align end */
    .nav-social-link:last-child {
        margin-left: auto;
    }
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#about {
    background-color: #fffff5 !important;
}