@import url('https://fonts.googleapis.com/css2?family=Eagle+Lake&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..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&family=Quattrocento:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #F64A8A;
    --primary-light: #FAEEEE;
    --primary-dark: #ff2d75;

    --secondary: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --bg-color: #BE6992;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}

.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

p {
    color: var(--dark);
    text-align: justify;
}

/* Header Styles */
.header {
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Section */
.logo-section {
    position: relative;
    width: 100%;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    background: transparent;
    /* No direct background */
    overflow: hidden;
    /* Prevents overflow of ::before */
}

.logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     
    z-index: -1;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: cover;
}

.logo-section .logo img {
    max-width: 150px;
    height: auto;
    display: inline-block;
}

/* Navigation Section */
.nav-section {
    width: 100%;
    padding: 1rem 0;
    background-color: var(--primary);
    position: sticky;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin-bottom: 0;
    justify-content: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    z-index: 1001;
}

.menu-toggle.active {
    color: #333;
}


/* Navigation Styles */
.header-nav {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
    }

    .header-nav {
        position: absolute;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 70px;
        /* match .nav-section height */
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }


    .header-nav.active {
        right: 0;
    }

    .nav-section {
        height: 70px;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: #333;
        font-size: 18px;
    }
}


/* Base Styles */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: url(../assets/home-banner3.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.section-title {
    text-align: center;
    position: relative;
    margin: 0px 30px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title:before,
.section-title:after {
    content: "";
    display: inline-block;
    width: 8%;
    height: 3px;
    background: var(--primary);
    position: absolute;
    top: 50%;
}

.section-title:before {
    left: 27%;
}

.section-title:after {
    right: 27%;
}

.section-title1 {
    text-align: center;
    position: relative;
    margin: 0px 30px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.book-card-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
}

.book-card {
    flex: 1 1 calc(20% - 1.5rem);
    /* takes 20% of row minus the gap */
    min-width: 180px;
    max-width: 220px;
    height: 300px;
    transition: all 0.3s ease;
}

.book-image {
    width: 100%;
    height: 100%;
    padding: 15px;
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
}

/* View More Button */
.view-more {
    margin-top: 2rem;
    text-align: center;
}

.view-more-btn {
    padding: 1rem 1.7rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .book-card {
        width: calc(25% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .book-card {
        width: calc(33.33% - 1.5rem);
    }

    .section-title:before,
    .section-title:after {
        display: none;
    }
}

@media (max-width: 576px) {
    .book-card {
        width: calc(50% - 1.5rem);
    }
}

@media (max-width: 400px) {
    .book-card {
        width: 100%;
        /* 1 card per row */
    }
}

.sheroes-sections {
    padding: 4rem 0;
    background: #fff;
}

/* Card Styles */
.sheroes-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    min-height: 280px;
    /* background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%); */
}

.card-img-container {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-top {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card-body {
    width: 55%;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--primary) !important;
    background: var(--gray-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover effects */
.card-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Icon adjustment */
.card-icon i {
    margin-top: 2px;
    /* Optical alignment */
}

.card-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.card-text {
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

/* Individual Card Colors */
/* .arts-card {
    background-color: #BE6992;
}

.arts-card .card-icon {
    color: #FF6B6B;
}

.resources-card {
    background-color: #FFA757;
}

.resources-card .card-icon {
    color: #4D96FF;
}

.home-blog-card {
    background-color: #FFA757;
}

.blog-card .card-icon {
    color: #6BCB77;
}

.videos-card {
    background-color: #BE6992;
}

.videos-card .card-icon {
    color: #FFA44D;
} */

/* Button Styles */
.sheroes-btn {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    width: fit-content;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.sheroes-btn:hover {
    background: var(--primary);
    /* Pink highlight */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}


/* Responsive Design */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .sheroes-sections {
        padding: 2rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .sheroes-card {
        flex-direction: column;
    }

    .card-img-container,
    .card-body {
        width: 100%;
    }

    .card-img-container {
        height: 200px;
    }
}

.footer-section {
    background: var(--primary);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}


.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 100%;
    /* height: 150px; */
    /* background: linear-gradient(45deg, #f8fafc, #e2e8f0); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

/* .footer-logo:hover {
    transform: translateY(-5px);
} */

.footer-logo img {
    height: auto;
    width: 100%;
    max-width: 210px;
    padding: 10px;
    filter: brightness(0) invert(1);
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light);
    position: relative;
}

/* .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
} */

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 25px;
    text-align: justify;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--light);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    color: #cbd5e1;
    font-size: 14px;
    text-align: center;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-pin {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-pin:nth-child(1) {
    top: 10%;
    left: 10%;
    font-size: 2rem;
    animation-delay: -1s;
}

.floating-pin:nth-child(2) {
    top: 20%;
    right: 15%;
    font-size: 1.5rem;
    animation-delay: -3s;
}

.floating-pin:nth-child(3) {
    bottom: 30%;
    left: 20%;
    font-size: 2.5rem;
    animation-delay: -5s;
}

.floating-pin:nth-child(4) {
    bottom: 10%;
    right: 10%;
    font-size: 1.8rem;
    animation-delay: -2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotateZ(0deg);
    }

    50% {
        transform: translateY(-20px) rotateZ(5deg);
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 30px;
    }

    .footer-logo {
        width: 170px;
        height: 170px;
        margin: 0 auto 30px;
    }

    .footer-logo i {
        font-size: 2rem;
    }

}


/* inner Pages  */

.inner-banner {
    background-image: url('../assets/banner-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    color: #fff;
    z-index: -1;
    /* Text color */
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay for better text readability */
}

.inner-banner .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-item {
    margin-right: 10px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #f8f9fa;
}

.breadcrumb-item.current-page {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* Custom colors for sections */
.bg-pale-pink {
    background-color: #fff0f6;
}

.bg-light-purple {
    background-color: #f3f0ff;
}

/* Additional styling */
.book-image-container {
    display: flex;
    justify-content: center;
}

.book-image-container img {
    object-fit: fill;
    /* width: 100%; */
    width: 300px;
    height: auto;
    max-height: 350px;
    display: block;
}

.book-section {
    padding: 3rem 0;
    width: 100%;
}

.book-section .book-card {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0.5rem;
    /* overflow: hidden; */
    height: auto;
}

@media (max-width: 991px) {
    .book-section .book-card {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .book-section .book-card {
        width: 100%;
    }
}

.buy-btn {
    padding: 0.5rem 1rem;
    background-color: #1f2937;
    color: white;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.buy-btn:hover {
    background-color: #374151;
    color: white;
}

@media (max-width: 768px) {
    .book-content {
        order: 2;
    }

    .book-image-col {
        order: 1;
        margin-bottom: 1rem;
    }
}

.buy-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0.25rem;
    border: 2px solid;
    background: white;
}

/* Amazon */
.buy-btn:nth-child(1) {
    color: #FF9900;
    border-color: #FF9900;
}

/* Notion Press */
.buy-btn:nth-child(2) {
    color: #6e45e2;
    border-color: #6e45e2;
}

/* Goodreads */
.buy-btn:nth-child(3) {
    color: var(--primary);
    border-color: var(--primary);
}

.buy-btn:hover {
    color: white;
    transform: scale(1.05);
}

.buy-btn:nth-child(1):hover {
    background: #FF9900;
}

.buy-btn:nth-child(2):hover {
    background: #6e45e2;
}

.buy-btn:nth-child(3):hover {
    background: var(--primary);
}

.artsandcraft-description {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.hero-section {
    text-align: center;
}

/* Arts & Crafts Section Styles */
.artifact-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.artifact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.artifact-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 2px solid #f8d7da;
}

.artifact-content {
    padding: 1.25rem;
    text-align: center;
}

.artifact-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.artifact-link {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.artifact-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artifact-image {
        height: 220px;
    }

    .artifact-link {
        padding: 0.5rem 1rem;
    }
}

.resource-section {
    padding: 4rem 0;
}

.resource-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.resource-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.resource-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.resource-title {
    color: var(--primary);
    /* Dark purple */
    font-weight: 600;
    margin-bottom: 1rem;
}

.resource-description {
    margin-bottom: 1.5rem;
}

/* Main Content Container */
.main-container {
    padding: 4rem 0;
}

/* Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Card Styling */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ddd;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-img-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background: #ffebf1;
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    align-self: flex-start;
}

.blog-post-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.blog-excerpt {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #d81b5b;
    text-decoration: underline;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.blog-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 0.5rem;
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-grid {
        gap: 1.5rem;
    }

    .blog-header {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-header {
        padding: 3rem 1rem;
    }

    .blog-title {
        font-size: 2.2rem;
    }
}

/* Videos Grid */
.videos-container {
    padding: 4rem 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Video Card */
.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .play-icon {
    opacity: 1;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    flex-grow: 1;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: auto;
}

.watch-link {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
    transition: all 0.3s ease;
    width: 50%;
}

.watch-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Load More Button */
.load-more {
    text-align: center;
    margin-top: 2rem;
}

.load-btn {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.load-btn:hover {
    background: var(--primary);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .videos-header {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        position: unset;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .videos-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 4rem 0;
    background-color: var(--primary-light);
    font-family: var(--font-main);
}

.contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-info-col {
    background-color: var(--primary);
    padding: 40px;
    height: 100%;
}

.contact-title {
    color: var(--light);
    font-weight: 700;
    /* margin-bottom: 30px; */
    position: relative;
    padding-bottom: 15px;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    background-color: white;
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--light);
}

.contact-text p,
.contact-text a {
    color: var(--light);
    margin: 0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #fff;
}

.form-col {
    padding: 40px;
}

.form-title {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    width: 100%;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(210, 54, 105, 0.25);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    width: 100%;
    max-width: 200px;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.social-links {
    margin-top: 40px;
}

.social-links h5 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--light);
}

.conatct-social-icons {
    display: flex;
    gap: 15px;
}

.conatct-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.conatct-social-icons a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    border: 1px solid var(--light);
}

@media (max-width: 992px) {
    .contact-info-col {
        padding: 30px;
    }

    .form-col {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        margin: 30px auto;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-icon {
        margin-bottom: 10px;
    }

    .submit-btn {
        max-width: 100%;
    }

    .hero {
        background-size: 100% 165%;
    }
}


.submit-btn {
    background-color: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary);
}

.btn-connect {
    border: 2px solid #fff;
    font-weight: 600;
    color: #fff;
    background-color: transparent;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-connect:hover {
    border: 2px solid #fff;
    background-color: #fff;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Optional: Add a subtle "pulse" animation on hover */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-connect:hover {
    animation: pulse 1.5s infinite;
}



/*back to top floating button in reading and learning page started here */
    /* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #F64A8A; /* You can change this color */
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top-btn:hover {
    background: #F64A8A; /* Darker shade on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top-btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/*back to top floating button in reading and learning page ended here */