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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2d5016;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-logo span {
    color: #7cb342;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #7cb342;
}

.cta-btn {
    background: #7cb342;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #689f38;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #7cb342;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-tagline {
    font-size: 1.05rem;
    color: #7cb342;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #7cb342, #689f38);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.cta-button i {
    margin-right: 0.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #7cb342, #689f38);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.3);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Specialty Section */
.specialty {
    padding: 5rem 0;
    background: white;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.specialty-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.specialty-item:hover {
    transform: translateY(-5px);
    border-color: #7cb342;
    box-shadow: 0 10px 25px rgba(124, 179, 66, 0.15);
}

.specialty-item i {
    font-size: 2.5rem;
    color: #7cb342;
    margin-bottom: 1rem;
}

.specialty-item h3 {
    color: #2d5016;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: #7cb342;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #7cb342;
    box-shadow: 0 10px 25px rgba(124, 179, 66, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: #7cb342;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #2d5016;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

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

.about-text h2 {
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    color: #7cb342;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credential-item i {
    color: #7cb342;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.about-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #7cb342, #689f38);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    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: #7cb342;
}

.submit-btn {
    background: linear-gradient(135deg, #7cb342, #689f38);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 179, 66, 0.3);
}

.whatsapp-section {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.whatsapp-section h3 {
    color: #2d5016;
    margin-bottom: 0.5rem; /* Reduced from 2rem */
}

.qr-code-img {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    margin: 0 auto 0.5rem;
    display: block;
    object-fit: contain;
}

.whatsapp-qr p {
    margin-bottom: 1.5rem;
    margin-top: 0; /* Ensure no top margin */
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2d5016;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #7cb342;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #7cb342;
}

.footer-section a[href^="mailto:"] {
    color: white;
    text-decoration: none;
    display: inline;
}

.footer-section a[href^="mailto:"]:hover {
    color: #0b08bc;
    text-decoration: underline;
}

.footer-section a[href*="instagram"] {
    color: white;
    text-decoration: none;
    display: inline;
}

.footer-section a[href*="instagram"]:hover {
    color: #e4405f;
    text-decoration: underline;
}

.footer-section a[href*="youtube"] {
    color: white;
    text-decoration: none;
    display: inline;
}

.footer-section a[href*="youtube"]:hover {
    color: #ff0000;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .specialty-grid,
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ensure hero images scale properly on tablet screens */
    .hero-image {
        max-width: 250px !important;
        max-height: 250px !important;
    }
    
    .hero-image img {
        max-width: 250px !important;
        max-height: 250px !important;
        object-fit: cover !important;
    }
    
    /* Ensure about images scale properly on tablet screens */
    .about-image {
        max-width: 220px !important;
        max-height: 220px !important;
    }
    
    .about-image img {
        max-width: 220px !important;
        max-height: 220px !important;
        object-fit: cover !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    /* Ensure hero images scale properly on small screens */
    .hero-image {
        max-width: 200px !important;
        max-height: 200px !important;
    }
    
    .hero-image img {
        max-width: 200px !important;
        max-height: 200px !important;
        object-fit: cover !important;
    }
    
    /* Ensure about images scale properly on small screens */
    .about-image {
        max-width: 200px !important;
        max-height: 200px !important;
    }
    
    .about-image img {
        max-width: 200px !important;
        max-height: 200px !important;
        object-fit: cover !important;
    }
}

/* Health Info Page Styles */
.health-info-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 100px 0 40px;
    text-align: center;
}

.health-info-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.health-info-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.health-content {
    padding: 40px 0 80px;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.health-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.health-card:hover {
    transform: translateY(-5px);
}

.health-card i {
    font-size: 3rem;
    color: #7cb342;
    margin-bottom: 1rem;
}

.health-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.nav-link.active {
    color: #7cb342 !important;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
}

.modal-scroll {
    padding: 2rem;
    overflow-y: auto;
    max-height: 80vh;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: sticky;
    top: 0;
    right: 0;
    z-index: 1001;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-left: auto;
    margin-bottom: -35px;
    margin-right: -17px;
    margin-top: -17px;
}

.close:hover {
    color: #7cb342;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .close {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

.modal-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin: 1rem auto;
    display: block;
}

.modal-text {
    margin-top: 1.5rem;
}

.modal-text h3 {
    color: #7cb342;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .health-info-hero h1 {
        font-size: 2.5rem;
    }
    
    .health-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-scroll {
        padding: 1.5rem;
    }
    
    .modal-image {
        height: 200px;
    }
}
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Mobile touch feedback */
@media (max-width: 768px) {
    .logo-img:active {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* Success Stories Page Styles */
.success-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.success-hero h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

.success-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stars {
    margin-bottom: 2rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 0 0.2rem;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    quotes: """ """ "'" "'";
}

.testimonial-author h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #666;
    margin-bottom: 1rem;
}

.achievement {
    background: #7cb342;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

@media (max-width: 768px) {
    .success-hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin: 0 1rem 2rem 1rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1.1rem;
    }
}

section, #about, #services, #book, #contact {
    scroll-margin-top: 80px;
}

/* Improve mobile scroll margin */
@media (max-width: 768px) {
    section, #about, #services, #book, #contact {
        scroll-margin-top: 90px; /* Smaller margin for mobile navbar */
    }
    
    /* Ensure form inputs are mobile-friendly */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-appearance: none;
    }
    
    /* Better mobile button spacing */
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 44px; /* iOS touch target minimum */
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    position: relative;
}

.notification-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.notification-content i {
    font-size: 18px;
    flex-shrink: 0;
}

.notification-content span {
    flex: 1;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Form loading state */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .fa-spinner {
    margin-right: 8px;
}

/* Human Verification Styles */
.verification-group {
    margin-bottom: 20px;
}

.verification-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.verification-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    border: 2px solid #7cb342;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(124, 179, 66, 0.1);
    flex-shrink: 0;
}

.verification-container:hover {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-color: #689f38;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.2);
    transform: translateY(-1px);
}

.verification-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    font-weight: 500;
    color: #2d5016;
    width: 100%;
    flex-wrap: wrap;
}

.verification-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #7cb342;
    border-radius: 4px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(124, 179, 66, 0.2);
}

.verification-label input[type="checkbox"]:checked + .checkmark {
    background: #7cb342;
    border-color: #689f38;
    box-shadow: 0 2px 6px rgba(124, 179, 66, 0.4);
}

.verification-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.verification-text {
    font-size: 16px;
    color: #2d5016;
    font-weight: 600;
}

/* Error message styles */
.verification-error {
    display: none;
    align-items: center;
    gap: 6px;
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    animation: fadeIn 0.3s ease-in;
    opacity: 1;
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(220, 53, 69, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #dc3545;
}

.verification-error i {
    color: #dc3545;
    font-size: 12px;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .verification-wrapper {
        gap: 10px;
    }
    
    .verification-container {
        padding: 10px 12px;
    }
    
    .verification-label {
        font-size: 15px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .checkmark {
        width: 22px;
        height: 22px;
    }
    
    .verification-label input[type="checkbox"]:checked + .checkmark::after {
        font-size: 14px;
    }
    
    .verification-error {
        font-size: 12px;
        padding: 3px 6px;
    }
}

/* Focus states for accessibility */
.verification-label:focus-within .verification-container {
    border-color: #689f38;
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.3);
}

/* Animation for error message */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image popup styles for better mobile experience */
.image-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
}

.image-popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-popup-img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.image-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #7cb342;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
    transition: all 0.3s ease;
}

.image-popup-close:hover {
    background: #689f38;
    transform: scale(1.1);
}

/* Mobile responsive adjustments for image popup */
@media (max-width: 768px) {
    .image-popup-overlay {
        padding: 10px;
    }
    
    .image-popup-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: -10px;
        right: -10px;
    }
    
    .image-popup-img {
        border-radius: 10px;
        max-width: 95vw;
        max-height: 95vh;
    }
}

@media (max-width: 480px) {
    .image-popup-overlay {
        padding: 5px;
    }
    
    .image-popup-close {
        width: 30px;
        height: 30px;
        font-size: 18px;
        top: -8px;
        right: -8px;
    }
    
    .image-popup-img {
        max-width: 98vw;
        max-height: 98vh;
    }
}



