/* Global Styles */
:root {
    --primary-color: #000;
    --secondary-color: #D4AF37;
    --accent-color: #2980B9;
    --text-light: #fff;
    --text-dark: #333;
    --background-light: #f9f9f9;
    --background-dark: #121212;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

body {
    background-color: var(--background-light); */
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--background-dark));
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width:70px;  /*Logo fix*/
    height: auto;    
    vertical-align: middle;
    border-radius: 5px;
}
.footer-logo img{
    max-width:70px;  /*Logo fix*/
    height: auto;   
    vertical-align: middle;
    border-radius: 5px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: yellow;
    bottom: 0;
    left:50%;
    transition: all 0.3s ease;
  }
.nav-links a:hover::after{
    width:100%;
    left:0;
  }
.nav-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-image: url('img/herobackground.jpeg'); /*hero section background*/
    color: var(--text-light);
    text-align: center;
    padding: 5rem 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c19b29;
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/diamond.png');
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: -1;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card h3 {
    color: var(--secondary-color);
    text-decoration-color: #000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Courses Section */
.courses {
    padding: 5rem 0;
    background-color: var(--background-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.courses::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
    background-blend-mode: overlay;
    opacity: 0.2;
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 400;
    /* color: var(--secondary-color); */
}

.courses-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.course-card ul {
    list-style-type: none;
    margin: 1rem 0;
}

.course-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.course-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.course-price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 1rem 0;
    font-weight: 700;
}

.price-details {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #aaa;
}

/* Events Section */
.events {
    padding: 5rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.events::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/crosshatch.png');
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: -1;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-img {
    height: 200px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

.event-details {
    padding: 1.5rem;
}

.event-details h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Impact Section */
.impact {
    padding: 5rem 0;
    background-color: var(--background-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/circuit-board.png');
    background-blend-mode: overlay;
    opacity: 0.2;
    z-index: -1;
}

.impact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.impact-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Membership Section */
.membership {
    padding: 5rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.membership::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/diamond.png');
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: -1;
}

.membership-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.membership-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.membership-card:hover {
    transform: scale(1.05);
}

.membership-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.membership-price {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 1rem 0;
    font-weight: 700;
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background-color: var(--background-gray); */
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
    background-blend-mode: overlay;
    opacity: 0.2;
    z-index: -1;
}

.partners-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    /* background-color: rgba(255, 255, 255, 0.1); */
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    /* filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease; */
}

.partner-logo:hover img {
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/crosshatch.png');
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: -1;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-detail i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #c19b29;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/diamond.png');
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: -1;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Course Detail Modal */
.course-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.course-detail-content {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.course-detail-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/diamond.png');
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: -1;
}

.close-course-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/diamond.png');
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: -1;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1002;
    justify-content: center;
    align-items: center;
}

.gallery-modal-content {
    max-width: 80%;
    max-height: 80%;
}

.gallery-modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-gallery-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/diamond.png');
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: -1;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Founder Section */
.founder {
    padding: 5rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/diamond.png');
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: -1;
}

.founder-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start; /* founder info fix*/
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.founder-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 2rem;

}

.contact-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-option {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.contact-option i {
    margin-right: 0.5rem;
}

/* Programs Section */
.programs {
    padding: 5rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.programs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/diamond.png');
    background-blend-mode: overlay;
    opacity: 0.1;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .mobile-menu {
        display: block;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* SEO Enhancements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Accessibility Improvements */
.focusable {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}


/* styles for missions values */
.bg-gray-100 {
    background-color: #f3f4f6; /* Tailwind's bg-gray-100 */
}
.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem; /* Tailwind's py-12 */
}
.max-w-6xl {
    max-width: 72rem; /* Tailwind's max-w-6xl (1152px), adjust if needed */
}
.mx-auto {
    margin-left: auto;
    margin-right: auto; /* Tailwind's mx-auto */
}
.grid {
    display: grid; /* Tailwind's grid */
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* Tailwind's grid-cols-1 */
}
.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Tailwind's md:grid-cols-2 (md = medium breakpoint) */
}
.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* Tailwind's lg:grid-cols-4 (lg = large breakpoint) */
}
.gap-8 {
    gap: 2rem; /* Tailwind's gap-8 */
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem; /* Tailwind's px-6 */
}
.bg-white {
    background-color: #ffffff; /* Tailwind's bg-white */
}
.rounded-lg {
    border-radius: 0.5rem; /* Tailwind's rounded-lg */
}
.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Tailwind's shadow-md */
}
.p-6 {
    padding: 1.5rem; /* Tailwind's p-6 */
}
.flex {
    display: flex; /* Tailwind's flex */
}
.flex-col {
    flex-direction: column; /* Tailwind's flex-col */
}
.items-center {
    align-items: center; /* Tailwind's items-center */
}
.text-center {
    text-align: center; /* Tailwind's text-center */
}
.transition-transform {
    transition-property: transform; /* Tailwind's transition-transform */
}
.duration-300 {
    transition-duration: 300ms; /* Tailwind's duration-300 */
}
.hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem); /* Tailwind's hover:-translate-y-2 */
}
.rounded-full {
    border-radius: 9999px; /* Tailwind's rounded-full */
}
.bg-blue-100 {
    background-color: #eff6ff; /* Tailwind's bg-blue-100 */
}
.text-blue-500 {
    color: #3b82f6; /* Tailwind's text-blue-500 */
}
.p-3 {
    padding: 0.75rem; /* Tailwind's p-3 */
}
.mb-4 {
    margin-bottom: 1rem; /* Tailwind's mb-4 */
}
.text-xl {
    font-size: 1.25rem; /* Tailwind's text-xl */
}
.font-semibold {
    font-weight: 600; /* Tailwind's font-semibold */
}
.text-gray-800 {
    color: #1f2937; /* Tailwind's text-gray-800 */
}
.text-gray-600 {
    color: #4b5563; /* Tailwind's text-gray-600 */
}
.hover\:text-blue-700:hover {
    color: #1d4ed8; /* Tailwind's hover:text-blue-700 */
}



