/* 
   Aarogya Hospitals - Main Stylesheet 
   Colors: Blue (#0056b3), White (#ffffff), Red (#dc3545), Green (#28a745)
*/

:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --secondary-color: #28a745;
    --accent-color: #00c6ff;
    /* Cyan accent for gradients */
    --emergency-color: #dc3545;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-danger {
    background-color: var(--emergency-color);
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.btn-danger:hover {
    background-color: #c82333;
    transform: scale(1.05);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* 1. Top Bar */
.top-bar {
    background: linear-gradient(90deg, #003366 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1001;
    /* Higher than header */
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emergency-alert {
    font-weight: 600;
    animation: pulse-red 2s infinite;
}

.emergency-link {
    color: #ffd700;
    margin-left: 5px;
    font-weight: 700;
}

/* 2. Header & Nav */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
    position: sticky;
    top: 36px;
    /* Height of top bar approx */
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-sub {
    color: var(--secondary-color);
    font-weight: 500;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 3. Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #f0f7ff;
    /* Very light blue */
    position: relative;
    overflow: hidden;
}

/* Decorative background shape */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-text h1 span {
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

/* Underline effect for 'Trust' */
.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: rgba(40, 167, 69, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
}

.image-wrapper img {
    width: 100%;
    transition: transform 0.5s;
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

/* 4. Quick Action Cards */
.quick-actions-wrapper {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.action-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.action-card .icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.action-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.action-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.action-card.emergency {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: var(--white);
}

.action-card.emergency .icon-box {
    color: var(--white);
}

.action-card.emergency p {
    color: rgba(255, 255, 255, 0.9);
}

/* 5. Horizontal Scrolling Section */
.scrolling-gallery-section {
    padding: 60px 0;
    overflow: hidden;
    background-color: #fff;
}

.section-header {
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: scroll 40s linear infinite;
    gap: 20px;
    padding-left: 20px;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.gallery-item {
    width: 350px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assuming content is duplicated for seamless loop */
}

/* 6. Specialities */
.specialities-section {
    padding: 80px 0;
}

.specialities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spec-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.spec-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.spec-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.spec-card:hover i {
    background-color: var(--primary-color);
    color: var(--white);
}

.spec-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* 7. Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.choose-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.feature-list {
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.choose-visual img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(0, 86, 179, 0.1);
}

/* 8. Doctors */
.doctors-section {
    padding: 80px 0;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.doctor-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.doctor-card:hover {
    transform: translateY(-10px);
}

.doc-img {
    height: 300px;
    overflow: hidden;
    background-color: #eef2f6;
}

.doc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.doc-info {
    padding: 20px;
    text-align: center;
}

.doc-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.doc-info .speciality {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.doc-info .exp {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* 9. Emergency CTA */
.emergency-cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('assets/images/service_emergency.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
}

.emergency-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.emergency-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.pulse-anim {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

@keyframes pulse-red {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* 10. Testimonials - Horizontal Scrolling */
.testimonials-section {
    padding: 60px 0;
    overflow: hidden;
}

.testimonials-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 30px;
}

.testimonials-marquee {
    display: inline-flex;
    animation: testimonials-scroll 30s linear infinite;
    gap: 20px;
    padding-left: 20px;
}

.testimonials-marquee:hover {
    animation-play-state: paused;
}

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testi-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    text-align: center;
    width: 280px;
    flex-shrink: 0;
    white-space: normal;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.testi-card .stars {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 1rem;
}

.testi-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testi-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.testi-card .treatment {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* 11. Footer */
.main-footer {
    background-color: #0f172a;
    /* Dark Blue/Black */
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    /* Show colored logo like header */
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Tablet & Mobile Media Queries */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .quick-actions-wrapper {
        margin-top: 0;
        padding: 40px 0 0;
    }

    .header-content .btn {
        display: none;
        /* Hide Header CTA on mobile, use Hero one */
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
}

/* Language Selector */
.language-selector {
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
}

.language-selector select {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.3s;
}

.language-selector select:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.language-selector select option {
    background-color: white;
    color: #333;
}

/* Add responsive adjustment */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 5px;
    }
}

/* Health Card Section */
/* Health Card Premium Section */
#health-card {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
    scroll-margin-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
#health-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

#health-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

.health-card-banner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden;
}

.health-card-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.health-card-banner h2 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #0056b3, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.health-card-banner h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 35px;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hc-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-apply {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00c6ff 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.4);
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-apply:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.5);
    color: white;
}

.hc-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.hc-benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.hc-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 198, 255, 0.3);
}

.hc-benefit-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.hc-benefit-item p {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
}

.hc-details {
    max-width: 900px;
    margin: 0 auto 50px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    border-left: 5px solid var(--secondary-color);
}

.hc-details h4 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.hc-details ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
}

.hc-details li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 35px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.hc-details li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .health-card-banner {
        padding: 30px 20px;
    }

    .health-card-banner h2 {
        font-size: 1.8rem;
    }

    .price-badge {
        font-size: 1.5rem;
        padding: 10px 30px;
    }

    .hc-details ul {
        grid-template-columns: 1fr;
    }

    .btn-apply {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
}