:root {
    --primary-green: #2e7d32;
    --secondary-orange: #ff9800;
    --light-green: #e8f5e9;
    --light-orange: #fff3e0;
    --dark-green: #1b5e20;
    --dark-orange: #f57c00;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #424242;
    --text-color: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-orange);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-orange);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    display: inline-block;
}

.section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-right: 10px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.logo-text span {
    color: var(--secondary-orange);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
    position: relative;
}

nav ul li a {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-orange);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li {
    margin: 0;
    border-bottom: 1px solid var(--medium-gray);
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content li a {
    display: block;
    padding: 12px 15px;
}

.dropdown-content li a:hover {
    background-color: var(--light-green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white);
    max-width: 600px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-highlights {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    margin: 10px;
    box-shadow: var(--shadow);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.highlight-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-green);
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-orange);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.read-more {
    color: var(--secondary-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Service Detail Page */
.service-detail {
    padding-top: 120px;
    min-height: 100vh;
}

.service-header {
    background-color: var(--light-green);
    padding: 60px 0;
    text-align: center;
}

.service-header h1 {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.service-body {
    padding: 60px 0;
}

.service-info {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.service-description {
    flex: 1;
}

.service-image-large {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
}

.feature-item h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.faq-section {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    margin: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

/* Team Section */
.team {
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
}

.member-role {
    color: var(--secondary-orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-qualifications {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 125, 50, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    background-color: var(--primary-green);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-orange);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--secondary-orange);
    padding-left: 5px;
}

.footer-contact .contact-item {
    margin-bottom: 15px;
}

.footer-contact .contact-icon {
    background-color: transparent;
    border: 1px solid var(--secondary-orange);
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow);
    z-index: 100;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about-content,
    .contact-container,
    .service-info {
        flex-direction: column;
    }
    
    .mission-vision {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-left: 15px;
        margin-top: 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-highlights {
        flex-direction: column;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}
/* Fix dropdown to be vertical */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1;
    display: block; /* Ensure it's block, not flex */
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li {
    margin: 0;
    border-bottom: 1px solid var(--medium-gray);
    display: block; /* Force block display */
    width: 100%;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content li a {
    display: block;
    padding: 12px 15px;
    width: 100%;
}

.dropdown-content li a:hover {
    background-color: var(--light-green);
}

/* Remove any flex display from dropdown content */
nav ul ul {
    display: block;
}
/* Hero Slider Controls */
/* Hero Slider Controls - Side Positioning */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none; /* Allows clicks to pass through to buttons */
}

.slider-prev, .slider-next {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* Make buttons clickable */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--white);
    color: var(--sky-blue);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    pointer-events: auto;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background-color: var(--secondary-orange);
    transform: scale(1.3);
    border-color: var(--white);
}

.dot:hover {
    background-color: var(--white);
    transform: scale(1.2);
}

.slider-prev, .slider-next {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--secondary-orange);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-orange);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--white);
}
:root {
    --primary-green: #27ae60; /* Brighter lime green */
    --secondary-orange: #ff9800; /* Keep orange as accent */
    --sky-blue: #3498db; /* Sky blue for highlights */
    --light-green: #d5f4e6; /* Lighter green */
    --light-blue: #e3f2fd; /* Sky blue tint */
    --dark-green: #1e8449; /* Darker green */
    --dark-orange: #f57c00;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --dark-gray: #424242;
    --text-color: #2c3e50; /* Darker text for better contrast */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Remove margin-top from hero to touch navbar */
.hero {
    height: 100vh;
    position: relative;
    margin-top: 0; /* Changed from 80px to 0 */
    overflow: hidden;
}

/* Update header to be transparent on hero section */
header {
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent */
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

/* Add sky blue accents to various elements */
.highlight-item {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    margin: 10px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--sky-blue); /* Sky blue accent */
}

.btn-primary {
    background-color: var(--primary-green); /* Lime green */
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(39, 174, 96, 0.3);
}

.btn-secondary {
    background-color: var(--sky-blue); /* Sky blue */
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #2980b9; /* Darker sky blue */
    transform: translateY(-2px);
}

/* Update section backgrounds with new colors */
.about, .team, .contact {
    background-color: var(--light-gray);
}

/* Add sky blue accents to headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--sky-blue); /* Changed from orange to sky blue */
}

/* Update value cards with new color scheme */
.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--sky-blue);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--sky-blue); /* Sky blue icons */
    margin-bottom: 20px;
}
/* Logo with image */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px; /* Bigger logo */
    width: auto;
    margin-right: 10px;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem; /* Slightly bigger text */
    color: var(--primary-green);
}

