/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c59;
    --accent-color: #8fbc8f;
    --light-green: #e8f5e8;
    --gold: #daa520;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    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(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    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 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.logo-image:hover {
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
    margin-top: -2px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #25D366;
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: var(--transition);
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-link::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.3)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="rgba(218,165,32,0.4)"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite" begin="1s"/></circle><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.2)"><animate attributeName="opacity" values="0;1;0" dur="5s" repeatCount="indefinite" begin="2s"/></circle></svg>') repeat;
    opacity: 0.6;
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(218, 165, 32, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.title-main {
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
}

.title-sub {
    background: linear-gradient(135deg, var(--accent-color), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: -0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--light-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle i {
    color: var(--gold);
    font-size: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-description .highlight {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1em;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 180px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(218, 165, 32, 0.15));
    border-color: rgba(218, 165, 32, 0.5);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.2);
}

.card-1 {
    top: 10px;
    left: 10px;
    animation: float 6s ease-in-out infinite;
    z-index: 4;
}

.card-2 {
    top: 80px;
    right: 20px;
    animation: float 6s ease-in-out infinite 1.5s;
    z-index: 3;
}

.card-3 {
    bottom: 100px;
    left: 30px;
    animation: float 6s ease-in-out infinite 3s;
    z-index: 2;
}

.card-4 {
    bottom: 20px;
    right: 10px;
    animation: float 6s ease-in-out infinite 4.5s;
    z-index: 1;
}

.floating-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
    display: block;
    text-shadow: 0 2px 10px rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
}

.floating-card:hover i {
    transform: scale(1.1);
    color: #fff;
    text-shadow: 0 4px 15px rgba(218, 165, 32, 0.6);
}

.floating-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.floating-card p {
    font-size: 0.9rem;
    opacity: 0.95;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}


.hero-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.lotus-container {
    position: relative;
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

.lotus-petal {
    position: absolute;
    width: 40px;
    height: 80px;
    background: linear-gradient(45deg, rgba(218, 165, 32, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform-origin: 50% 100%;
}

.petal-1 { transform: rotate(0deg) translateY(-60px); }
.petal-2 { transform: rotate(45deg) translateY(-60px); }
.petal-3 { transform: rotate(90deg) translateY(-60px); }
.petal-4 { transform: rotate(135deg) translateY(-60px); }
.petal-5 { transform: rotate(180deg) translateY(-60px); }
.petal-6 { transform: rotate(225deg) translateY(-60px); }
.petal-7 { transform: rotate(270deg) translateY(-60px); }
.petal-8 { transform: rotate(315deg) translateY(-60px); }

.lotus-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--gold), #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.hero-scroll i {
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% { 
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    }
}


@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Homeopathy Section */
.homeopathy {
    background: linear-gradient(135deg, var(--light-green), #f8fffe);
    padding: 6rem 0;
}

.homeopathy-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 80, 22, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(45, 80, 22, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.section-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.homeopathy-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.homeopathy-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-weight: 500;
    font-style: italic;
}

.mission-statement {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--gold);
}

.mission-statement h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.mission-statement p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

.mission-statement strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.mission-statement em {
    color: var(--gold);
    font-weight: 600;
}

.homeopathy-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    margin-top: 0.2rem;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.homeopathy-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.homeopathy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.treatment-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 300px;
}

.treatment-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.treatment-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.treatment-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.treatment-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    transition: var(--transition);
}

.section-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

/* About Section */
.about {
    background: var(--light-green);
}

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

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
}

/* Team Section */
.team {
    background: var(--white);
}

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

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid #e1e8ed;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-photo {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-position {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-qualification {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-description {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-contact {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: var(--light-green);
    border-radius: 5px;
    text-align: center;
}

.team-institution {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-style: italic;
    text-align: center;
    background: rgba(218, 165, 32, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Courses Section */
.courses {
    background: var(--light-green);
}

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

.course-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-hover) !important;
    z-index: 2;
}

.course-card.featured {
    border: 3px solid var(--gold);
    transform: scale(1.05);
}

