body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.header {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    height: 80px;
    overflow: visible;
    margin-top: 0;
}

.navbar {
    padding: 0;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    max-height: 80px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2));
}

.navbar-toggler {
    margin-left: 15px;
    border: none;
}

.navbar-collapse {
    background: #ffffff;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #333;
    margin: 0 10px;
    font-weight: 600;
    padding: 8px 15px;
    transition: color 0.3s, background 0.3s;
    display: flex;
    align-items: center; /* Align icon and text */
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #fff;
    background: #ff5733;
    border-radius: 5px;
}

.btn-primary {
    background-color: #ff5733;
    border: none;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background-color: #e04e2d;
    transform: scale(1.05);
}

.btn-hero {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 15px;
}

.hero {
    height: calc(100vh - 80px); /* Subtract header height */
    min-height: 600px;
    margin-top: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    height: 100%;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: block;
}

/* Desktop and Mobile Banner Rules */
.mobile-banner {
    display: none;
}

.desktop-banner {
    display: block;
}

@media (max-width: 767px) {
    .mobile-banner {
        display: block;
    }
    .desktop-banner {
        display: none;
    }
    .hero {
        height: 60vh;
        min-height: 400px;
    }
}

/* Remove any filters or overlays */
.hero-image::before,
.hero-image::after {
    display: none;
}

/* Ensure image is bright and clear */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.carousel-caption h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

/* Hero Section Buttons */
.carousel-caption .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 15px;
    margin: 0 3px;
    width: auto;
    display: inline-block;
    white-space: nowrap;
}

.carousel-caption .btn-outline-primary {
    border-color: #ff5733;
    color: #ff5733;
    font-weight: 500;
}

.carousel-caption .btn-outline-primary:hover {
    background-color: #ff5733;
    color: #fff;
}

.btn-outline-primary {
    border-color: #ff5733;
    color: #ff5733;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: #ff5733;
    color: #fff;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #ff5733, #ff8c33);
    color: #fff;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #34c759);
    color: #fff;
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8, #33d4e6);
    color: #fff;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #ffd700);
    color: #fff;
}