.logo-text span {
    color: var(--sky-blue); /* Sky blue for "Medical" */
}

/* For footer logo */
.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-text span {
    color: var(--sky-blue);
}
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* Subtle watermark pattern */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 Q50,5 80,20 T100,50 Q85,80 50,100 T20,80 Q5,50 20,20" fill="none" stroke="%233498db" stroke-width="0.5" opacity="0.05"/></svg>');
    background-size: 200px;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}
/* Sky blue accents in service cards */
.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid var(--sky-blue);
}

/* Lime green hover effects */
.read-more {
    color: var(--primary-green); /* Lime green */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: var(--sky-blue); /* Sky blue on hover */
}

/* Contact form focus with new colors */
.form-control:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Social links with new colors */
.social-links a:hover {
    background-color: var(--sky-blue);
    transform: translateY(-3px);
}

/* WhatsApp button pulse with new colors */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7); /* Sky blue pulse */
    }
    70% {
        box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}
.hero-content {
    color: var(--white);
    max-width: 600px;
    padding: 0 80px; /* Increased padding for side controls */
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 5;
}

/* Ensure controls are above slides but below content if needed */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-controls {
    z-index: 3; /* Above slides but can be below content */
}
/* Make controls stand out more */
.slider-prev, .slider-next {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.slider-prev:hover, .slider-next:hover {
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border-color: var(--sky-blue);
    color: var(--sky-blue);
}

/* Add responsive styles for controls */
@media (max-width: 768px) {
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 0 60px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-prev, .slider-next {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}
/* Hero Slider Controls - Side Arrows */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-prev, .slider-next {
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--white);
    color: var(--sky-blue);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Progress Dots Container at Bottom */
.slider-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Individual Progress Dot */
.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.progress-dot.active {
    background-color: var(--secondary-orange);
    transform: scale(1.2);
}

/* Animated Progress Bar inside dot */
.progress-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: left 5s linear;
}

.progress-dot.active::after {
    left: 0;
}

/* Reset animation when switching slides */
.progress-dot:not(.active)::after {
    left: -100%;
}

/* Hover effect */
.progress-dot:hover {
    background-color: var(--white);
    transform: scale(1.3);
}

/* Alternative: Progress Bar Style */
.slider-progress-bar {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    z-index: 10;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--secondary-orange);
    transition: width 5s linear;
}

/* Responsive styles */
@media (max-width: 768px) {
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-progress {
        bottom: 15px;
        padding: 8px 12px;
    }
    
    .progress-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-progress-bar {
        width: 150px;
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-prev, .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .slider-progress {
        bottom: 10px;
        padding: 6px 10px;
        gap: 6px;
    }
    
    .progress-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-progress-bar {
        width: 120px;
        bottom: 15px;
    }
}
/* Alternative Progress Dot with CSS Animation */
.progress-dot.active {
    position: relative;
    overflow: hidden;
}

.progress-dot.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-orange);
    border-radius: 50%;
    animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}
/* Really Big Logo */
.logo {
    height: 100%; /* Take full header height */
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px; /* REALLY BIG - fills header */
    width: auto;
    max-height: 80px; /* Limit maximum size */
    transition: transform 0.3s ease;
    border-radius: 10px;
}

/* Hover Effect - Makes it even bigger */
.logo:hover .logo-img {
    transform: scale(1.15);
}

/* Adjust header to accommodate big logo */
.header-container {
    padding: 5px 0; /* Reduce padding for more logo space */
    height: 80px; /* Fixed height */
    display: flex;
    align-items: center;
}

/* Push nav to the right to make room for big logo */
nav {
    margin-left: auto; /* Pushes nav to the right */
}

/* Mobile - still big but proportional */
@media (max-width: 768px) {
    .logo-img {
        height: 60px; /* Still big on mobile */
        max-height: 70px;
    }
    
    .header-container {
        height: 70px; /* Slightly smaller header */
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 50px; /* Big but fits mobile */
    }
}
/* Additional orange accents for new pages */

/* Orange highlight for service headers */
.service-header {
    background: linear-gradient(135deg, var(--light-orange), rgba(255, 255, 255, 0.9));
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-orange), var(--dark-orange));
}

/* Orange accent for lists */
.service-benefits ul li::before {
    content: '✓';
    color: var(--secondary-orange);
    font-weight: bold;
    margin-right: 10px;
}

/* Orange gradient buttons for service pages */
.service-body .btn-primary {
    background: linear-gradient(135deg, var(--secondary-orange), var(--dark-orange));
    border: none;
}

.service-body .btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-orange), #e65100);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 152, 0, 0.4);
}

