* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    overflow-x: hidden;
}


/* ===== NAVBAR ===== */

header {
    width: 100%;
    background: #f4a261;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 8%;
}

/* LOGO */

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #3511b4;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: 60px;
    margin-right: 10px;
    border-radius: 50%;
}

/* NAV LINKS */

#navbar {
    display: flex;
    gap: 30px;
    margin-left: auto;
    /* pushes menu to right */
}

#navbar a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

#navbar a:hover {
    color: #fff;
}

#navbar a.active {
    color: #fff;
}

/* RIGHT SIDE */

.nav-right {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

/* MENU ICON */

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}


/* HERO SECTION */


/* HERO VIDEO SECTION */

.hero-video {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

/* VIDEO */

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* OVERLAY */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* TEXT BOX */

.hero-box {
    max-width: 500px;
    background: rgba(58, 105, 30, 0.86);
    padding: 50px 30px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    color: white;
}

.hero-box h1 {
    font-size: 45px;
    margin-bottom: 20px;
}

.hero-box p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: rgb(255, 255, 255);
    ;
    color: rgb(26, 26, 28);
    padding: 12px 28px;
    font-weight: 700;
    border: 1px solid white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0);
    color: white;
    opacity: 0.8;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 30px;
    background: rgb(13, 20, 26);
}

/* HOSPITAL INFO SECTION */

.hospital-info {
    padding: 80px 8%;
    background: #f8f9fb;
}

.info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT SIDE */

.info-text {
    flex: 1;
    min-width: 300px;
}

.info-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0b7a75;
}

.info-text p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
}

.info-btn {
    display: inline-block;
    background: #0b7a75;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.info-btn:hover {
    background: #095e5a;
}

/* RIGHT IMAGE CARD */

.info-card {
    flex: 1;
    max-width: 420px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card img {
    width: 100%;
    display: block;
}

.card-text {
    padding: 20px;
    text-align: center;
}

.card-text h4 {
    margin-bottom: 8px;
    color: #0b7a75;
}

.card-text p {
    font-size: 14px;
    color: #666;
}

.medical-services {
    padding: 80px 8%;
    background: #d6e2e7;
}

/* TITLE */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 45px;
    margin-bottom: 10px;
    color: #0d1b2a;
}

.section-title p {
    color: #555;
    font-size: 18px;
}

/* GRID */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD */

.service-card {
    background: white;
    /* border-radius: 30px; */
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;

    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-right-radius: 100px;
}

/* CONTENT */

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-choose {
    padding: 80px 8%;
    background: #f7f9fc;
    text-align: center;
}

.choose-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.choose-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.choose-box:hover {
    transform: translateY(-8px);
    border-top: 5px solid #0b7a75;
}

.choose-box i {
    font-size: 40px;
    color: #0b7a75;
    margin-bottom: 15px;
}

.choose-box h3 {
    margin: 10px 0;
    color: #0b7a75;
    line-height: 1.6;
}

.choose-box p {
    line-height: 1.6;
    color: #555;
}

.doctors {
    padding: 80px 8%;
    background: white;
    text-align: center;
}

.doctor-card {
    background: #f7f9fc;
    padding: 25px;
    border-radius: 15px;
    transition: .3s;
}

.doctor-card h3 {
    margin: 8px 0;
    color: #0b7a75;
}

.doctor-card p {
    color: #555;
}


.doctor-card:hover {
    transform: scale(1.05);
}

.doctor-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.appointment {
    background: url("https://images.unsplash.com/photo-1584516150909-c43483ee7935") center/cover no-repeat;
    padding: 120px 8%;
    position: relative;
}

/* Overlay */

.appointment-overlay {
    background: rgba(0, 0, 0, 0.65);
    padding: 80px 8%;
    border-radius: 12px;
}

/* Container */

.appointment-container {
    max-width: 700px;
}

/* Text */

.appointment-text h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
}

.appointment-text p {
    color: #ddd;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Buttons */

.appointment-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.appointment-btn {
    background: #0b7a75;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.appointment-btn:hover {
    background: #095e59;
    transform: translateY(-3px);
}

.call-btn {
    background: white;
    color: #0b7a75;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn:hover {
    background: #eee;
}

/* About Page */

/* HERO */

.about-hero {
    background: url("https://images.unsplash.com/photo-1538108149393-fbbd81895907") center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
    color: #000000;
}

.hero-content p {
    font-size: 18px;
    color: #555;
}

/* ABOUT */

.about-section {
    padding: 80px 8%;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text h2 {
    font-size: 35px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
}

.about-btn {
    background: #0b7a75;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
}

/* VISION MISSION */

.vision-mission {
    padding: 80px 8%;
    background: #f7f9fc;
}

.vm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-box {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.vm-box h3 {
    margin: 15px 0;
    color: #0b7a75;
}

.vm-box p {
    color: #555;
    line-height: 1.6;
}

.vm-box:hover {
    transform: translateY(-10px);
}

.vm-box i {
    font-size: 40px;
    color: #0b7a75;
    margin-bottom: 15px;
}

/* COUNTER */

.counter-section {
    background: #0b7a75;
    padding: 70px 8%;
    color: white;
}

.counter-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.counter-box h2 {
    font-size: 40px;
}

/* WHY */

.why-choose {
    padding: 80px 8%;
    text-align: center;
}

.why-choose h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0b7a75;
}

.choose-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.choose-box {
    background: #f7f9fc;
    padding: 30px;
    border-radius: 10px;
}

.choose-box i {
    font-size: 35px;
    color: #0b7a75;
    margin-bottom: 10px;
}

/* Services Page */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f9fc;
}

/* HERO */

.services-hero {
    background: url("https://images.unsplash.com/photo-1538108149393-fbbd81895907") center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
}


/* SECTION */

.services {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}


/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* CARD */

.service-card {
    background: white;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-10px);
}


