:root {
    --primary: #0070C0;
    --secondary: #00A896;
    --light: #F9F9F9;
    --dark: #333333;
    --gray: #777777;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --overlay: rgba(0, 112, 192, 0.7);
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.section-padding {
    padding-top: 80px;
    padding-bottom:30px;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--primary);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--secondary);
}

.section-subtitle::before {
    left: -40px;
}

.section-subtitle::after {
    right: -40px;
}

/* Buttons */
.btn-custom {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-custom:hover::before {
    width: 100%;
}

.btn-custom:hover {
    color: var(--white);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 15px 35px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--white);
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-outline-custom:hover::before {
    width: 100%;
}

.btn-outline-custom:hover {
    color: var(--primary);
}

/* Navbar */
.navbar {
    padding: 25px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--primary);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 2rem); /* Responsive */
    font-weight: 700;
    color: var(--white) !important;
    transition: all 0.3s ease;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    font-weight: 500;
    color: var(--white) !important;
    margin: 0 7px;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--white);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 112, 192, 0.6), rgba(0, 112, 192, 0.3));
    z-index: 1;
}

.carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomOut 10s forwards;
    transform: scale(1.1);
}

@keyframes zoomOut {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    right: 10%;
    text-align: center;
    z-index: 2;
}

.carousel-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 0.3s;
}

.carousel-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 0.6s;
    line-height: 1.2;
}

.carousel-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 0.9s;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-buttons {
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
    animation-delay: 1.2s;
}

.carousel-indicators {
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.carousel-control-prev, .carousel-control-next {
    z-index: 3;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

/* About Section */
.about-section {
    background-color: var(--white);
    position: relative;
}

.about-img-container {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img-container::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 5px solid var(--secondary);
    bottom: 0;
    right: 0;
    z-index: -1;
}

.about-content {
    padding: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.about-feature:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: var(--off-white);
    color: var(--secondary);
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
    display:flex;
    justify-content: center;
    align-items: center;
}

.about-feature:hover .about-feature-icon {
    background-color: var(--secondary);
    color: var(--white);
}

.about-feature-content h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Services Section */
.services-section {
    background-color: var(--off-white);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.services-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.services-tab {
    padding: 12px 30px;
    margin: 5px;
    background-color: var(--white);
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
}

.services-tab.active, .services-tab:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.service-card {
    background-color: var(--white);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.service-info {
    padding: 30px;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-desc {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Doctors Section */
.doctors-section {
    background-color: var(--white);
}

.doctor-card {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.doctor-img {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.05);
}

.doctor-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: var(--white);
    transition: all 0.3s ease;
}

.doctor-card:hover .doctor-info {
    background: linear-gradient(to top, rgba(0, 112, 192, 0.9), rgba(0, 112, 192, 0.7), rgba(0, 0, 0, 0));
}

.doctor-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--white);
    text-decoration:none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.doctor-title {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.doctor-card:hover .doctor-title {
    color: var(--white);
}

.doctor-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.doctor-social a {
    display: flex;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.doctor-social a:hover {
    background-color: var(--white);
    color: var(--secondary);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: var(--secondary);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--secondary);
    border-radius: 50%;
}

.author-info h5 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 1.2rem;
}

.author-info .stars {
    color: var(--secondary);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
    position: relative;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 10px; /* 8px was too tight visually */
    padding: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(6) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 112, 192, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-icon {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Responsive Layout */
@media (max-width: 1199px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .gallery-item:nth-child(3),
    .gallery-item:nth-child(6) {
        grid-row: span 1;
    }
}

@media (max-width: 767px) {
    .gallery-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
}


/* Facilities Section */
.facilities-section {
    background-color: var(--off-white);
    position: relative;
}

.facility-card {
    background-color: var(--white);
    padding: 25px 15px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--off-white);
    color: var(--secondary);
    font-size: 2.5rem;
    margin: 0 auto 25px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    background-color: var(--secondary);
    color: var(--white);
    transform: rotateY(360deg);
}

.facility-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    position: relative;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--off-white);
    color: var(--secondary);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.contact-item:hover .contact-icon {
    background-color: var(--secondary);
    color: var(--white);
}

.contact-content h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-form {
    background-color: var(--white);
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 10px;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    z-index: -1;
    border-radius: 10px;
}

.form-control {
    height: 55px;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 0;
    margin-bottom: 25px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--secondary);
}

textarea.form-control {
    height: 120px;
    resize: none;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 100px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

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

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem); /* Responsive */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 0;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 20px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-5px);
}

.newsletter-form {
    position: relative;
}

.newsletter-form .form-control {
    height: 55px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 10px 20px;
    padding-right: 50px;
    border-radius: 50px;
}

.newsletter-form .btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 55px;
    width: 55px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    border-radius: 0 50px 50px 0;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 70px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .section-title {
        font-size: 3rem;
    }
    
    .carousel-title {
        font-size: 4rem;
    }
}