/* Orange accent for service images */
.service-image-large {
    position: relative;
}

.service-image-large::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-orange), transparent);
}
/* ============================================
   MISSION & VISION SECTION
   ============================================ */

.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-vision-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #4caf50);
}

.mission-box {
    text-align: center;
    padding: 35px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mission-icon {
    font-size: 2.8rem;
    color: #2e7d32; /* Professional green */
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(46, 125, 50, 0.03));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.mission-box:hover .mission-icon {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(46, 125, 50, 0.08));
    transform: scale(1.05);
}

.mission-box h3 {
    color: #1b5e20; /* Dark green */
    margin-bottom: 18px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.mission-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #4caf50; /* Medium green */
}

.mission-box p {
    color: #424242; /* Dark gray */
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ============================================
   CORE VALUES SECTION
   ============================================ */

.core-values {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 80px 0;
    position: relative;
}

.core-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #81c784);
}

.core-values .section-title h2 {
    color: #1b5e20;
}

.core-values .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: #4caf50;
}

.core-values .section-title p {
    color: #616161;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #4caf50);
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.6rem;
    color: #2e7d32; /* Professional green */
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(46, 125, 50, 0.03));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(46, 125, 50, 0.08));
    transform: scale(1.08);
}

.value-card h3 {
    color: #1b5e20; /* Dark green */
    margin-bottom: 18px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 12px;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #4caf50; /* Medium green */
    transition: var(--transition);
}

.value-card:hover h3::after {
    width: 60px;
}

.value-card p {
    color: #616161; /* Medium gray */
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px;
        margin: 50px 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }
    
    .value-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .mission-vision-container {
        margin: 40px 0;
        padding: 35px;
    }
    
    .mission-box {
        padding: 30px 25px;
    }
    
    .mission-icon {
        width: 75px;
        height: 75px;
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 75px;
        height: 75px;
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .mission-vision-container {
        padding: 25px;
        margin: 35px 0;
    }
    
    .mission-box {
        padding: 25px 20px;
    }
    
    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .mission-box h3 {
        font-size: 1.3rem;
    }
    
    .mission-box p {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
    }
    
    .core-values {
        padding: 60px 0;
    }
}
/* Optional: Subtle fade-in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-box {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.mission-box:nth-child(1) { animation-delay: 0.1s; }
.mission-box:nth-child(2) { animation-delay: 0.2s; }

.value-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
/* ============================================
   MISSION & VISION SECTION WITH BLUE ACCENTS
   ============================================ */

.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-vision-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #2196f3, #4caf50); /* Green to blue to green */
}

.mission-box {
    text-align: center;
    padding: 35px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0));
    transition: all 0.4s ease;
    z-index: 0;
}

.mission-box:hover::before {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.03), rgba(33, 150, 243, 0.01));
}

.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.1);
}

.mission-icon {
    font-size: 2.8rem;
    color: #2e7d32; /* Professional green */
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(46, 125, 50, 0.03));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    z-index: 1;
}

.mission-box:hover .mission-icon {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(46, 125, 50, 0.08));
    color: #2196f3; /* Blue on hover */
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.2);
}

.mission-box h3 {
    color: #1b5e20; /* Dark green */
    margin-bottom: 18px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.mission-box:hover h3 {
    color: #1565c0; /* Darker blue on hover */
}

.mission-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #4caf50; /* Medium green */
    transition: all 0.4s ease;
}

.mission-box:hover h3::after {
    background-color: #2196f3; /* Blue on hover */
    width: 70px;
    transform: translateX(-50%) scaleX(1.2);
}

.mission-box p {
    color: #424242; /* Dark gray */
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.mission-box:hover p {
    color: #37474f; /* Slightly blue-gray on hover */
}

/* ============================================
   CORE VALUES SECTION WITH BLUE ACCENTS
   ============================================ */

.core-values {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 80px 0;
    position: relative;
}

.core-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #2196f3, #81c784);
}

.core-values .section-title h2 {
    color: #1b5e20;
    transition: color 0.3s ease;
}

.core-values:hover .section-title h2 {
    color: #1565c0; /* Blue on section hover */
}

.core-values .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: #4caf50;
    transition: all 0.4s ease;
}

.core-values:hover .section-title h2::after {
    background-color: #2196f3; /* Blue on section hover */
    width: 80px;
}

.core-values .section-title p {
    color: #616161;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.core-values:hover .section-title p {
    color: #546e7a; /* Blue-gray on section hover */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0), rgba(33, 150, 243, 0));
    transition: all 0.4s ease;
    z-index: 0;
}