/* what we do styles */
/* Additional styles to ensure proper display, override potential conflicts */
.bg-gray-100 {
    background-color: #f3f4f6; /* Tailwind's bg-gray-100 */
}
.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem; /* Tailwind's py-12 */
}
.max-w-6xl {
    max-width: 72rem; /* Tailwind's max-w-6xl (1152px), adjust if needed */
}
.mx-auto {
    margin-left: auto;
    margin-right: auto; /* Tailwind's mx-auto */
}
.grid {
    display:flex; /* Tailwind's grid */
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* Tailwind's grid-cols-1 */
}
.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Tailwind's md:grid-cols-2 (md = medium breakpoint) */
}
.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* Tailwind's lg:grid-cols-4 (lg = large breakpoint) */
}
.gap-8 {
    gap: 2rem; /* Tailwind's gap-8 */
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem; /* Tailwind's px-6 */
}
.bg-white {
    background-color: #ffffff; /* Tailwind's bg-white */
}
.rounded-lg {
    border-radius: 0.5rem; /* Tailwind's rounded-lg */
}
.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Tailwind's shadow-md */
}
.p-6 {
    padding: 1.5rem; /* Tailwind's p-6 */
}
.flex {
    display: flex; /* Tailwind's flex */
}
.flex-col {
    flex-direction: column; /* Tailwind's flex-col */
}
.items-center {
    align-items: center; /* Tailwind's items-center */
}
.text-center {
    text-align: center; /* Tailwind's text-center */
}
.transition-transform {
    transition-property: transform; /* Tailwind's transition-transform */
}
.duration-300 {
    transition-duration: 300ms; /* Tailwind's duration-300 */
}
.hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem); /* Tailwind's hover:-translate-y-2 */
}
.rounded-full {
    border-radius: 9999px; /* Tailwind's rounded-full */
}
.bg-blue-100 {
    background-color: #eff6ff; /* Tailwind's bg-blue-100 */
}
.text-blue-500 {
    color: #3b82f6; /* Tailwind's text-blue-500 */
}
.p-3 {
    padding: 0.75rem; /* Tailwind's p-3 */
}
.mb-4 {
    margin-bottom: 1rem; /* Tailwind's mb-4 */
}
.text-xl {
    font-size: 1.25rem; /* Tailwind's text-xl */
}
.font-semibold {
    font-weight: 600; /* Tailwind's font-semibold */
}
.text-gray-800 {
    color: #1f2937; /* Tailwind's text-gray-800 */
}
.text-gray-600 {
    color: #4b5563; /* Tailwind's text-gray-600 */
}
.hover\:text-blue-700:hover {
    color: #1d4ed8; /* Tailwind's hover:text-blue-700 */
}


     /* Gallery Section Styles */
        .gallery-section {
            padding: 2rem 0;
            background-color: #f0f0f0; /* Light gray background */
        }

        .gallery-section h2 {
            text-align: center;
            font-size: 2rem;
            color: #333;
            margin-bottom: 2rem;
        }

        .carousel-container {
            max-width: 80%;
            margin: auto;
            overflow: hidden;
            position: relative;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-item {
            flex: 0 0 20%;
            margin: 0 1%;
            opacity: 0.6;
            transition: all 0.3s ease-in-out;
            transform: scale(0.8);
        }

        .carousel-item.active {
            opacity: 1;
            transform: scale(1.1);
        }

        .carousel-item img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* Navigation Buttons */
        .carousel-control {
            position: absolute;
            top: 50%;
            width: auto;
            padding: 0.5rem;
            margin-top: -22px;
            color: white;
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            cursor: pointer;
            border-radius: 0.25rem;
            font-size: 1.5rem;
        }

        .prev {
            left: 0.5rem;
        }

        .next {
            right: 0.5rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .carousel-item {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 480px) {
            .carousel-item {
                flex: 0 0 80%;
            }
        }
    