body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #1c1e50; /* Dark background color */
}

/* Countdown and Live Button */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(135deg, #1c1e50, #582b9f); */
    color: white;
    padding: 30px;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

.countdown-container::before, .countdown-container::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform: rotate(45deg);
    animation: animateBackground 15s infinite linear;
    pointer-events: none;
}

@keyframes animateBackground {
    0% {
        transform: rotate(45deg) translate(0, 0);
    }
    100% {
        transform: rotate(45deg) translate(50%, 50%);
    }
}

.live-button {
    background: red;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: blink;
    margin-right: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 1);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    }
}

#countdown {
    display: flex;
    gap: 10px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}

#countdown div {
    padding: 9px 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Event Section */
.event-section {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    gap: 30px;
    color: white;
    background: linear-gradient(135deg, #582b9f, #1c1e50);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.event-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.event-text {
    padding-right: 20px;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
    background: linear-gradient(135deg, #f4e2d8, #1678e9);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.event-text h1 span {
    color: #f4e2d8;
    font-style: italic;
}

.event-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    font-size: 18px;
    font-weight: bold;
    color: #f4e2d8;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ffe08a;
}

.event-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 15px;
}

.event-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-images img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    animation: scaleIn 0.3s ease-in-out forwards;
}

@keyframes scaleIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox:target {
    display: flex;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lightbox .close:hover {
    color: #f00;
}

.lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    text-decoration: none;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.lightbox .nav:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox .prev {
    left: 20px;
}

.lightbox .next {
    right: 20px;
}

@media (max-width: 768px) {
    .event-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-text h1 {
        font-size: 28px;
    }

    .event-text p {
        font-size: 16px;
    }
}

.activities-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

.activities-section h1 {
    font-size: 36px;
    color: #5e2ab4;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.activities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.activity-card h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0 10px;
}

.activity-card p {
    font-size: 16px;
    color: #666;
    padding: 0 20px 20px;
}

.activity-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Next */
.spiritual-exhibition-section {
    text-align: center;
    padding: 30px 10px;
    background: linear-gradient(to bottom right, #1678E9, #FF6EC7);
    color: #fff;
}

.spiritual-exhibition-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.spiritual-exhibition-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #fff;
}

.spiritual-exhibition-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.spiritual-card {
    perspective: 1000px;
    margin: 20px;
    width: 220px; /* Ensure the width is fixed */
    height: 300px; /* Ensure the height is fixed */
}

.spiritual-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
    position: relative;
}

.spiritual-card-front,
.spiritual-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box; /* Prevents size changes due to padding or borders */
}

.spiritual-card-front {
    color: #1678E9;
}

.spiritual-card-back {
    background: #1678E9;
    color: #fff;
    transform: rotateY(180deg);
    padding: 20px;
}

.spiritual-card-inner:hover {
    transform: rotateY(180deg);
}

.spiritual-card img {
    width: 100%;
    height: 100%;
    border-radius: 15px; /* Ensures the image does not overflow */
}

.spiritual-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.spiritual-card p {
    font-size: 16px;
    color: #fff;
    padding: 0; /* Ensure no extra padding that could affect size */
    margin: 0; /* Ensure no extra margin that could affect size */
}


/* Next */
.health-camp-section {
    text-align: center;
    padding: 30px 10px;
    background: linear-gradient(to bottom right, #1678E9, #FF6EC7);
    color: #fff;
}

.health-camp-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.health-camp-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #fff;
}

.health-camp-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.health-card {
    perspective: 1000px;
    margin: 20px;
    width: 220px; /* Ensure the width is fixed */
    height: 300px; /* Ensure the height is fixed */
}

.health-card-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
    position: relative;
}

.health-card-front,
.health-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box; /* Prevents size changes due to padding or borders */
}

.health-card-front {
    color: #1678E9;
}

.health-card-back {
    background: #1678E9;
    color: #fff;
    transform: rotateY(180deg);
    padding: 20px;
}

.health-card-inner:hover {
    transform: rotateY(180deg);
}

.health-card img {
    width: 100%;
    height: 100%;
    border-radius: 15px; /* Ensures the image does not overflow */
}