/* IMAGE */

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


/* CONTENT */

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content i {
    font-size: 35px;
    color: #0b7a75;
    margin-bottom: 10px;
}

.service-content h3 {
    margin-bottom: 10px;
}

.service-content p {
    color: #555;
    margin-bottom: 15px;
}


/* BUTTON */

.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #0b7a75;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: .3s;
}

.service-btn:hover {
    background: #095e59;
}

/* DOCTORS Page */

/* HERO */

.doctor-hero {
    background: url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-text h1 {
    font-size: 45px;
}

/* SECTION */

.doctors {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
}

/* GRID */

.doctor-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */

.doctor-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

.doctor-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */

.doctor-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* INFO */

.doctor-info {
    padding: 20px;
    text-align: center;
}

.doctor-info h3 {
    margin-bottom: 5px;
}

.doctor-info p {
    color: #0b7a75;
    margin-bottom: 15px;
}

/* SOCIAL */

.doctor-social a {
    margin: 0 8px;
    color: #555;
    font-size: 18px;
    transition: .3s;
}

.doctor-social a:hover {
    color: #0b7a75;
}

/* CONTACT page */

/* HERO */

.contact-hero {
    height: 50vh;
    background: url("https://images.unsplash.com/photo-1587351021759-3e566b6af7cc?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    color: #fff;
}


/* CONTACT INFO */

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 70px 8%;
}

.info-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card i {
    font-size: 30px;
    color: #0b7a75;
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 8px;
    color: #0b7a75;
}

.info-card p {
    color: #555;
    line-height: 1.6;
}


/* CONTACT FORM */

.contact-form-section {
    padding: 80px 8%;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.form-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.form-text p {
    color: #555;
    line-height: 1.6;
}


/* GLASS FORM */

.contact-form {
    background: rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* INPUT */

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    background: transparent;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 14px;
    color: #666;
    transition: .3s;
    background: white;
    padding: 0 5px;
}

.input-group input:focus+label,
.input-group textarea:focus+label,
.input-group input:valid+label,
.input-group textarea:valid+label {
    top: -8px;
    font-size: 12px;
    color: #0b7a75;
}


/* BUTTON */

.contact-form button {
    padding: 12px;
    border: none;
    background: #0b7a75;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: .3s;
}

.contact-form button:hover {
    background: #095e59;
}


/* MAP */

.map {
    margin-top: 50px;
    width: 90%;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    background-color: #fff;
}

.map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    padding: 10px;
}


/* WHATSAPP */

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.footer {
    background: #0b1d2a;
    color: white;
    padding: 70px 8% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Boxes */

.footer-box h2 {
    margin-bottom: 15px;
    color: #1ecbe1;
}

.footer-box h3 {
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

/* Links */

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #ccc;
    transition: .3s;
}

.footer-box ul li a:hover {
    color: #1ecbe1;
    padding-left: 5px;
}

/* Social Icons */

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #1ecbe1;
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    transition: .3s;
}

.social-icons a:hover {
    background: white;
    color: #1ecbe1;
}

/* Contact Icons */

.footer-box i {
    margin-right: 8px;
    color: #1ecbe1;
}

.footer-box a i {
    color: #000000;
}

/* Bottom */

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 14px;
    color: #bbb;
}


/* MOBILE */

@media(max-width:768px) {

    #navbar {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #f4a261;
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 20px 0;
    }

    #navbar a {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .logo a {
        font-size: 20px;
    }

    .hero-video {
        justify-content: center;
        text-align: center;
    }

    .hero-box {
        max-width: 90%;
    }

    .hero-box h1 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .info-container {
        flex-direction: column;
        text-align: center;
    }

    .info-text h2 {
        font-size: 30px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 16px;
    }

    .doctor-container {
        grid-template-columns: 1fr;
    }

    .appointment {
        padding: 80px 5%;
    }

    .appointment-text h2 {
        font-size: 30px;
    }

    /* About page */

    .about-container {
        grid-template-columns: 1fr;
    }

    .vm-container {
        grid-template-columns: 1fr;
    }

    .counter-container {
        grid-template-columns: 1fr 1fr;
    }

    .choose-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .why-choose h2 {
        font-size: 30px;
    }
}

/* Tablet */

@media(max-width:992px) {

    .choose-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .doctor-container {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }

    .form-container {
        grid-template-columns: 1fr;
    }

}

/* Mobile  */
@media(max-width:600px) {

    .choose-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .doctor-container {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

}