.course-card.featured:hover {
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: var(--shadow-hover) !important;
}


.course-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
    pointer-events: none;
}

.course-header {
    background: var(--gradient);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.course-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.course-details {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.course-details p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.course-features {
    padding: 1.5rem 2rem;
}

.course-features ul {
    list-style: none;
}

.course-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.course-card .btn {
    margin: 0 2rem 2rem;
    display: block;
    text-align: center;
    position: relative;
    z-index: 3;
}

.course-card .btn-outline {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.course-card .btn-outline:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-green);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.google-location {
    margin-top: 1rem;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--primary-color);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.2);
}

.location-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
    text-decoration: none !important;
}

.location-link i {
    font-size: 1rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--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 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.2rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-title {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .whatsapp-link {
        margin-top: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .title-main {
        font-size: 2.8rem;
    }
    
    .title-sub {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Mobile: Clean grid layout for floating cards */
    .hero-visual {
        height: auto;
        padding: 3rem 0 2rem;
        margin-top: 1rem;
    }
    
    .floating-cards {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .floating-card {
        position: static;
        width: 100%;
        padding: 1.5rem 1rem;
        animation: none;
        margin-bottom: 0;
    }
    
    .floating-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .floating-card i {
        font-size: 2.5rem;
    }
    
    .floating-card h4 {
        font-size: 1.1rem;
    }
    
    .floating-card p {
        font-size: 0.9rem;
    }
    
    /* Hide lotus background on mobile for cleaner look */
    .hero-illustration {
        display: none;
    }
    
    /* Reset card positions for mobile grid */
    .card-1, .card-2, .card-3, .card-4 {
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }
    
    .about-content,
    .homeopathy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .homeopathy-text h2 {
        font-size: 2.2rem;
    }
    
    .homeopathy-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-statement {
        padding: 1.5rem;
    }
    
    .treatment-cards {
        flex-direction: row;
        max-width: none;
        gap: 1rem;
    }
    
    .treatment-card {
        padding: 1.5rem 1rem;
    }
    
    .treatment-card i {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .courses-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        margin-bottom: 1rem;
    }
    
    .team-photo {
        height: 250px;
    }
    
    .team-info {
        padding: 1.5rem;
    }
    
    .course-card.featured {
        transform: none;
    }
    
    .course-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: var(--shadow-hover) !important;
    }
    
    .course-card.featured:hover {
        transform: translateY(-5px) !important;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .logo-title {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .title-main {
        font-size: 2.2rem;
    }
    
    .title-sub {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .stat-item {
        width: 200px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 200px;
        justify-content: center;
    }
    
    .hero-visual {
        height: auto;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }
    
    .floating-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        max-width: 320px;
        padding: 0 0.5rem;
    }
    
    .floating-card {
        width: 100%;
        padding: 1.2rem 0.8rem;
        position: static;
        animation: none;
        margin-bottom: 1rem;
    }
    
    .floating-card:hover {
        transform: translateY(-3px) scale(1.02);
    }
    
    .floating-card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .floating-card h4 {
        font-size: 0.95rem;
    }
    
    .floating-card p {
        font-size: 0.8rem;
    }
    
    /* Ensure all cards use grid layout on small screens */
    .card-1, .card-2, .card-3, .card-4 {
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }
    
    .lotus-container {
        width: 120px;
        height: 120px;
    }
    
    .lotus-center {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-card,
    .course-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .treatment-cards {
        flex-direction: column;
        gap: 1rem;
    }
    
    .homeopathy-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .homeopathy-buttons .btn {
        width: 200px;
        justify-content: center;
    }
}

/* Extra small screens - single column for cards */
@media (max-width: 360px) {
    .floating-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 250px;
        padding: 0 1rem;
    }
    
    .floating-card {
        padding: 1.5rem 1rem;
    }
    
    .floating-card i {
        font-size: 2.2rem;
    }
    
    .floating-card h4 {
        font-size: 1rem;
    }
    
    .floating-card p {
        font-size: 0.85rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