.health-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.health-card p {
    font-size: 16px;
    color: #fff;
    padding: 0; /* Ensure no extra padding that could affect size */
    margin: 0; /* Ensure no extra margin that could affect size */
}

/* Next */
.slider-container {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-header {
    background: linear-gradient(to right, #1678E9, #FF6EC7);
    color: #fff;
    text-align: center;
    padding: 20px;
}

.slider-header h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
}

.slider-header p {
    margin: 5px 0 0;
    font-size: 18px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.slide img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.slide h3 {
    margin: 10px 0;
    font-size: 24px;
    color: #1678E9;
}

.slide p {
    margin: 0 auto;
    font-size: 18px;
    color: #333;
    max-width: 800px;
}

.navigation {
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.dots .dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dots .dot.active {
    background-color: #1678E9;
}
/* Next */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

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

.timetable-header {
    text-align: center;
    margin-bottom: 30px;
}

.timetable-header h2 {
    font-size: 36px;
    color: #1678E9;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.event {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(to right, #1678E9, #FF6EC7);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.event:hover .event-date {
    color: #FF6EC7;
}

.event-image {
    flex: 1;
    max-width: 150px;
    margin-right: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.event-details {
    flex: 3;
    text-align: left;
}

.event-name {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
}

.event-date {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.event-description {
    font-size: 18px;
    color: #f0f0f0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .event {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-image {
        margin-bottom: 20px;
        max-width: 100%;
        margin-right: 0;
    }

    .event-details {
        text-align: center;
    }
}
/* Next */
body {
    font-family: Arial, sans-serif;
    background-color: #4c2b9e;
    margin: 0;
    padding: 0;
    color: white;
}

.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.pricing-header {
    margin-bottom: 40px;
}

.pricing-header h1 {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
}

.pricing-header p {
    font-size: 16px;
    margin: 10px 0 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.pricing-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.card {
    position: relative;
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 30px 20px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 1px;
    background-color: #FF6EC7;
    color: white;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.card-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}


.card .price {
    font-size: 32px;
    margin: 20px 0;
    font-weight: bold;
    color: #1678E9;
}

.card .price span {
    font-size: 16px;
    color: grey;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px;
    text-align: left;
}

.card ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.card ul li::before {
    content: "✔";
    color: #1678E9;
    font-weight: bold;
    margin-right: 10px;
}

.card .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1678E9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.card .btn:hover {
    background-color: #0F5CA8;
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* Next */
.cta-box {
    position: relative;
    background-image: url('img/BG.webp'); /* Use the actual URL of the image you provided */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    color: #4a2b0a; /* Dark brown color for better contrast */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 80px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Optional: Adjust this to make text even more visible */
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h1 {
    font-size: 36px;
    margin: 0 0 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: white; /* White color for the main heading */
}

.cta-content p {
    font-size: 18px;
    margin: 0 0 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: #4a2b0a; /* Dark brown color for better contrast */
}

.cta-content a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF0000;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-content a:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-content h1 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-content a {
        font-size: 16px;
        padding: 12px 25px;
    }
}


/* Next */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

.channel-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.channel-header {
    margin-bottom: 40px;
}

.channel-header h1 {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
}

.channel-header p {
    font-size: 16px;
    margin: 10px 0 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    color: #1678E9;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
}
.verified-icon {
    width: 19px !important;
    height: 17px !important;
    margin-left: -4px;
    vertical-align: middle;
    padding-top: 10px;
}
  

.channel-card {
    background-color: white;
    border-radius: 10px;
    padding: 6px;
    width: 100%;
    max-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.channel-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.channel-card a {
    text-decoration: none;
    color: #1678E9;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.channel-card a:hover {
    color: #0F5CA8;
}

.website-button {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 30px;
    background-color: #1678E9;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.website-button:hover {
    background-color: #0F5CA8;
}

@media (max-width: 768px) {
    .channel-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .channel-card {
        max-width: 120px;
    }
}

/* Next */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.venue-container {
    max-width: 1200px;
/*     width: 100%; */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: auto;
}

.venue-header {
    background: linear-gradient(to right, #6A00FF, #8B2CFF);
    border-radius: 10px;
    color: #fff;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-header img {
    margin-right: 10px;
}

.venue-subheader {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.venue-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.venue-item:hover {
    background-color: #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.venue-item h3 {
    margin: 0;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: color 0.3s ease;
}

.venue-item h3 span {
    color: #1678E9;
    transition: transform 0.3s ease, color 0.3s ease;
}

.venue-item h3:hover {
    color: #1678E9;
}

.venue-item .venue-details {
    display: none;
    margin-top: 10px;
    color: #555;
    font-size: 14px;
}

.venue-item.active .venue-details {
    display: block;
}

.venue-item.active h3 span {
    transform: rotate(180deg);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .venue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .venue-header {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .venue-grid {
        grid-template-columns: 1fr;
    }

    .venue-header {
        font-size: 20px;
        padding: 10px;
    }

    .venue-item h3 {
        font-size: 16px;
    }

    .venue-item .venue-details {
        font-size: 13px;
    }
}
/* Next */
/* body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

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

.blog-header {
    margin-bottom: 20px;
}

.blog-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.blog-header h4 {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.blog-card:hover .content {
    opacity: 1;
}

.blog-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-card .read-more {
    background-color: #1678E9;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.blog-card .read-more:hover {
    background-color: #0f5ca8;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
} */

/* Next */


/* Next */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    color: #333;
}

.faq-container {
    max-width: 1200px;
/*     width: 100%; */
    margin: auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}

.faq-header {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    color: #333;
}

.faq-header span {
    font-size: 18px;
    color: #1678E9;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item h3 {
    font-size: 22px;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
    color: #1678E9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-item h3:hover {
    background-color: #f0f0f0;
    transform: translateX(10px);
}

.faq-item p {
    font-size: 18px;
    color: #666;
    padding: 20px;
    margin: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.faq-item.active p {
    display: block;
    opacity: 1;
    animation: slideDown 0.3s ease-in-out;
}

.faq-item.active h3::after {
    content: '▲';
    color: #1678E9;
}

.faq-item h3::after {
    content: '▼';
    color: #1678E9;
    font-size: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .faq-container {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 20px;
    }

    .faq-item p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 10px;
    }

    .faq-header {
        font-size: 28px;
    }

    .faq-header span {
        font-size: 16px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .faq-item p {
        font-size: 14px;
    }
}
/* Next */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

footer {
    background: linear-gradient(to right, #6A00FF, #8B2CFF);
    color: #fff;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
    margin: 20px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
    display: block;
}

.footer-social-icons {
    display: flex;
    margin-top: 20px;
}

.footer-social-icons a {
    color: #ccc;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-social-icons a:hover {
    color: #fff;
}

.footer-subscribe input[type="email"] {
    padding: 10px;
    width: 70%;
    border: none;
    border-radius: 5px 0 0 5px;
    margin-right: -5px;
    outline: none;
    margin-bottom: 10px;
}

.footer-subscribe button {
    padding: 10px 20px;
    background-color: #1678E9;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: background-color 0.3s;
}

.footer-subscribe button:hover {
    background-color: #0F5CA8;
}

.footer-bottom {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
    color: #ccc;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 20px 0;
        text-align: center;
    }

    .footer-subscribe input[type="email"] {
        width: 100%;
        margin-right: 0;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .footer-subscribe button {
        width: 100%;
        border-radius: 5px;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .pl-md-4, .px-md-4 {
        padding-left: 1.5rem !important;
    }
    .text-md-left {
        text-align: left !important;
    }
    .text-md-right {
        text-align: right !important;
    }
    .row{
        display: flex!important;
    }
}

.row{
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.col-md-6 {
    position: relative;
    width: 100%;
    min-height: 1px;
}
.thumb {
    max-width: 100%;
    margin-bottom: -24px !important;
    /* position: absolute;
    left: 50%;
    top: 183px;
    transform: translateX(-50%);
    width: 480px; */
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.subtitle {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin: 30px 0 0 0;
}

.date {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
}
