/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

:root {
  --primary-green: #007F24;
  --white: #FFFFFF;
  --text-dark: #1B1B1B;
  --lime-accent: #D8E61D;
  --red-accent: #D32F2F;
  --soft-beige: #F5F5DC;
}

#cimage{
    border: 2px solid white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-list a:hover {
    color: #2E7D32;
}

.nav-list a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-menu a i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
    background: #E8F5E9;
    color: #2E7D32;
    padding-left: 2rem;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.contact-btn {
    background: #2E7D32;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.contact-btn:hover {
    background: #1B5E20;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #2E7D32;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #161716 0%, #499150 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #c8c4c4;
    margin-bottom: 2rem;
}

.email-signup {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.profiles {
    display: flex;
    gap: 0.5rem;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2E7D32;
    border: 2px solid white;
}

.stars {
    display: flex;
    gap: 0.2rem;
    color: #FFD700;
}

.rating-text {
    color: #ffffff;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #2E7D32;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1B5E20;
}

.btn-secondary {
    background: white;
    color: #2E7D32;
    border: 2px solid #2E7D32;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2E7D32;
    color: white;
}

.hero-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.doctor-img {
    width: 200px;
    height: 300px;
    border-radius: 20px;
    background: #2E7D32;
    position: relative;
}

.doctor-1 {
    border-radius: 20px 20px 0 0;
}

.doctor-2 {
    border-radius: 20px 0 0 20px;
    margin-top: 2rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Service Card Flip Styles */
.service-card {
    perspective: 1000px;
    height: 400px;
    margin-bottom: 1rem;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.service-card:hover .service-card-inner,
.service-card.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card-front {
    background: white;
    display: flex;
    flex-direction: column;
}

.service-card-back {
    background: #2E7D32;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.service-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-title {
    padding: 1.5rem;
    background: white;
}

.service-title h3 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.service-card-back .service-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-card-back h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card-back p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card-back .service-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card-back .service-link:hover {
    background: white;
    color: #2E7D32;
    transform: scale(1.05);
}

/* Service card loading animation */
.service-card {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2E7D32;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-cta .btn:hover {
    background: #1B5E20;
    transform: translateY(-2px);
}

/* Responsive adjustments for flip cards */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card {
        height: 350px;
    }
    
    .service-card-back {
        padding: 1.5rem;
    }
    
    .service-card-back h3 {
        font-size: 1.1rem;
    }
    
    .service-card-back p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        height: 320px;
    }
    
    .service-card-back {
        padding: 1rem;
    }
    
    .service-card-back .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card-back h3 {
        font-size: 1rem;
    }
    
    .service-card-back p {
        font-size: 0.85rem;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(53deg, #161716 0%, #499150 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #e3eae4;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #d4d4d4;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cbc9c9;
}

.features-list i {
    color: #2E7D32;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    height: 400px;
    background: #FFD700;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.medical-icon {
    font-size: 3rem;
    color: #2E7D32;
    margin-bottom: 2rem;
}

.hand-graphic {
    width: 200px;
    height: 200px;
    background: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

/* Founder Section */
.founder {
    padding: 80px 0;
    background: white;
}

.founder .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.founder .section-header h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.founder .qualifications {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.founder-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.founder-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.founder-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.founder-description p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.specifications {
    background: #2E7D32;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.specifications h3 {
    color: #e4e6e4;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.spec-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.spec-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.spec-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.spec-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #2E7D32;
    position: relative;
    overflow: hidden;
}

.why-choose-us::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-us .section-header h2 {
    color: #cfe6d0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.why-choose-us .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #c8c4c4;
    border-radius: 2px;
}

.why-choose-us .section-description {
    color: #d4d4d4;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 120px;   /* bigger circle */
    height: 120px;  /* bigger circle */
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 4px solid #2E7D32; /* slightly thicker border */
    overflow: hidden; /* ensures image fits inside circle */
}

.why-choose-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* image fully covers circle */
    border-radius: 50%; /* ensures image stays circular */
    transition: all 0.3s ease;
}
.why-choose-card:hover .card-icon img {
    filter: brightness(0.9); /* slight effect instead of total invert */
}
.why-choose-card h3 {
    color: #2E7D32;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.why-choose-card:hover h3 {
    color: #1B5E20;
}

.why-choose-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.why-choose-card:hover p {
    color: #555;
}

/* FAQ Section Animation */
.why-choose-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease, opacity 0.6s ease, transform 0.6s ease;
}

.why-choose-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for FAQ cards */
.why-choose-card:hover .card-icon {
    animation: pulse 0.6s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading animation for FAQ section */
.why-choose-us .section-header {
    animation: slideInDown 0.8s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: #FFD700;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    transition: transform 0.3s ease;
}

.trust-icon i {
    font-size: 1.5rem;
    color: #2E7D32;
}

.number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #FFD700;
    color: #2E7D32;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #E8F5E9;
}

.arrow {
    color: white;
    font-size: 1.5rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #E8F5E9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #2E7D32;
    margin: 0 auto 1rem;
}

.team-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #2E7D32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.team-social a:hover {
    background: #1B5E20;
}

.team-cta {
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-text h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 2rem;
}

.faq-accordion {
    margin-bottom: 2rem;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    color: #333;
    font-size: 1.1rem;
}

.faq-question i {
    color: #2E7D32;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.faq-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.confused-woman {
    width: 300px;
    height: 400px;
    background: #E8F5E9;
    border-radius: 20px;
    position: relative;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #2E7D32;
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}
/* Ensure images fill their containers without distortion */
.hero-images img,
.service-image img,
.about-image img,
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit; /* preserve parent’s border radius */
  display: block;
}


.testimonial-card {
    background: white;
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 400px;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testimonial-profile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2E7D32;
    flex-shrink: 0;
}

.testimonial-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.slider-btn {
    background: white;
    color: #2E7D32;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: #E8F5E9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 2rem;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E7D32;
}

.form-group i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-contact {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #f0f0f0;
    border: #007F24 8px solid;
    position: relative;
}

/* Footer */
.footer {
    background: linear-gradient(0deg, #161716 0%, #499150 100%);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    color: #d6edd9;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #d8d8d8;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #2E7D32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #1B5E20;
}

.footer-column h4 {
    color: #d0eac6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #fbfbfb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2E7D32;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content,
    .faq-content,
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
        gap: 1rem;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 1rem;
        margin-left: 1rem;
        border-radius: 5px;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .email-signup {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-images {
        margin-top: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .doctor-img {
        width: 150px;
        height: 200px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us .section-header h2 {
        font-size: 2rem;
    }
    
    .why-choose-us .section-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .why-choose-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon img {
        width: 35px;
        height: 35px;
    }
    
    .why-choose-card h3 {
        font-size: 1.2rem;
    }
    
    .founder-image {
        height: 250px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .testimonial-card {
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-text h2,
    .contact-form h2,
    .faq-text h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .rating-section {
        justify-content: center;
    }
    
    .trust-item {
        min-width: 150px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-icon i {
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
    }
    
    .dropdown-menu {
        margin-left: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .nav-list {
        padding: 1.5rem;
    }
    
    .nav-list a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    .why-choose-us {
        padding: 40px 0;
    }
    
    .why-choose-us .section-header h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-us .section-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .why-choose-card {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .card-icon img {
        width: 30px;
        height: 30px;
    }
    
    .why-choose-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .why-choose-card p {
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for service cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.service-card:hover,
.team-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Additional responsive improvements */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .services,
    .about,
    .team,
    .why-choose-us,
    .faq,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .doctor-img {
        width: 120px;
        height: 160px;
    }
    
    .email-signup {
        gap: 0.8rem;
    }
    
    .email-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .rating-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .profiles {
        justify-content: center;
    }
    
    .stars {
        justify-content: center;
    }
    
    .rating-text {
        text-align: center;
    }

    .contact-btn{
        display: none;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-btn,
    .contact-btn,
    .btn-primary,
    .btn-secondary,
    .slider-controls,
    .social-icons {
        display: none !important;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
} 

/* Enhanced Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(40px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes slideInLeft {
  from { 
    opacity: 0; 
    transform: translateX(-50px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes slideInRight {
  from { 
    opacity: 0; 
    transform: translateX(50px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Animation Classes */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 1s ease-out forwards;
}

.animate-slide-left {
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
}

.animate-slide-right {
  opacity: 0;
  animation: slideInRight 1s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced hover effects */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.trust-item:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.spec-item:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Staggered animation delays */
.animate-fade-in[style*="animation-delay"],
.animate-slide-up[style*="animation-delay"] {
  animation-delay: var(--delay, 0s);
}

/* Enhanced button animations */
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Enhanced image animations */
.about-image img,
.founder-image img {
  transition: transform 0.3s ease;
}

.about-image:hover img,
.founder-image:hover img {
  transform: scale(1.05);
}

/* Enhanced icon animations */
.trust-icon i,
.spec-item:hover .spec-number {
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon i {
  transform: scale(1.2);
  color: var(--primary-green);
}

.spec-item:hover .spec-number {
  transform: scale(1.1);
  color: var(--primary-green);
} 

/* Gallery Styles */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Mobile responsive gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 180px;
    }
} 