/* ============================
   Lakhera Homeopathy Centre
   Green Theme - Optimized CSS
=============================== */

/* -------- CSS Reset & Base -------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Green Palette */
    --primary-green: #2d6e3b;
    --secondary-green: #4caf50;
    --light-green: #4a8f5e;
    --dark-green: #1e4a27;
    --accent-green: #1ca085;
    --mint-green: #e8f5ea;
    --sage-green: #00bb06;
    --accent-gold: #d4a574;
    --accent-teal: #1ca085;


    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #9e9e9e;
    --dark-gray: #424242;
    --text-dark: #2c3e50;
    --neutral-gray-200: #e2e8e8;
    --neutral-gray-600: #4a5858;
    --neutral-gray-400: #9ba8a8;
    --neutral-gray-700: #353f3f;
    --error-red: #ef4444;
    --neutral-gray-50: #f8fafa;


    /* Shadows */
    --shadow: rgba(45, 125, 50, 0.1);
    --shadow-hover: rgba(45, 125, 50, 0.2);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Spacing & Layout */
    --container-max-width: 1200px;
    --section-padding: 3rem 0;
    --card-padding: 2rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --font-title: clamp(1.8rem, 5vw, 2.5rem);

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--white) 0%, var(--mint-green) 100%);
    min-height: 100vh;
}

/* -------- Container -------- */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* -------- Header Top -------- */
.header-top {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 10px var(--shadow);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-info a:hover {
    color: var(--accent-gold);
}

/* -------- Social Icons -------- */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

.social-icons img {
    width: 18px;
    height: 18px;
}

/* -------- Header Main -------- */
.header-main {
    background: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 20px;
}

/* -------- Logo -------- */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 15px;
}

.logo-container img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-hover);
}

.logo-text h1 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-text p {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 500;
}

/* -------- Navigation -------- */

.main-nav {
    transition: all 0.3s ease-in-out;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-green);
}

.main-nav a:hover::after {
    width: 100%;
}

/* -------- CTA Button -------- */
.book-now-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow-hover);
    transition: var(--transition-smooth);
    position: relative;
    display: inline-block;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 110, 59, 0.4);
}

.book-now-btn::after {
    display: none;
}










/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover span {
    background-color: var(--secondary-green);
}




.mg-carousel-content {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
    justify-content: center;
}

.mg-carousel-item img {
    width: 100%;
    height: 45vh;
    object-fit: fill;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}





/* Banner Section */
.static-banner {
    position: relative;
    overflow: hidden;
}

.banner-content img {
    width: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}









/* ===== Doctor Profile Section ===== */
#featured-doctor {
    padding: 1.5rem;
    background: var(--mint-green);
}

/* --- Section Title --- */
.section-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

/* --- Layout Wrapper --- */
.doctor-profile {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
}

/* --- Doctor Image --- */
.doctor-profile__image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 0 12px 30px rgba(45, 125, 50, 0.25);
    transition: var(--transition-smooth);
}

.doctor-profile__image:hover img {
    transform: scale(1.02);
}

.doctor-profile__name {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.doctor-profile__details p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: justify;
    line-height: 1.7;
}









/* Statistics Section */
.stats-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Subtle Background SVG Overlay */
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat;
    background-size: 50px 50px;
    animation: float 25s linear infinite;
    z-index: 0;
}

/* Floating Animation */
@keyframes float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-50px, -50px);
    }
}

/* Grid Container for Counters */
.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Individual Counter Box */
.counter {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Hover Effect for Counter */
.counter:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

/* Icon Styling */
.counter-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.counter:hover .counter-icon img {
    transform: scale(1.1) rotate(2deg);
}

/* Counter Number */
.counter-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-secondary);
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* Counter Title */
.counter-title {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    opacity: 0.9;
    color: var(--white);
}









.services {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    opacity: 0.05;
    border-radius: 0 0 50px 50px;
    z-index: -1;
}

.services-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.section-info-left .subtitle {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-teal);
    margin-bottom: 1rem;
    position: relative;
}

.section-info-left .subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
    border-radius: 2px;
}

