
:root {
    --primary: #27a897;
    --primary-light: #e6f0ff;
    --secondary: #1b416f;
    --accent: #1b416f;
    --light: #f5f9ff;
    --dark: #2c3e50;
    --gray: #f0f4f8;
    --text: #333;
    --text-light: #667788;
}
.footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 240px;
}

.footer-col {
    flex: 1;
    min-width: 240px;
}



.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
}

.footer-col p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-text);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    margin-top: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}
.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 4px;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-input {
    flex: 1;
    height: 45px;
    padding: 0 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    border: none;
    border-radius: 0 30px 30px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}


@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        margin-bottom: 2rem;
    }
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.15);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        width: 45%;
        right: -30px;
    }

    .about-text {
        padding-right: 1rem;
    }

    .service-item,
    .feature-item {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.8rem 0;
    }

    .logo img {
        height: 35px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: auto;
        padding: 5rem 0;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .service-item,
    .feature-item {
        min-width: 100%;
    }

    .event-card {
        width: 300px;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 14px;
    }

    .event-card {
        width: 280px;
    }

    .event-content h3 {
        font-size: 1.1rem;
    }

    .footer-col {
        min-width: 100%;
    }
}

.carousel-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    margin-top: 30px;
    /* Reduced from 80px to 30px */
}

.carousel-container {
    position: relative;
    height: 500px;
    /* Reduced from 600px */
    width: 100%;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3.5rem;
    /* Increased horizontal padding to avoid text overlap with arrows */
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide.previous {
    transform: translateX(-100%);
}

.slide-content {
    flex: 1;
    padding: 2rem;
    max-width: 50%;
}

.slide-content h1 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #20B2AA;
    /* Matching teal color from your site */
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
}

.slide-buttons .btn {
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.slide-buttons .btn-primary {
    background-color: #20B2AA;
    /* Matching teal color from your site */
    color: white;
}

.slide-buttons .btn-outline {
    border: 2px solid #20B2AA;
    color: #20B2AA;
    background-color: transparent;
}

.slide-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slide-image img {
    width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 5px;
    /* Moved from 20px to 5px */
}

.carousel-next {
    right: 5px;
    /* Moved from 20px to 5px */
}

.carousel-arrow i {
    font-size: 1.2rem;
    color: #20B2AA;
    /* Matching teal color from your site */
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 25px;
    border-radius: 10px;
    background-color: #20B2AA;
    /* Matching teal color from your site */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-slide {
        flex-direction: column;
        padding: 2rem 2rem;
    }

    .slide-content {
        max-width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .slide-buttons {
        justify-content: center;
    }

    .carousel-container {
        height: 650px;
    }

    .slide-image img {
        width: 400px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .slide-image img {
        width: 320px;
        height: 220px;
    }
}