.value-card:hover::before {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.04), rgba(33, 150, 243, 0.02));
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #2196f3); /* Green to blue gradient */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.2);
}

.value-icon {
    font-size: 2.6rem;
    color: #2e7d32; /* Professional green */
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(46, 125, 50, 0.03));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2); /* Blue gradient */
    color: white;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

/* Different blue shades for different value icons */
.value-card:nth-child(1):hover .value-icon { /* Compassion */
    background: linear-gradient(135deg, #2196f3, #1976d2); /* Standard blue */
}

.value-card:nth-child(2):hover .value-icon { /* Integrity */
    background: linear-gradient(135deg, #42a5f5, #1e88e5); /* Lighter blue */
}

.value-card:nth-child(3):hover .value-icon { /* Quality */
    background: linear-gradient(135deg, #29b6f6, #0288d1); /* Sky blue */
}

.value-card:nth-child(4):hover .value-icon { /* Teamwork */
    background: linear-gradient(135deg, #4fc3f7, #039be5); /* Light blue */
}

.value-card:nth-child(5):hover .value-icon { /* Community Focus */
    background: linear-gradient(135deg, #5c6bc0, #3949ab); /* Indigo blue */
}

.value-card h3 {
    color: #1b5e20; /* Dark green */
    margin-bottom: 18px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover h3 {
    color: #1565c0; /* Dark blue on hover */
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #4caf50; /* Medium green */
    transition: all 0.4s ease;
}

.value-card:hover h3::after {
    background-color: #2196f3; /* Blue on hover */
    width: 70px;
    transform: translateX(-50%) scaleX(1.3);
}

.value-card p {
    color: #616161; /* Medium gray */
    line-height: 1.7;
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.value-card:hover p {
    color: #455a64; /* Blue-gray on hover */
}

/* ============================================
   BLUE GLOW EFFECTS
   ============================================ */

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(33, 150, 243, 0.5);
    }
}

.value-card:hover .value-icon {
    animation: subtleGlow 2s infinite;
}

.mission-box:hover .mission-icon {
    animation: subtleGlow 2s infinite;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px;
        margin: 50px 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }
    
    .value-card {
        padding: 35px 25px;
    }
    
    .mission-box:hover,
    .value-card:hover {
        transform: translateY(-5px);
    }
    
    .value-card:hover .value-icon {
        transform: scale(1.1) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .mission-vision-container {
        margin: 40px 0;
        padding: 35px;
    }
    
    .mission-box {
        padding: 30px 25px;
    }
    
    .mission-icon {
        width: 75px;
        height: 75px;
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 75px;
        height: 75px;
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .mission-vision-container {
        padding: 25px;
        margin: 35px 0;
    }
    
    .mission-box {
        padding: 25px 20px;
    }
    
    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .mission-box h3 {
        font-size: 1.3rem;
    }
    
    .mission-box p {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
    }
    
    .core-values {
        padding: 60px 0;
    }
    
    /* Reduce hover effects on mobile for better performance */
    .mission-box:hover,
    .value-card:hover {
        transform: translateY(-3px);
    }
    
    .value-card:hover .value-icon {
        transform: scale(1.08);
        animation: none;
    }
}
/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
    position: relative;
    padding: 100px 0;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)),
        url('YOUR-LOGO-OR-IMAGE-URL-HERE');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-choose-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
}

.why-choose-icon {
    font-size: 2.8rem;
    color: #2196f3; /* Blue color */
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.why-choose-item h3 {
    color: #1b5e20;
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.why-choose-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #4caf50;
    transition: all 0.3s ease;
}

.why-choose-item:hover h3::after {
    background-color: #2196f3;
    width: 60px;
}

.why-choose-item p {
    color: #455a64;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose-us {
        background-attachment: scroll;
        padding: 80px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .why-choose-item {
        padding: 30px 25px;
    }
    
    .why-choose-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-choose-item {
        padding: 25px 20px;
    }
    
    .why-choose-icon {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
    }
}
/* ============================================
   SERVICE PAGE IMAGE - SQUARE FORMAT
   ============================================ */

/* Make service image square */
.service-image-large {
    width: 400px; /* Fixed width */
    height: 400px; /* Fixed height - makes it square */
    flex: 0 0 auto; /* Don't grow or shrink */
}

/* Ensure image fills the square */
.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image fill the square without distortion */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-image-large {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .service-image-large {
        width: 300px;
        height: 300px;
        margin: 0 auto; /* Center on mobile */
    }
}

@media (max-width: 576px) {
    .service-image-large {
        width: 250px;
        height: 250px;
    }
}