.section-info-left .title {
    font-family: var(--font-secondary);
    font-size: var(--font-title);
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.section-info-right .description {
    font-size: 1.125rem;
    color: var(--neutral-gray-600);
    line-height: 1.7;
    font-weight: 400;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid var(--neutral-gray-200);
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-hover);
    border-color: var(--accent-teal);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 20px;
    background: linear-gradient(135deg, var(--mint-green), var(--neutral-gray-50));
    border-radius: 50%;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-green));
}

.service-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.service-card:hover h3 {
    color: var(--accent-teal);
}

.service-card p {
    color: var(--neutral-gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.service-card:hover p {
    color: var(--neutral-gray-700);
}

/* Mobile-first responsive design */
@media (max-width: 1024px) {
    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-info-left .subtitle::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
    }

    .services {
        padding: 2rem 0;
    }

    .section-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .section-info-left .title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }

    .section-info-right .description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .service-card .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 1.5rem 0;
    }

    .services-container {
        padding: 0 0.75rem;
    }

    .section-info {
        margin-bottom: 2rem;
    }

    .section-info-left .subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .section-info-left .title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        line-height: 1.3;
    }

    .section-info-right .description {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .service-card .icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        padding: 12px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 320px) {
    .services-container {
        padding: 0 0.5rem;
    }

    .service-card {
        padding: 1.25rem 0.75rem;
    }

    .section-info-left .title {
        font-size: 1.25rem;
    }

    .service-card .icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(even) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3n) {
    animation-delay: 0.2s;
}





/* Testimonials */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.section-title-container {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.carousel-arrow {
    position: absolute;
    top: 57%;
    transform: translateY(-50%);
    background: var(--secondary-green);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px var(--shadow);
}

.carousel-arrow:hover {
    background: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: 2rem;
}

.carousel-arrow-right {
    right: 2rem;
}











/* Awards Section */
#awards {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--white) 100%);
}

.awards-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.awards-container h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.awards-container>p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.awards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition-smooth);
    border-left: 5px solid var(--secondary-green);
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.award-item h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.award-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}









/* Floating Buttons */
.floating-button {
    position: fixed;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
}

.floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.floating-button.show {
    opacity: 1;
    visibility: visible;
}

.floating-button img {
    width: 35px;
    height: 35px;
}

.whatsapp-button {
    left: 25px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
}

#backToTop {
    right: 25px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
}










/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-about img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email {
    font-size: 15px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-gold);
}

.map-container iframe {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}











/* Responsive Design */
/* Devices ≤768px */
@media (max-width: 768px) {
    .header-container {
        padding: 10px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 20px var(--shadow);
        border-radius: 0 0 15px 15px;
        z-index: 1000;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .main-nav li,
    .main-nav a {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    }

    .logo-text h1 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .doctor-profile,
    .section-info,
    .awards-row,
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .title {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }


    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 92%;
        box-shadow: 0 3px 10px var(--shadow);
    }

    .carousel-arrow-left {
        left: 1rem;
    }

    .carousel-arrow-right {
        right: 1rem;
    }

    .floating-button {
        width: 50px;
        height: 50px;
        bottom: 1rem;
    }

    .whatsapp-button {
        left: 1rem;
    }

    #backToTop {
        right: 1rem;
    }
}

/* Devices ≤480px */
@media (max-width: 480px) {
    .header-top-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0;
    }

    .counter-wrapper,
    .service-cards {
        grid-template-columns: 1fr;
    }

    .doctor-profile {
        padding: 2rem 1rem;
    }

    .section-title,
    .title {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }
}









/* Appointment Form Section */
.appointment-form-section {
    max-width: 1400px;
    margin: 40px auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 110, 59, 0.1);
    overflow: hidden;
    position: relative;
}

.appointment-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-teal) 50%, var(--accent-gold) 100%);
}

.form-header {
    background: linear-gradient(135deg, var(--mint-green) 0%, rgba(232, 245, 234, 0.5) 100%);
    padding: 40px 40px 30px;
    text-align: center;
    border-bottom: 1px solid var(--neutral-gray-200);
}

.appointment-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.appointment-subtitle {
    font-size: 16px;
    color: var(--neutral-gray-600);
    font-weight: 500;
}

.form-content {
    display: flex;
    min-height: 600px;
}

