/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #17005E;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
}

.nav-brand h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}
.nav-brand h1 span {
    font-weight: 500;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: normal;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.desktop-social {
    display: flex;
}

.mobile-social-links {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-nav-item {
    display: none;
}

.social-link {
    color: white;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #3498db;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .navbar {
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #17005E;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .desktop-social {
        display: none;
    }

    .social-nav-item {
        display: block;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1rem;
    }

    .mobile-social-links {
        display: flex;
    }
}

/* Main content offset for fixed header */
main {
    margin-top: 75px;
}

/* Hero Section Styles */
.hero-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-desktop {
    /* max-height: 600px; */
}

.hero-mobile {
    /* max-height: 400px; */
}

/* Intro Section Styles */
.intro-section {
    padding: 60px 0;
    background-color: #fff;
}

.intro-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #17005E;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title:before {
    content: "-";
    display: inline-block;
    padding-right: 10px;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
}

/* Mobile responsiveness */
@media (max-width: 767.98px) {
    .intro-section {
        padding: 40px 0;
    }
    
    .intro-title {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .intro-description {
        font-size: 1rem;
        text-align: left;
    }
}

/* Desktop alignment */
@media (min-width: 768px) {
    .intro-title {
        text-align: left;
    }
    
    .intro-description {
        text-align: left;
    }
}

/* Footer Styles */
.footer {
    background-color: #D9D9D9;
    color: black;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

.footer p {
    margin-bottom: 0;
}

/* Homepage Intro 2 Section Styles */
.intro2-section {
    padding: 60px 0;
    background-color: #fff;
}

.intro2-section .row {
    --bs-gutter-x: 4.5rem; /* Increased from default 1.5rem to match offering section gap */
}

.intro2-image {
    width: 100%;
    /* max-width: 400px; */
    height: auto;
    border-radius: 32px;
    margin-bottom: 2rem;
}

.intro2-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.intro2-cta {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline;
    color: #17005E;
    display: inline-block;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.intro2-cta:hover {
    color: #3498db;
    text-decoration: underline;
}

.intro2-social-label {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 1rem;
    display: block;
}

.intro2-social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.intro2-social-link {
    color: #17005E;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro2-social-link:hover {
    color: #3498db;
}

.intro2-social-link svg {
    width: 24px;
    height: 24px;
}

/* Mobile responsiveness for intro2 */
@media (max-width: 767.98px) {
    .intro2-section {
        padding: 50px 0;
    }
    
    .intro2-section .row {
        --bs-gutter-x: 1.5rem; /* Reset to default gutter on mobile */
    }
    
    .intro2-image {
        display: block;
        margin: 0 auto 2rem auto;
        max-width: 300px;
    }
    
    .intro2-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .intro2-cta {
        text-align: left;
        display: block;
    }
    
    .intro2-social-label {
        text-align: left;
    }
    
    .intro2-social-links {
        justify-content: flex-start;
    }
}

/* Featured Offering Section Styles */
.featured-offering-section {
    padding: 80px 0;
    background-color: #F3EFFF;
}

.featured-offering-section .row {
    --bs-gutter-x: 4.5rem; /* Increased from default 1.5rem to 4.5rem (adds 30px more gap) */
}

.offering-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #200B68;
    margin-bottom: 2rem;
}

.offering-subsection {
    margin-bottom: 2rem;
}

.offering-subsection-title {
    font-size: 1rem;
    font-weight: bold;
    color: black;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.offering-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;
}

.offering-ideal-for {
    font-size: 1rem;
    color: #200B68;
    font-weight: 600;
    margin-bottom: 2rem;
}

.offering-cta {
    display: inline-block;
    padding: 12px 16px;
    background-color: transparent;
    color: #200B68;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #200B68;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.offering-cta:hover {
    background-color: #200B68;
    color: white;
    text-decoration: none;
}

.quote-card {
    background-color: #200B68;
    color: #ffffff;
    text-align: left;
}

.quote-card-image {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.quote-card-content {
    padding: 2rem;
}

.quote-decorative {
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

/* Mobile responsiveness for featured offering */
@media (max-width: 767.98px) {
    .featured-offering-section {
        padding: 50px 0;
    }
    
    .featured-offering-section .row {
        --bs-gutter-x: 1.5rem; /* Reset to default gutter on mobile */
    }
    
    .offering-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .offering-subsection-title {
        font-size: 1.1rem;
    }
    
    .offering-description,
    .offering-ideal-for {
        font-size: 1.1rem;
    }
    
    .offering-cta {
        display: block;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .quote-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}

/* Offering Flipped Layout */
.offering-flipped .row {
    flex-direction: row-reverse;
}

/* Reset flex direction on mobile to maintain proper stacking */
@media (max-width: 767.98px) {
    .offering-flipped .row {
        flex-direction: column;
    }
}

/* Books Section Styles */
.books-section {
    padding: 60px 0;
    background-color: #fff;
}

.books-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #17005E;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.books-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
}

.books-showcase {
    margin-top: 2rem;
}

.books-showcase .row {
    --bs-gutter-x: 2rem; /* Reduced from default 1.5rem to 2rem (smaller gap) */
}

.book-item {
    text-align: center;
    margin-bottom: 2rem;
}

.book-thumbnail {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.book-buy-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #17005E;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.book-buy-btn:hover {
    background-color: #200B68;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Mobile responsiveness for books section */
@media (max-width: 767.98px) {
    .books-section {
        padding: 50px 0;
    }
    
    .books-showcase .row {
        --bs-gutter-x: 1.5rem; /* Reset to default gutter on mobile */
    }
    
    .books-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .books-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .book-thumbnail {
        max-width: 200px;
    }
    
    .book-buy-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

/* Featured Blogs Section Styles */
.featured-blogs-section {
    padding: 60px 0;
    background-color: #F7F7F7;
}

.blogs-list {
    padding: 15px 0;
}

.blogs-list .blog-card {
    margin-bottom: 3rem;
}

.blogs-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #17005E;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.blogs-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
}

.blogs-showcase {
    margin-top: 2rem;
}

.blog-card {
    margin-bottom: 2rem;
    overflow: hidden;
}

.blog-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding-top: 15px;
    text-align: center;
}

.blog-category {
    font-size: 14px;
    font-weight: bold;
    color: #D9D9D9;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: black;
    text-transform: capitalize;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-read-more {
    font-size: 1rem;
    font-weight: 500;
    color: black;
    text-transform: uppercase;
    text-decoration: underline;
    display: inline-block;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #17005E;
    text-decoration: underline;
}

.blogs-section-cta {
    text-align: center;
    margin-top: 3rem;
}

.blogs-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #17005E;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blogs-cta-btn:hover {
    background-color: #200B68;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Mobile responsiveness for featured blogs section */
@media (max-width: 767.98px) {
    .featured-blogs-section {
        padding: 50px 0;
    }
    
    .blogs-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .blogs-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .blogs-showcase .row {
        row-gap: 20px;
    }
    
    .blog-thumbnail {
        height: 180px;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
    
    .blogs-cta-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

.contact-details {
    margin-bottom: 30px;
}
.contact-details h4 {
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
}
.contact-details a {
    display: inline-block;
    text-decoration: none;
    color: #000000;
    font-size: 1.25rem;
}
.contact-details a:hover {
    text-decoration: underline;
}
.social-contact ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
}
