
      * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #4F46E5;
    --primary-light: #EEF2FF;
    --secondary: #F43F5E;
    --secondary-light: #FFE4E6;
    --text: #1E293B;
    --text-light: #64748B;
    --background: #FFFFFF;
    --background-alt: #F8FAFC;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --whatsapp: #25D366;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background);
}

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



 .hero {
    background: linear-gradient(120deg, #F5F3FF 0%, #EFF6FF 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
} 

 .hero:before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
    top: -300px;
    right: -100px;
}  

 .hero:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.1) 0%, rgba(244, 63, 94, 0) 70%);
    bottom: -200px;
    left: -50px;
} 

 .hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

 .hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1.5px;
} 

.hero p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
} 

/* Contact Styles */
.contact-section {
    padding: 80px 0;
    background-color: var(--background-alt);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary);
    position: relative;
}

.contact-info h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 0;
}

.contact-methods {
    margin-top: 32px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 16px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.method-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--primary);
    font-size: 20px;
}

.method-details h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text);
}

.method-details p, .method-details a {
    font-size: 15px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.method-details a:hover {
    color: var(--primary);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--whatsapp);
    color: white !important;
    padding: 8px 16px;
    border-radius: 50px;
    margin-top: 8px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.whatsapp-button svg {
    margin-right: 8px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2);
}

.submit-btn svg {
    margin-left: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-heading {
    text-align: center;
    margin-bottom: 48px;
}

.faq-heading h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text);
}

.faq-heading p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 24px;
    background-color: white;
    font-weight: 500;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--primary-light);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: white;
}

.faq-answer p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s;
}

.faq-toggle:before, .faq-toggle:after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    transition: transform 0.3s;
}

.faq-toggle:before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.faq-toggle:after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-item.active .faq-toggle:before {
    transform: rotate(90deg);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: var(--background-alt);
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-heading h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text);
}

.testimonials-heading p {
    font-size: 18px;
    color: var(--text-light);
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.testimonial-stars {
    color: #FBBF24;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text);
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Emergency Contact */
.emergency-contact {
    padding: 24px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #FB7185 100%);
    color: white;
}

.emergency-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.emergency-text {
    flex: 1;
    min-width: 280px;
}

.emergency-text h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.emergency-text p {
    font-size: 16px;
    opacity: 0.9;
}

.emergency-cta {
    display: flex;
    align-items: center;
    background-color: white;
    color: var(--secondary);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.emergency-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.emergency-cta svg {
    margin-right: 8px;
}

/* Bottom Navigation */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: white;
    border-top: 1px solid #e2e8f0;
    position: sticky;
    bottom: 0;
    z-index: 20;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-light);
    flex: 1;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-item.active {
    background-color: rgba(0, 102, 255, 0.05);
}

.nav-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

/* Utility Classes */
.text-primary {
    color: var(--primary);
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}


/* Hide bottom navigation on desktop */
@media (min-width: 800px) {
    .bottom-nav {
        display: none !important;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }
    
    .content {
        padding-bottom: 20px;
    }
}


header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
    font-weight: bold;
}

 .nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.2s;
}
 .nav-links a:hover {
    color: var(--primary);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Bottom Navigation Bar (Mobile) Styles */
 .bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: white;
    border-top: 1px solid #e2e8f0;
    position: sticky;
    bottom: 0;
    z-index: 20;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
} 

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-light);
    flex: 1;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item:active {
    background-color: rgba(0, 102, 255, 0.05);
}

.nav-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
}





/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Hide bottom navigation on desktop */
@media (min-width: 800px) {
    .bottom-nav {
        display: none !important;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }
    
    .content {
        padding-bottom: 20px;
    }
}