.calendar-section {
    flex: 0 0 45%;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--mint-green) 0%, rgba(232, 245, 234, 0.3) 100%);
    border-right: 1px solid var(--neutral-gray-200);
}

.form-section {
    flex: 1;
    padding: 40px;
}

.calendar-header {
    text-align: center;
    margin-bottom: 24px;
}

.calendar-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.calendar-header p {
    color: var(--neutral-gray-600);
    font-size: 14px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--neutral-gray-700);
    font-size: 15px;
}

.required {
    color: var(--error-red);
    margin-left: 2px;
}

input,
select,
textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--neutral-gray-200);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(45, 110, 59, 0.1);
    transform: translateY(-1px);
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--light-green);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 18px 32px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 110, 59, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 110, 59, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Calendar Styles */
#calendar {
    margin-top: 20px;
    border-collapse: collapse;
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    table-layout: fixed;
}

#calendar thead {
    display: table-header-group;
}

#calendar tbody {
    display: table-row-group;
}

#calendar tr {
    display: table-row;
}

#calendar th,
#calendar td {
    display: table-cell;
}

#calendar th {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 16px 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 8px;
}

.calendar-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.calendar-nav button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.3);
}

.calendar-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#month-label {
    font-size: 16px;
    font-weight: 600;
}

#calendar td {
    border: 1px solid var(--neutral-gray-200);
    padding: 0;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 14.28%;
    height: 50px;
    vertical-align: middle;
    position: relative;
}

.day {
    cursor: pointer;
    position: absolute;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.day.current-month {
    color: var(--neutral-gray-700);
}

.day.other-month {
    color: var(--neutral-gray-400);
    cursor: default;
    opacity: 0.5;
}

.day.today {
    background: var(--accent-gold);
    color: var(--white);
    font-weight: 700;
}

.day.current-month:hover:not(.disabled) {
    background: var(--dark-green);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(228, 238, 230, 0.2);
}

.day.disabled {
    color: var(--neutral-gray-400);
    pointer-events: none;
    opacity: 0.4;
    cursor: not-allowed;
}

.day.selected {
    background: var(--primary-green);
    color: var(--white);
    font-weight: 700;
}

#appointment_selected {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 16px;
    text-align: center;
    padding: 16px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(45, 110, 59, 0.1);
    display: none;
}

/* Overview Section */
#overview {
    padding: 40px;
}

#overview h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 24px;
    text-align: center;
}

.overview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: var(--neutral-gray-50);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    font-weight: 500;
}

.overview-item span {
    color: var(--primary-green);
    font-weight: 600;
}









/* Popup */
#popup {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    z-index: 1000;
    box-shadow: 0 6px 25px rgba(45, 110, 59, 0.3);
    font-weight: 500;
    max-width: 90%;
    text-align: center;
}










/* Responsive Design */
@media (max-width: 1024px) {
    .form-content {
        flex-direction: column;
    }

    .calendar-section {
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--neutral-gray-200);
    }
}

@media (max-width: 768px) {

    .appointment-title {
        font-size: 28px;
    }

    .form-content {
        flex-direction: column;
    }

    .calendar-section,
    .form-section {
        padding: 30px 20px;
    }

    .form-header {
        padding: 30px 20px;
    }

    .appointment-form-section {
        margin: 20px;
        max-width: none;
    }

    #calendar th,
    #calendar td {
        padding: 8px 4px;
        font-size: 14px;
    }

    .day {
        min-height: 35px;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.appointment-form-section {
    animation: fadeInUp 0.6s ease-out;
}

.form-group {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) {
    animation-delay: 0.4s;
}

.form-group:nth-child(5) {
    animation-delay: 0.5s;
}

.form-group:nth-child(6) {
    animation-delay: 0.6s;
}

.form-group:nth-child(7) {
    animation-delay: 0.7s;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}









/* -------- About Lakhera Section -------- */
#about-lakhera {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

#about-lakhera::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(45, 110, 59, 0.05) 100%);
    z-index: 1;
}

.about-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-details h1 {
    font-size: var(--font-title);
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-details h2 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.about-details h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background-color: var(--secondary-green);
    border-radius: 2px;
}

.about-details h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.about-details p {
    margin-bottom: 1.2rem;
    color: var(--neutral-gray-600);
    line-height: 1.8;
    font-size: 1rem;
}