@media (max-width: 991px) {
    
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .carousel-title {
        font-size: 3.5rem;
    }
    
    .about-img-container::after {
        display: none;
    }
    
    .contact-form::before {
        display: none;
    }
}

@media (max-width: 767px) {
    
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .carousel-title {
        font-size: 2.8rem;
    }
    
    .carousel-description {
        font-size: 1rem;
    }
    
    .navbar-collapse {
        background-color: var(--primary);
        padding: 20px;
        margin-top: 15px;
    }
    
    .navbar-collapse .nav-link {
        color: var(--white) !important;
    }
    
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--secondary) !important;
    }
    
    .contact-form {
        padding: 30px;
        margin-top: 30px;
    }
}

.logo{
    height:50px;
}

pre {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    overflow-x: auto; /* Enables horizontal scrolling for long lines */
    white-space: pre-wrap; /* Ensures text wraps within container */
    word-wrap: break-word;
    line-height: 1.5;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-img {
    position: relative;
    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-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    line-height: 1;
}

.event-date .day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.event-date .month {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.event-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn-outline-primary {
    border-color: #2c3e50;
    color: #2c3e50;
}

.btn-outline-primary:hover {
    background: #2c3e50;
    color: white;
}

@media (max-width: 768px) {
    .event-img {
        height: 180px;
    }
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* spacing between columns */
    justify-content: space-between;
}

/* Contact info and form styling */
.contact-info, .contact-form {
    flex: 1 1 45%; /* flexible width, minimum 45% */
    min-width: 300px; /* avoid squishing on small screens */
}

/* Styling the form elements */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Social links spacing */
.social-links a {
    margin-right: 10px;
    font-size: 20px;
    color: #333;
}

/* Responsive stacking on small screens */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}

.contact-info {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 112, 192, 0.05);
    padding: 30px;
    max-width: 500px;
}

.contact-info i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-info h6 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-info p {
    color: var(--gray);
    margin: 0;
}

.testimonial-4 {
    background: #ffffff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-4:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary);
}

.stars i {
    font-size: 1.1rem;
    color: #ffc107;
    margin: 0 1px;
}

.testimonial-4 h5 {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-4 p {
    font-size: 0.95rem;
    color: #555;
}

.testimonial-4 .text-muted {
    font-size: 0.85rem;
    color: #888 !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-dark {
    color: var(--dark);
}

.text-gray {
    color: var(--gray);
}

.vision-mission-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0, 112, 192, 0.15);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}
.why-choose-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--off-white);
    background-color: var(--white);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 112, 192, 0.1);
}

.event-card {
    position: relative;
    width: 100%;
}
.event-image {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.event-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tag {
    background: var(--secondary);
    /*background: rgba(0, 0, 0, 0.7);*/
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight:bold;
}

.btn-active {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-active:hover::before {
    width: 100%;
}

.btn-active:hover {
    color: var(--white);
}
.brand-social i{
    color : white !important;
}
/* Parallax */
.split-parallax {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.split-parallax .left-image {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  flex: 1;
  min-height: 100vh;
}

.split-parallax .right-content {
  flex: 1;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  min-height: 100vh;
}

.right-content .content-box {
  max-width: 500px;
}

.right-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.right-content p {
  font-size: 1.1rem;
  color: #444;
}

@media (max-width: 768px) {
  .split-parallax {
    flex-direction: column;
  }
  .left-image, .right-content {
    min-height: 50vh;
  }
}

/* Parallax */
.parallax-attractive {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 20px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.parallax-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
}

.parallax-content p {
  font-size: 1.3rem;
}

@media(max-width: 768px) {
  .parallax-content h1 {
    font-size: 2.2rem;
  }
  .parallax-content p {
    font-size: 1rem;
  }
}