/* The Clinics® - CSS Styles */

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

* * body {
    * font-family: "Archivo", sans-serif;
    * line-height: 1.6;
    * color: #334155;
    * overflow-x: hidden;
    *
}

* *

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #192e85;
}

.logo-icon {
    width: 56px;
    height: 56px;
    margin-right: 8px;
    /* background: linear-gradient(135deg, #4eeb59, #21ca5b); */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* box-shadow: 0 2px 8px rgba(78, 235, 89, 0.3); */
}

.logo-icon img {
    height: 100%;
}

/* .logo-icon::before {
 *     content: '';
 *         position: absolute;
 *             width: 16px;
 *                 height: 3px;
 *                     background: white;
 *                         border-radius: 2px;
 *                         }
 *
 *                         .logo-icon::after {
 *                             content: '';
 *                                 position: absolute;
 *                                     width: 3px;
 *                                         height: 16px;
 *                                             background: white;
 *                                                 border-radius: 2px;
 *                                                 } */

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

.nav-menu a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #192e85;
}

.sign-up-btn {
    background: linear-gradient(135deg, #192e85, #0160ff);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.sign-up-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(25, 46, 133, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f0fdf4 100%);
    padding: 120px 2rem 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::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="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%234eeb59" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-content .highlight {
    background: linear-gradient(135deg, #192e85, #0589ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #192e85, #0160ff);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 46, 133, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #192e85;
    padding: 12px 24px;
    border: 2px solid #192e85;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4eeb59, #21ca5b);
    color: white;
    border-color: #4eeb59;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.trust-icon {
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-image {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(78, 235, 89, 0.1), rgba(5, 137, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(25, 46, 133, 0.1);
    background: #1e293b;
}

.doctor-illustration {
    background: #1e293b;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    border-radius: 50px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    max-width: 200px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid #e2e8f0;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -15%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -15%;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 60%;
    right: -10%;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    animation-delay: 2s;
}

.card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-content strong {
    display: block;
    color: #192e85;
    margin-bottom: 0.2rem;
}

.card-content p {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Booking Section */
.booking-section {
    background: white;
    padding: 3rem 2rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.booking-container {
    max-width: 992px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.booking-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-field input,
.form-field select {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #0589ff;
    box-shadow: 0 0 0 3px rgba(5, 137, 255, 0.1);
}

.book-btn {
    background: linear-gradient(135deg, #192e85, #0160ff);
    color: white;
    padding: 15px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    height: fit-content;
    white-space: nowrap;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 46, 133, 0.3);
}

/* Services Section */
.services-section {
    background: #f8fafc;
    padding: 5rem 2rem;
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4eeb59, #21ca5b, #0589ff);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(78, 235, 89, 0.1), rgba(5, 137, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(25, 46, 133, 0.1);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.service-features span {
    font-size: 0.9rem;
    color: #0160ff;
    font-weight: 500;
}

/* Future Services */
.future-services {
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 50%, #f0f9ff 100%);
    padding: 5rem 2rem;
    position: relative;
}

.future-services::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 200 200"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%234eeb59" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.future-item {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(78, 235, 89, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    text-align: center;
}

.future-item:hover {
    transform: translateY(-5px);
    border-left-color: #4eeb59;
    box-shadow: 0 15px 35px rgba(78, 235, 89, 0.15);
}

.future-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.future-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #192e85;
    margin-bottom: 0.5rem;
}

.future-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #192e85, #0160ff);
    color: white;
    padding: 5rem 2rem;
    position: relative;
}

.about-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="hexagon" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="%234eeb59" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.learn-more-btn {
    background: #21ca5b;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 235, 89, 0.3);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-image {
    width: 600px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.team-illustration {
    font-size: 4rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* How it Works */
.how-it-works {
    background: white;
    padding: 5rem 2rem;
}

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

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

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #192e85, #0160ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(25, 46, 133, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    background: #f8fafc;
    padding: 5rem 2rem;
}

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

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #64748b;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4eeb59, #21ca5b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.author-info strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #192e85, #0160ff);
    color: white;
    padding: 6rem 5rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Employment Section */
.employment-section {
    background: white;
    padding: 5rem 2rem;
}

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

.employment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.employment-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.feature-item {
    color: #0160ff;
    font-weight: 500;
    padding: 0.5rem 0;
}

.employment-btn {
    background: linear-gradient(135deg, #192e85, #0160ff);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.employment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 46, 133, 0.3);
}

.employment-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.employment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

/* .career-illustration {
 *     font-size: 6rem;
 *         background: linear-gradient(135deg, rgba(78, 235, 89, 0.1), rgba(5, 137, 255, 0.1));
 *             padding: 2rem;
 *                 border-radius: 20px;
 *                     border: 2px solid rgba(25, 46, 133, 0.1);
 *                     } */

/* Franchise Section */
.franchise-section {
    background: #f8fafc;
    padding: 5rem 2rem;
}

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

.franchise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.franchise-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #192e85;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.franchise-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.franchise-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #192e85, #0160ff);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-details strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-details p {
    color: #64748b;
    margin: 0;
}

.contact-details a {
    color: #192e85;
    text-decoration: none;
}

.contact-details a:hover {
    color: #0589ff;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0589ff;
    box-shadow: 0 0 0 3px rgba(5, 137, 255, 0.1);
}

/* App download Section */
.app-download-section {
    background: #192e85;
    padding: 5rem 2rem;
}

.app-download {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.app-download h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.app-download-text p {
    color: white;
}

.app-buttons {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.app-btn {
    background: white;
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 300;
    font-size: 1.5rem;
    transition: all 0.3s;
    display: flex;
    width: 200px;
    text-align: center;
    flex-direction: row;
    align-content: space-around;
    justify-content: center;
    align-items: center;
    max-height: 100px;
}

.app-btn img {
    width: 30px;
    margin-right: 10px;
}

.app-btn:hover {
    transform: translateY(-2px);
}


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

/* .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
} */
.footer-container {
    display: flex;
}

.footer-container .footer-section:nth-child(1) {
    width: 40%;
}

.footer-container .footer-section {
    width: 20%;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-section a:hover {
    color: #4eeb59;
}

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

.social-links a {
    display: inline-block;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
    color: #94a3b8;
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
}

/* Disclaimer */
.disclaimer {
    background: #f1f5f9;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
}

/* Terms page specific styles only */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 2rem 3rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.terms-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #192e85, #0589ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.terms-intro {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #ecfdf5);
    border-radius: 12px;
    border-left: 4px solid #4eeb59;
}

.terms-section {
    margin-bottom: 2.5rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4eeb59, #21ca5b, #0589ff);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.terms-section:hover::before {
    transform: translateX(0);
}

.terms-section:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.terms-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #192e85;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-number {
    background: linear-gradient(135deg, #192e85, #0589ff);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(25, 46, 133, 0.3);
}

.terms-content {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.terms-content p {
    margin-bottom: 1rem;
}

.terms-list {
    margin: 1rem 0;
    padding-left: 0;
}

.terms-list li {
    list-style: none;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #475569;
}

.terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4eeb59;
    font-weight: bold;
    font-size: 1.1rem;
}

.company-name {
    color: #192e85;
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0160ff;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-item span {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: #0160ff;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #192e85;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(78, 235, 89, 0.1), rgba(5, 137, 255, 0.1));
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
    color: #192e85;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-indicators {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .doctor-image {
        width: 300px;
        height: 300px;
    }

    .doctor-illustration {
        font-size: 6rem;
    }

    .floating-card {
        display: none;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-container,
    .contact-container,
    .employment-content,
    .franchise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .future-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .employment-features {
        grid-template-columns: 1fr;
    }

    .app-buttons {
        flex-direction: column;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .terms-title {
        font-size: 2rem;
    }

    .terms-container {
        padding: 100px 1rem 3rem;
    }

    .terms-section {
        padding: 1.5rem;
    }

    .terms-section-title {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .section-number {
        width: 35px;
        height: 35px;
    }

    .terms-list li {
        padding-left: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-item span {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .doctor-image {
        width: 250px;
        height: 250px;
    }

    .doctor-illustration {
        font-size: 4rem;
    }

    .service-card,
    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        align-items: center;
    }

    .trust-item {
        text-align: center;
    }

    .terms-title {
        font-size: 1.8rem;
    }

    .terms-intro {
        padding: 1rem;
    }

    .terms-section {
        padding: 1rem;
    }

    .terms-section-title {
        font-size: 1.2rem;
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #192e85, #0589ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4eeb59, #21ca5b);
}

/* Focus States for Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.sign-up-btn:focus,
.book-btn:focus,
.learn-more-btn:focus,
.employment-btn:focus {
    outline: 2px solid #4eeb59;
    outline-offset: 2px;
}

.form-field input:focus,
.form-field select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #4eeb59;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {

    .service-card,
    .future-item,
    .testimonial-card,
    .benefit-card {
        border: 2px solid #192e85;
    }

    .floating-card {
        border: 2px solid #192e85;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-card {
        animation: none;
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .floating-elements,
    .booking-section {
        display: none;
    }

    .hero {
        padding: 2rem 0;
        background: white !important;
        color: black !important;
    }

    .section-title,
    .hero-content h1 {
        color: black !important;
    }

    .service-card,
    .future-item,
    .testimonial-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

div,
span,
b,
p,
h3,
h1,
h2,
label,
input {
    font-family: "Poppins", sans-serif !important;
}

.footer-section {
    background: #0c1b2a;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-description {
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 25px;
    color: #cfd6df;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 20px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: #ffffff;
    color: #0c1b2a;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.85rem;
    color: #a0a7b2;
}