.hero-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background-color: #003028;
          
        }
        .hero-section::before {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0));
            border-radius: 50%;
            z-index: 0;
        }
        .hero-section::after {
    content: '';
    position: absolute;
    top: -100px;       /* Adjust position as needed */
    right: -150px;     /* Push it outside the top-right */
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0));
    border-radius: 50%;
    z-index: 0;
}

       .hero-section {
    text-align: center;
    padding: 80px 20px;
}

.sub-heading {
    color: #008672;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.sub-heading::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}

h1 {
    color: #fff;
    font-size: 4rem !important;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #fff;
}

.btn-apply {
    background-color: #f25c34;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-apply:hover {
    background-color: #d94f2a;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 28px !important;
    }
    .hero-text {
        font-size: 16px;
    }
}

















        
        /* Logo Section */
        .logo-section {
            background: #003028;

            padding: 60px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .logo-text {
            color: #fff;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 400;
            margin-bottom: 40px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .logo-slider {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .logo-track {
            display: inline-flex;
            animation: scroll 25s linear infinite;
            align-items: center;
        }

        .logo-item {
            margin: 0 80px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-item img {
            height: 50px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .logo-item:hover img {
            opacity: 1;
            transform: scale(1.05);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
           
           

            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            .floating-element {
                display: none;
            }

            .logo-item {
                margin: 0 50px;
            }

            .logo-item img {
                height: 40px;
            }
        }

        @media (max-width: 576px) {
          

            .hero-subtitle {
                font-size: 1rem;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .logo-item {
                margin: 0 40px;
            }

            .logo-item img {
                height: 35px;
            }
        }

        /* Book and element styling */
        .floating-element img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        
        }



        .logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #003028, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #003028, transparent);
}









.ht3{
    color: #008672 !important;
}



.faq-container {
            max-width: 90%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .faq-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        
        .faq-item {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .faq-item.active {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(32, 178, 170, 0.2);
            border-color: rgba(32, 178, 170, 0.3);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(32, 178, 170, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .faq-question:hover::before {
            left: 100%;
        }

        .faq-question:hover {
            color: #008672;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
           
           
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(-10px);
        }

        .faq-answer.show {
            max-height: 500px;
            opacity: 1;
            transform: translateY(0);
        }

        .faq-answer-content {
            padding: 0 30px 30px 30px;
            color: #555;
            line-height: 1.6;
            font-size: 1rem;
        }

        .faq-answer-content p {
            margin: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pulse-animation {
            animation: pulse 0.3s ease;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-title {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }

            .faq-question {
                padding: 20px 20px;
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 0 20px 25px 20px;
                font-size: 0.95rem;
            }

            .faq-container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .faq-title {
                font-size: 1.8rem;
            }

            .faq-question {
                padding: 18px 15px;
                font-size: 0.95rem;
            }

            .faq-answer-content {
                padding: 0 15px 20px 15px;
            }
        }

        /* Loading animation */
        .faq-item {
            animation: slideInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }




        
.person-section {
    padding: 5rem 0;
}
.person-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
}
.person-heading .highlight {
    color: #28a745;
}
.person-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.person-image-container img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 50%;
}
.person-quote {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #006A6A;
    border-left: 4px solid #28a745;
    padding-left: 2rem;
    margin-bottom: 2rem;
}
.person-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #212529;
    margin-bottom: 2rem;
}
.person-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
}
@media (max-width: 991.98px) {
    .person-image-container {
        margin-bottom: 3rem;
    }
    .person-quote {
        font-size: 1.75rem;
    }
}
@media (max-width: 767.98px) {
    .person-heading {
        font-size: 2rem;
    }
    .person-quote {
        font-size: 1.5rem;
    }
}








.programs-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .section-title {
            font-size: 2.5rem !important;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .genre-toggle {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
        }

        .toggle-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }

        .toggle-btn.active {
            background-color: #008672;
            color: white;
        }

        .toggle-btn:not(.active) {
            background-color: #e9ecef;
            color: #6c757d;
        }

        .toggle-btn:hover:not(.active) {
            background-color: #dee2e6;
        }

        .program-card {
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            min-height: 300px;
            display: flex;
            align-items: center;
        }

        .card-content {
            flex: 1;
            z-index: 2;
            position: relative;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .card-title1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000 !important;
        }

        .card-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .tag {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .card-description1 {
            color: #000 !important;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .learn-more-btn {
            background-color: white;
            color: #2c3e50;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .learn-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .card-image {
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 80px;
            opacity: 0.3;
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: #20c997;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Nonfiction Colors */
        /* Nonfiction Colors */
.nonfiction .card-1 { background: linear-gradient(135deg, #1e3c72, #2a5298); }   /* deep blue */
.nonfiction .card-2 { background: linear-gradient(135deg, #6a1b21, #a83244); }   /* dark red */
.nonfiction .card-3 { background: linear-gradient(135deg, #1d3b0b, #356e1a); }   /* rich green */
.nonfiction .card-4 { background: linear-gradient(135deg, #5a2a7e, #a83279); }   /* purple-magenta */
.nonfiction .card-5 { background: linear-gradient(135deg, #0f3443, #2a7865); }   /* teal */

/* Fiction Colors */
.fiction .card-1 { background: linear-gradient(135deg, #373b44, #4286f4); }     /* cool blue */
.fiction .card-2 { background: linear-gradient(135deg, #93291e, #ed213a); }     /* crimson red */
.fiction .card-3 { background: linear-gradient(135deg, #0f2027, #2c5364); }     /* deep cyan */
.fiction .card-4 { background: linear-gradient(135deg, #134e5e, #71b280); }     /* emerald green */
.fiction .card-5 { background: linear-gradient(135deg, #42275a, #734b6d); }     /* plum */


        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .program-card {
                padding: 30px 20px;
                text-align: center;
            }
            
            .card-image {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                margin-top: 20px;
                font-size: 60px;
            }
            
            .card-title {
                font-size: 1.5rem;
            }
            
            .genre-toggle {
                flex-direction: column;
                align-items: center;
            }
        }








        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-title .highlight {
            color: #008D6F;
        }
        .pricing-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        .pricing-card-header {
            padding-bottom: 1.5rem;
        }
        .pricing-card.blue {
            border-top: 5px solid #007bff;
        }
        .pricing-card.red {
            border-top: 5px solid #dc3545;
        }
        .pricing-card.green {
            border-top: 5px solid #28a745;
        }
        .pricing-card.orange {
            border-top: 5px solid #fd7e14;
        }
        .card-title {
            color: #fff !important;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .card-description {
            color: #fff !important;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        .card-description strong {
            font-weight: 700;
            color: #343a40;
        }
        .card-price {
            font-size: 3rem;
            font-weight: 700;
            color: #343a40;
            margin-bottom: 0.5rem;
        }
        .payment-plan {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .btn-learn-more {
            border: 1px solid #dee2e6;
            color: #343a40;
            font-weight: 700;
            padding: 0.75rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .btn-learn-more:hover {
            background-color: #343a40;
            color: #fff;
            border-color: #343a40;
        }
        @media (max-width: 991.98px) {
            .pricing-card {
                margin-bottom: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }




        
 .book-showcase-section {
            background-color: #003028;
            padding: 80px 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }


        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .main-headline {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .highlight {
            color: #F2D9BB;
        }

        .subheading {
            font-size: 1.25rem;
            color: #E0E0E0;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
        }

        .bold-text {
            font-weight: 700;
            color: white;
        }

        .carousel-container {
            margin-bottom: 60px;
            position: relative;
        }

        .swiper {
            width: 100%;
            padding: 20px 0 40px 0;
            overflow: visible;
        }

        .swiper-slide {
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .book-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .book-card:hover {
            transform: translateY(-10px);
        }

        .book-cover {
            width: 200px;
            height: 300px;
            border-radius: 12px;
        
            object-fit: cover;
            margin-bottom: 20px;
            transition: box-shadow 0.3s ease;
        }

       
        .book-rating {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 5px;
        }

        .star {
            color: #F2D9BB;
            font-size: 18px;
        }

        .rating-text {
            color: #E0E0E0;
            font-size: 16px;
            font-weight: 600;
        }

        .cta-container {
            text-align: center;
        }

        .cta-button {
            background-color: #FF5722;
            color: white;
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: #E64A19;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-headline {
                font-size: 2.5rem;
            }
            
            .book-cover {
                width: 180px;
                height: 270px;
            }
        }

        @media (max-width: 768px) {
            .book-showcase-section {
                padding: 60px 15px;
            }
            
            .main-headline {
                font-size: 2rem;
            }
            
            .subheading {
                font-size: 1.1rem;
            }
            
            .book-cover {
                width: 160px;
                height: 240px;
            }
            
            .section-header {
                margin-bottom: 40px;
            }
            
            .carousel-container {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .main-headline {
                font-size: 1.75rem;
            }
            
            .subheading {
                font-size: 1rem;
            }
            
            .book-cover {
                width: 140px;
                height: 210px;
            }
            
            .cta-button {
                padding: 14px 28px;
                font-size: 16px;
            }
        }


        .card-description{
            font-size: 1.1rem;
        }