.about-details ul {
    list-style: none;
    margin: 1.5rem 0;
}

.about-details li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--neutral-gray-600);
    line-height: 1.6;
    transition: var(--transition-smooth);
}

.about-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    background-color: var(--mint-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.about-details li:hover {
    color: var(--primary-green);
    padding-left: 2.2rem;
}

.about-visual {
    position: relative;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(45deg, var(--secondary-green), var(--accent-teal));
    border-radius: 20px;
    z-index: -1;
}

.about-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px var(--shadow);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.about-visual img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px var(--shadow-hover);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.section-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.section-info h2 {
    font-size: 2.5rem;
    color: #2c5530;
    font-weight: 700;
    line-height: 1.2;
}

.section-info .description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #4a9d4e;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a9d4e, #6bb36f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* -------- Awards Section -------- */
#awards {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
}

#awards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--accent-teal));
    border-radius: 2px;
}

.awards-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.awards-container h2 {
    font-size: var(--font-title);
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.awards-container>p {
    color: var(--neutral-gray-600);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.awards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.award-item {
    background-color: var(--neutral-gray-50);
    padding: var(--card-padding);
    border-radius: 20px;
    border-left: 5px solid var(--secondary-green);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary-green), var(--accent-teal));
    border-radius: 0 20px 0 100%;
    opacity: 0.1;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow);
    border-left-color: var(--accent-teal);
}

.award-item:hover::before {
    opacity: 0.2;
}

.award-item h3 {
    color: var(--primary-green);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.award-item p {
    color: var(--neutral-gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* -------- Medical Gallery Carousel -------- */
.mg-carousel {
    padding: var(--section-padding);
    background-color: var(--neutral-gray-50);
    position: relative;
    overflow: hidden;
}

.mg-carousel::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--accent-teal));
}

.carousel-title {
    text-align: center;
    font-size: var(--font-title);
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.carousel-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-teal));
    margin: 1rem auto;
    border-radius: 2px;
}

.mg-carousel-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.mg-carousel-content::-webkit-scrollbar {
    height: 8px;
}

.mg-carousel-content::-webkit-scrollbar-track {
    background: var(--neutral-gray-200);
    border-radius: 4px;
}

.mg-carousel-content::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-teal));
    border-radius: 4px;
}

.mg-carousel-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
}

/* -------- Responsive Design -------- */
@media (max-width: 1024px) {
    .section-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual::before {
        display: none;
    }

    .awards-row {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {

    .about-details {
        padding: 20px;
        box-shadow: 0 15px 35px var(--shadow);
        border-radius: 10px;
    }

    .about-details h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-details h2 {
        font-size: 1.3rem;
        padding-left: 0;
        text-align: center;
    }

    .about-details h2::before {
        display: none;
    }

    .awards-row {
        grid-template-columns: 1fr;
    }

    .section-info-right .description::before {
        display: none;
    }

    .section-info-right .description {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .about-details h1 {
        font-size: 1.8rem;
    }

    .about-details h2 {
        font-size: 1.2rem;
    }

    .award-item {
        padding: 1.5rem;
    }

    .about-content {
        gap: 2rem;
    }

    .section-info {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
}


/* Green-Themed Conditions Section Styles */
.conditions-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.conditions-section::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="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
}

.conditions-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.conditions-header {
    text-align: center;
    margin-bottom: 60px;
}

.conditions-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.conditions-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.condition-category {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.condition-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #66bb6a, #2e7d32);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    color: white;
}

.condition-category h3 {
    color: #1b5e20;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.condition-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition-list li {
    padding: 8px 0;
    color: #4e5e50;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease;
}

.condition-list li:hover {
    color: #2e7d32;
}

.condition-list li:last-child {
    border-bottom: none;
}

/* Team Section Styles */
.team-section {
    background: #f8fafc;
    padding: 80px 20px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.doctor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 600;
}

.team-member h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-member .qualification {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-member .role {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.approach-section {
    background: white;
    padding: 80px 20px;
}

.approach-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.approach-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.approach-intro {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 50px;
    line-height: 1.6;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.approach-item {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.approach-item:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.approach-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.approach-item p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .conditions-header h2 {
        font-size: 2rem;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-header h2,
    .approach-header h2 {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}