* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #195E63;
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    background: transparent;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

header.header-scrolled {
    background: linear-gradient(135deg, #195E63 0%, #5C6BC0 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #66BB6A, #81D4FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: pulse 2s infinite;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #81D4FA;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #81D4FA;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #195E63 0%, #5C6BC0 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,80 1000,100 0,100"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #66BB6A, #81D4FA);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #E0F2F1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #195E63;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #66BB6A, #81D4FA);
    border-radius: 2px;
}

.about-image {
    background: #F5F5F5;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #195E63;
    border: 5px #c8e2ed;
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-credentials {
    margin: 18px 0 18px 0;
    padding-left: 0;
    list-style: none;
}
.about-credentials li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    color: #195E63;
    font-size: 1.04rem;
    line-height: 1.5;
}
.about-credentials li::before {
    content: '\2022';
    color: #5C6BC0;
    font-size: 1.3em;
    position: absolute;
    left: 0;
    top: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #ECEFF1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #195E63;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #66BB6A, #81D4FA);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 94, 99, 0.8), rgba(92, 107, 192, 0.8));
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.9;
}

.service-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card h3 {
    color: white;
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-card:hover h3 {
    color: #81D4FA;
    text-shadow: 0 0 20px rgba(129, 212, 250, 0.8), 0 0 30px rgba(129, 212, 250, 0.6);
    transform: scale(1.05);
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    margin: 0;
}

.service-card:hover p {
    color: white;
}

.service-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-card:hover .service-icon {
    color: #81D4FA;
    text-shadow: 0 0 20px rgba(129, 212, 250, 0.8);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Know More Button Styles */
.know-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.know-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover .know-more-btn {
    background: rgba(129, 212, 250, 0.3);
    border-color: #81D4FA;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(129, 212, 250, 0.3);
}

.service-card:hover .know-more-btn::before {
    left: 100%;
}

.know-more-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.service-card:hover .know-more-btn i {
    transform: translateX(5px);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.gallery-section {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(25, 94, 99, 0.1);
    border: 1px solid #CFD8DC;
}

.gallery-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #195E63;
    font-weight: 600;
}

.slideshow-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #195E63;
    border: 2px #CFD8DC;
    background-color: #F5F5F5;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    text-align: center;
}

.dots-container {
    text-align: center;
    margin-top: 15px;
}

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

.dot.active {
    background-color: #5C6BC0;
}

/* Video Section Styles */
.video-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-caption {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    color: #195E63;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-placeholder {
    background: #F5F5F5;
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #195E63;
    border: 2px #CFD8DC;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '▶';
    position: absolute;
    font-size: 4rem;
    color: #5C6BC0;
    opacity: 0.3;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(25, 94, 99, 0.1);
    border-color: #81D4FA;
}

/* Locations Section */
.locations {
    padding: 100px 0;
    background: linear-gradient(135deg, #86dae0 0%, #697ada 100%);
    color: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.location-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3f6f85;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

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

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

.contact-item {
    padding: 35px 30px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #F8F9FA;
    border: 1px solid #E0E0E0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 35px rgba(25, 94, 99, 0.12);
    border-color: transparent;
    background: linear-gradient(145deg, #195E63, #5C6BC0);
    color: #ffffff;
}

.contact-item:hover h3,
.contact-item:hover p,
.contact-item:hover .contact-icon i {
    color: #ffffff;
}

.contact-item:hover a {
    color: #81D4FA;
    text-decoration: underline;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #66BB6A, #81D4FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #ffffff;
    transform: scale(1.1);
}

.contact-item:hover .contact-icon i {
    color: #195E63;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #195E63;
    transition: color 0.3s ease;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.contact-item a {
    color: #195E63;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-item a:hover {
    color: #5C6BC0;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #195E63;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section h3 {
    color: #81D4FA;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.contact-icon i,
.location-card i,
.footer-section i {
    color: #195E63;
    font-size: 1.2rem;
}

.social-links a {
    color: #E0F2F1;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #81D4FA;
}

.footer-section i {
    color: #81D4FA;
    
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #66BB6A, #81D4FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

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

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

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

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: #81D4FA;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(129, 212, 250, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #E0F2F1;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo Styles */
.logo-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.service-icon i {
    font-size: 2.5rem;
    color: #195E63;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.2);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #66BB6A, #81D4FA);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 2rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #E0F2F1;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-grid, .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        /* Ensures that sections themselves don't have unexpected side effects from text-align: center if they contain block children not meant to be centered.*/
        /* Example: if a section had a full-width div that should remain full-width, but its internal text centered */
    }

    .footer-logo {
        justify-content: center; /* Center the logo and its accompanying text block */
    }

    .footer-links {
        display: inline-block; /* Allows the ul to be centered as a block */
        text-align: left;    /* Keeps the text within list items left-aligned */
        padding-left: 0; /* Explicitly remove padding if browser defaults add any */
    }

    .footer-section .social-links {
        justify-content: center; /* Ensures icons within .social-links are centered */
    }

    .footer-section p {
        /* Paragraphs like the company description will naturally center due to inherited text-align: center */
        /* No specific change needed unless a different alignment is desired for them on mobile */
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

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

.video-container {
    background: none;
    border: none;
    padding: 0;
}

.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #E0F2F1; /* Light teal background, consistent with about section */
}

.testimonial-slider-container {
    position: relative;
    min-height: 280px; /* Adjust as needed based on content */
    margin-bottom: 30px;
    overflow: hidden; /* Ensures only one card is visible if not using flex/grid for cards directly */
}

.testimonial-card {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(25, 94, 99, 0.1);
    border: 1px solid #B2DFDB; /* Light teal border */
    position: absolute; /* For slider functionality */
    width: 100%;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #37474F; /* Darker grey for text */
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.testimonial-text::before {
    content: '\201C'; /* Left double quotation mark */
    font-size: 3rem;
    color: #81D4FA; /* Accent color */
    position: absolute;
    left: -10px;
    top: -10px;
    opacity: 0.7;
}

.testimonial-text::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #81D4FA;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #195E63; /* Main theme color */
    margin-bottom: 10px;
}

.testimonial-rating i {
    color: #FFC107; /* Gold color for stars */
    margin: 0 2px;
}

.testimonial-dots {
    text-align: center;
}

.testimonial-dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #CFD8DC;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: #5C6BC0; /* Theme accent color */
    transform: scale(1.2);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    .testimonial-text {
        font-size: 1rem;
    }
    .testimonial-text::before {
        font-size: 2.5rem;
        left: -5px;
        top: -5px;
    }
}

/* Add this after the global styles */
img {
    box-shadow: 0 10px 30px rgba(25, 94, 99, 0.15);
    transition: all 0.3s ease;
}

img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(25, 94, 99, 0.25);
}

/* Update gallery section images */
.gallery-section img {
    box-shadow: 0 15px 35px rgba(25, 94, 99, 0.2);
}

.gallery-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(25, 94, 99, 0.3);
}

/* Update about section image */
.about-image img {
    box-shadow: 0 20px 40px rgba(25, 94, 99, 0.15);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(25, 94, 99, 0.25);
}

/* Add these media queries at the end of the file */
@media (max-width: 768px) {

    .container {
        padding: 0 5px;
    }

    .header-content {
        gap: 2px;
        padding: 0 10px;
    }

    .nav-toggle {
        margin-left: auto;
        margin-right: 10px;
    }

    .logo {
        margin-right: auto;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: white;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #195E63 0%, #5C6BC0 100%);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }
}

/* Our Team Section */
.team {
    padding: 100px 0 80px;
    background: #F5F8FA;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.team-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(25,94,99,0.08), 0 1.5px 6px rgba(92,107,192,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s, box-shadow 0.25s;
    padding: 32px 20px 24px;
    position: relative;
}
.team-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(25,94,99,0.16), 0 3px 12px rgba(92,107,192,0.12);
}
.team-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #81D4FA;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(25,94,99,0.10);
    background: #e0f2f1;
}
.team-info h3 {
    font-size: 1.25rem;
    color: #195E63;
    margin-bottom: 6px;
    font-weight: 600;
    text-align: center;
}
.team-role {
    font-size: 1rem;
    color: #5C6BC0;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center;
}
.team-desc {
    font-size: 0.98rem;
    color: #444;
    text-align: center;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .team {
        padding: 70px 0 50px;
    }
    .team-grid {
        gap: 24px;
    }
    .team-card {
        padding: 22px 10px 18px;
    }
    .team-img {
        width: 90px;
        height: 90px;
    }
    .team-info h3 {
        font-size: 1.08rem;
    }
    .team-role {
        font-size: 0.95rem;
    }
    .team-desc {
        font-size: 0.93rem;
    }
}

@media (max-width: 600px) {
  .clinic-name {
    font-size: 1.1rem !important;
    margin-bottom: 0 !important;
    white-space: normal;
    max-width: 70vw;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.15;
    display: block;
  }
  .header-content {
    flex-wrap: nowrap !important;
  }
  .logo {
    gap: 8px !important;
  }
}

.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 30, 40, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  transition: opacity 0.3s;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  background: #fff;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.lightbox-close:hover {
  color: #81D4FA;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 2.8rem;
  color: #fff;
  background: rgba(25,94,99,0.4);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  z-index: 10001;
  transform: translateY(-50%);
  transition: background 0.2s, color 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: #5C6BC0;
  color: #fff;
}
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
@media (max-width: 600px) {
  .lightbox-img {
    max-width: 98vw;
    max-height: 60vh;
  }
  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 2rem;
  }
  .lightbox-prev, .lightbox-next {
    width: 36px;
    height: 36px;
    font-size: 2rem;
    left: 10px;
    right: 10px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}