.img-fluid {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.gallery-img {
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.uniform-img {
    height: 400px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.blog-card, .event-card, .guru-card, .gallery-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
}

.blog-card:hover, .event-card:hover, .guru-card:hover, .gallery-card:hover {
    transform: translateY(-10px);
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff5733;
}

.card-text {
    font-size: 0.9rem;
    color: #444;
}

/* Fixed Call/WhatsApp Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gif-btn {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    border-radius: 50%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.gif-btn:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.footer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
}

.footer h5 {
    color: #ff5733;
}

.footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ff5733;
}

.text-primary {
    color: #ff5733 !important;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar .nav-link {
    color: #333;
    padding: 9px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background: #ff5733;
    color: #fff;
}

.flex-grow-1 {
    margin-left: 250px;
}

.tab-content {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.table {
    border-radius: 10px;
    overflow: hidden;
}

.btn-sm {
    padding: 5px 12px;
    font-weight: 600;
}

h2, h4 {
    color: #ff5733;
    font-weight: 700;
}

p, .card-text, small {
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 991px) {
    .header {
        padding: 0;
        height: auto;
    }

    .navbar {
        padding: 5px 0;
        min-height: 60px;
    }

    .navbar-brand {
        padding: 0;
    }

    .logo {
        max-height: 45px;
    }

    .navbar-toggler {
        margin-left: 10px;
        padding: 4px;
    }

    .navbar-text {
        margin-left: 10px;
    }

    .navbar-text .btn {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .navbar-collapse {
        background: #ffffff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    .navbar-nav {
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 8px 15px;
    }

    .navbar-toggler {
        order: 1;
    }

    .navbar-brand {
        order: 0;
    }

    .navbar-text {
        order: 2;
    }

    .btn-primary {
        margin: 0;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .logo {
        max-height: 40px;
    }

    .navbar {
        min-height: 55px;
    }

    .navbar-collapse {
        top: 55px;
    }

    .navbar-text .btn {
        padding: 3px 8px;
        font-size: 0.75rem;
    }

    .hero, .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
    .sidebar {
        width: 200px;
    }
    .flex-grow-1 {
        margin-left: 200px;
    }
    .gallery-img, .uniform-img {
        height: 150px;
    }
    .gif-btn {
        width: 40px;
        height: 40px;
    }
    .carousel-caption .btn {
        padding: 4px 10px;
        font-size: 0.75rem;
        margin: 0 2px;
    }
    .fixed-buttons {
        flex-direction: row;
        bottom: 0;
        right: 0;
        left: 0;
        gap: 0;
        padding: 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
        justify-content: stretch;
    }
    .call-btn, .whatsapp-btn {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .call-btn {
        background: linear-gradient(45deg, #FF512F, #DD2476);
    }
    .whatsapp-btn {
        background: linear-gradient(45deg, #11998e, #38ef7d);
    }
    .call-btn:active {
        background: linear-gradient(45deg, #DD2476, #FF512F);
    }
    .whatsapp-btn:active {
        background: linear-gradient(45deg, #38ef7d, #11998e);
    }
    .call-btn:active, .whatsapp-btn:active {
        transform: scale(0.98);
    }
    .gif-btn {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        padding: 7px;
        box-shadow: none;
        position: relative;
        z-index: 2;
        filter: brightness(1.2);
    }
    .call-btn::after, .whatsapp-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%;
        height: 120%;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        animation: pulse 2s infinite;
    }
    .call-btn::before, .whatsapp-btn::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: rotate(45deg);
        animation: shine 3s infinite;
    }
    @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(0);
            opacity: 0.8;
        }
        50% {
            opacity: 0;
        }
        100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0;
        }
    }
    @keyframes shine {
        0% {
            left: -50%;
        }
        100% {
            left: 150%;
        }
    }
}

@media (max-width: 575px) {
    .logo {
        max-height: 35px;
    }

    .navbar {
        min-height: 50px;
    }

    .navbar-collapse {
        top: 50px;
    }

    .navbar-text .btn {
        padding: 2px 6px;
        font-size: 0.7rem;
    }

    .carousel-caption .btn {
        padding: 3px 8px;
        font-size: 0.7rem;
        margin: 0 1px;
    }
    .fixed-buttons {
        padding: 0;
    }
    .call-btn, .whatsapp-btn {
        padding: 8px;
    }
    .gif-btn {
        width: 34px;
        height: 34px;
        padding: 6px;
    }
}

@media (min-width: 992px) {
    .logo {
        max-height: 80px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }
}

/* Top Header Styles */
.top-header {
    background-color: #212529;
    color: #fff;
    padding: 8px 0;
    transition: transform 0.3s ease;
}

.top-header .row {
    display: flex;
    align-items: center;
}

.top-header small {
    font-size: 12px;
    margin-right: 15px;
    display: inline-block;
    color: #fff;
}

.top-header .contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.top-header .social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.top-header a:hover {
    color: #ff5733;
}

/* Mobile Styles for Top Header */
@media (max-width: 767px) {
    .top-header {
        padding: 5px 0;
    }

    .top-header .row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .top-header .col-md-6 {
        width: auto;
        padding: 0 10px;
    }

    .top-header .contact-info {
        justify-content: flex-start;
        text-align: left;
        gap: 0;
    }

    /* Hide all contact info except phone number on mobile */
    .top-header .contact-info small:not(:first-child) {
        display: none;
    }

    .top-header small {
        font-size: 11px;
        margin-right: 0;
        line-height: 1.4;
        color: #fff;
    }

    .top-header .social-links {
        justify-content: flex-end;
        margin-top: 0;
        gap: 12px;
    }

    .top-header .social-links a {
        font-size: 14px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .top-header .social-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .top-header .contact-info {
        flex-direction: row;
    }

    .top-header small {
        font-size: 10px;
        margin-right: 0;
        display: block;
        color: #fff;
    }

    .top-header .social-links {
        gap: 10px;
    }

    .top-header .social-links a {
        font-size: 12px;
        width: 24px;
        height: 24px;
    }

    .carousel-caption .btn {
        padding: 3px 8px;
        font-size: 0.7rem;
        margin: 0 1px;
    }
}

/* Main Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo {
    max-height: 60px;
    transition: max-height 0.3s ease;
}

.header.scrolled .logo {
    max-height: 65px;
}

.navbar-nav .nav-link {
    color: #333333;
    font-weight: 600;
    padding: 10px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0a8614;
}

.navbar-nav .nav-link.active {
    color: #ff4e50;
    background-color: rgba(255, 78, 80, 0.1);
    border-radius: 5px;
}

.navbar-text .btn {
    background-color: #ff4e50;
    border-color: #ff4e50;
    font-size: 14px;
    padding: 8px 15px;
    transition: background-color 0.3s ease;
}

.navbar-text .btn:hover {
    background-color: #e64448;
    border-color: #e64448;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding-top: 60px;
    position: relative;
}

.footer-logo {
    max-width: 150px;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
}

.social-links {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-links a:hover {
    color: #ff5733;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #160202;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4e50;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-contact i {
    font-size: 18px;
    margin-right: 15px;
    color: #ff4e50;
}

.footer-contact h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #065741;
}

.footer-contact p, .footer-contact a {
    font-size: 14px;
    margin: 0;
    color: #000000;
}

.footer-contact a:hover {
    color: #ff4e50;
}

.footer-map {
    height: 250px;
    margin: 40px 0;
}

#map {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    background-color: #111111;
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom p {
    color: #cccccc;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff4e50;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .header.menu-open {
        background-color: #f8f9fa;
    }
    .navbar-collapse {
        background-color: #ffffff;
        padding: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .navbar-nav .nav-link {
        padding: 10px;
        color: #333333;
    }
    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
        color: #ff4e50;
        background-color: rgba(255, 78, 80, 0.1);
    }
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
    .footer-bottom .text-md-end {
        text-align: center;
    }
}

.sidebar {
    background-color: #f8f9fa;
    height: 100vh;
    position: fixed;
    width: 250px;
}

.sidebar .nav-link {
    color: #333333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    color: #ff4e50;
}

.table th, .table td {
    vertical-align: middle;
}

.btn-sm {
    padding: 5px 10px;
}

.modal-body label {
    font-weight: 600;
    margin-bottom: 5px;
}

#youtube-videos .card {
    transition: transform 0.3s;
}

#youtube-videos .card:hover {
    transform: scale(1.05); /* Hover effect */
}

#youtube-videos .card-img-top {
    height: 200px;
    object-fit: cover; /* Thumbnail fit */
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.donate-section h3 {
    font-size: 1.5rem;
    color: #333;
}

.header.menu-open {
    background-color: #fff; /* Optional: Change background when menu is open */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-collapse.show {
    background-color: #f8f9fa; /* Optional: Menu background on mobile */
}

.about-content {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 2rem 1rem 2rem;
}

.about-content h2 {
    margin-bottom: 0.6rem;
    color: #ff5733;
    font-size: 1.8rem;
}

.about-content .lead {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.about-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #444;
    margin-bottom: 0.1rem;
}

.about-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #ff5733;
}

.about-content ul {
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
}

.about-content li {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.about-image {
    min-height: 600px;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mySwiper {
    min-height: 600px;
    height: 100%;
}

@media (max-width: 767px) {
    .about-content {
        padding: 1rem 1rem 0.5rem 1rem;
        margin-top: 1rem;
        min-height: auto;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content .lead {
        font-size: 0.95rem;
    }
    
    .about-content p, .about-content li {
        font-size: 0.85rem;
    }
    
    .about-content h4 {
        font-size: 0.95rem;
    }
    
    .about-image {
        min-height: 300px;
    }
    
    .mySwiper {
        min-height: 300px;
    }
}

/* Blog and Event Content Styles */
.blog-content, .event-content, .card-text, .card-body p {
    color: #333333;
}

.blog-post p, .event-details p {
    color: #333333;
}

@media (max-width: 767px) {
    .top-header small {
        font-size: 11px;
        margin-right: 0;
        line-height: 1.4;
        color: #fff;
    }
}

@media (max-width: 575px) {
    .top-header small {
        font-size: 10px;
        margin-right: 0;
        display: block;
        color: #fff;
    }
}