                        @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #185a18;
    --secondary-color: #663817;
    --dark-color: #141414;
    --light-color: #ffffff;
    --montserrat-font: "Montserrat", sans-serif;
    --poppins-font: "Poppins", sans-serif;
    /* --poppins-font: "Poppins", sans-serif; */
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--montserrat-font);
}

h1 {
    font-family: var(--poppins-font);
}

/* navbar  */
.navbar-brand .logo {
    width: 70px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.navbar-nav .nav-item .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
}

/* hero  */
.hero {
    position: relative;
    background: url("../images/hero-image.webp") center center / cover no-repeat;
    color: white;
    padding: 120px 0;
    background-attachment: fixed;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.0rem;
    font-weight: 600;
}

.hero p {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero .btn-outline-light {
    transition: all 0.3s ease-in-out;
}

.hero .btn-outline-light:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

/* quote  */
.quote-section {
    background-color: var(--primary-color);
}

.quote-section p,
.quote-section strong {
    color: var(--light-color);
    font-size: 1.6rem;
}

.heading {
    font-family: var(--poppins-font);
    font-size: 2.5rem;
    color: var(--primary-color);
}

.text-justify {
    text-align: justify;
}

.swiper-pagination-bullet {
    background: #000;
    opacity: 0.5;
    width: 14px;
    height: 14px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

#backToTopBtn {
    display: none;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    /* line-height: 40px; */
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-color);
    cursor: pointer;
    /* padding: 20px 20px; */
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#backToTopBtn:hover {
    background-color: #555;
    transform: scale(1.1);
}


/* about  */

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f2e6d6;
    /* background-image: url("../images/bg-texture.webp"); */
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.about p {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* books  */
.books h5 {
    font-family: var(--poppins-font);
    color: var(--secondary-color);
}

.books h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
}

/* books section */
/* Color Variations */
.text-blue {
    color: #0081C9;
}

.text-green {
    color: var(--primary-color);
}

.text-pink {
    color: var(--secondary-color);
}

.book-card {
    transition: transform 0.3s ease;
    padding: 20px;
    height: 100%;
}

/* Hover effect */
.book-card:hover {
    transform: translateY(-5px);
}

.book-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-right: 15px;
    font-family: serif;
}

.book-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: var(--poppins-font);
}

.book-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.books-section {
    background: linear-gradient(90deg, rgba(24, 90, 24, 0.28) 0%, rgba(102, 56, 23, 0.24) 50%);
}

/* testimonials  */

.testimonials {
    overflow: hidden;
}

.testimonials h2 {
    font-family: var(--poppins-font);
    color: var(--primary-color);
}

.testimonial-card {
    border-left: 5px solid var(--primary-color);
    /* Theme matching pink */
    margin: 10px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.italic {
    font-style: italic;
}

/* footer  */


.footer-dark {
    background-color: #121212;
    /*background: linear-gradient(90deg,rgba(5, 32, 120, 1) 0%, rgba(126, 0, 133, 1) 100%);*/
    /* Deep Dark */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*color: #fff;*/
}

.footer-link {
    text-decoration: none;
    color: #adb5bd;
    /* Muted white */
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
    /* Theme Pink color */
    padding-left: 5px;
}

.social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
}

.italic {
    font-style: italic;
}

/* Custom placeholder color for newsletter */
.footer-dark input::placeholder {
    color: #6c757d;
}

.footer-dark input:focus {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--secondary-color) !important;
    box-shadow: none;
    color: white;
}

/* breadcrumb  */
.breadcrumb-section {
    position: relative;
    height: 200px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/all-book-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.breadcrumb-content {
    text-align: center;
    z-index: 1;
}

.breadcrumb-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #f0a500;
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav .current {
    color: #f0a500;
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        height: 100px;
    }

    .breadcrumb-content h1 {
        font-size: 2.5rem;
    }

    .breadcrumb-nav {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-content h1 {
        font-size: 2rem;
    }

    .breadcrumb-nav {
        font-size: 0.85rem;
    }
}


/* Events Section */
.events-section {
    background: #f8f9fa;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #777;
}

/* Certificate Card */
.certificate-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.certificate-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s ease;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.certificate-card:hover img {
    transform: scale(1.05);
}

.certificate-info {
    padding: 20px;
    text-align: center;
}

.certificate-info h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.certificate-info p {
    font-size: 14px;
    color: #666;
}

/* Books Section */
.books-section {
    background: #f9fafc;
}

.section-title h2 {
    font-weight: 700;
}

.section-title p {
    color: #777;
}

/* Book Image */
.book-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Book Details */
.book-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.book-author {
    color: #777;
    font-size: 15px;
    margin-bottom: 15px;
}

.book-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.book-price {
    color: #000;
    font-weight: 700;
    margin-top: 15px;
}

/* Buttons */
.book-buttons .btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 15px;
    transition: 0.3s;
}

.amazon-btn {
    background: #ff9900;
    color: #fff;
}

.amazon-btn:hover {
    background: #e68a00;
    color: #fff;
}

.flipkart-btn {
    background: #2874f0;
    color: #fff;
}

.flipkart-btn:hover {
    background: #1b5ed8;
    color: #fff;
}

/* Blog Section */
.blog-section {
    background: #f9fafc;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-content {
    padding: 20px;
}

.blog-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 15px;
    color: #666;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #333;
    color: #fff;
}

/* Sidebar */
.blog-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    margin-bottom: 20px;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.category-list li a:hover {
    color: #007bff;
}

Í/* Blog Details */
.blog-details-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.blog-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-feature-img {
    border-radius: 10px;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.blog-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.blog-content blockquote {
    background: #f4f4f4;
    padding: 20px;
    border-left: 5px solid #000;
    font-style: italic;
    margin: 20px 0;
}

.blog-tags a,
.share-buttons a {
    display: inline-block;
    margin-right: 10px;
    padding: 6px 14px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.blog-tags a:hover,
.share-buttons a:hover {
    background: var(--primary-color);
}

/* Sidebar */
.blog-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.blog-sidebar h4 {
    margin-bottom: 15px;
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar ul li {
    margin-bottom: 10px;
}

.blog-sidebar ul li a {
    text-decoration: none;
    color: #333;
}

.blog-sidebar ul li a:hover {
    color: #007bff;
}

/* Contact Section */
.contact-section {
    background: #f9fafc;
}

/* Contact Form */
.contact-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-form-card input,
.contact-form-card textarea {
    border-radius: 8px;
    padding: 12px;
}

.contact-btn {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #333;
}

/* Contact Info */
.contact-info-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Map */
.map-container iframe {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Gallery Section */
.gallery-section {
    background: #f9fafc;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

/* what find  */
.what-find .card {
    transition: transform 0.3s ease;
}

.what-find .card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

/* responsive  */

@media only screen and (max-width: 576px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .quote-section p,
    .quote-section strong {
        font-size: 1rem;
    }

    .heading {
        font-size: 1.5rem;
    }

    .books h5 {
        font-size: 1rem;
    }

    .books h2 {
        font-size: 1.4rem;
    }

    .book-number {
        font-size: 2.5rem;
    }

    .why-soul .heading,
    .what-find .heading {
        font-size: 1.3rem;
    }

}            