@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    background-color: #008080;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

.hero {
    position: relative;
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo {
    width: 150px;
    height: 150px;
    opacity: 0;
    animation: slideInLeft 1.5s forwards;
}

.title {
    font-size: 2rem;
    opacity: 0;
    animation: slideInRight 1.5s 0.5s forwards;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0;
    animation: fadeIn 1.5s 1s forwards;
}
.service-list {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    background: #fff;
    color: #008069;
    padding: 12px;
    border: 2px solid #008069;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    margin-top: 10px;
    transition: background 0.3s, color 0.3s;
}

.service-btn:hover {
    background: #008069;
    color: #fff;
}

.service-btn .material-symbols-outlined {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48;
    font-size: 1.5rem;
    margin-right: 8px;
    color: inherit;
    pointer-events: none;
    transition: color 0.3s;
}
.service-desc {
    display: none;
    font-size: 1rem;
    padding: 10px;
    background: #fff;
    color: #008069;
    border-radius: 5px;
    margin-top: 5px;
}
.header-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.header-link:hover {
    color: #59d4a3;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #59d4a3;
}

footer {
    padding-top: 20px;
}

@media (max-width: 768px) {
    .header-nav, .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}
@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


h2.title {
    opacity: 0;
    animation: slideInRight 1.5s forwards;
}

h2.subtitle {
    opacity: 0;
    animation: fadeIn 1.5s 0.5s forwards;
}

.custom-table {
    background-color: transparent !important;
    border: 2px solid white;
    width: 100%;
}

.custom-table th, .custom-table td {
    border: 1px solid white !important;
    padding: 15px;
}

.custom-table thead th {
    background: white;
    color: #008069;
    font-weight: bold;
}

.custom-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.2);
}

.custom-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.3);
}

.container-fluid {
    padding: 0 50px;
}


@media (max-width: 768px) {
    .container-fluid {
        padding: 0 10px; 
    }
}


.login-box {
    backdrop-filter: blur(10px);
    color: white;
    width: 100%;
    border-radius: 20px; 
}

.form-input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.form-input::placeholder {
    color: #ccc;
}

.btn-light {
    background-color: white;
    color: #008069;
    font-weight: bold;
    border-radius: 10px;
    padding: 12px;
}

.btn-light:hover {
    background-color: #9dd4ca;
    color: #008069;
}

.register-link {
    color: white;
    text-decoration: underline;
}

.register-link:hover {
    color: #59d4a3;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
}
.lead {
    font-size: 1.3rem;
    line-height: 1.6;
}

.contact-box {
    color: white;
    border-radius: 20px;
}


.map-container iframe {
    border-radius: 20px;
}


@media (max-width: 768px) {
    .lead {
        font-size: 1.1rem;
    }

    .contact-box {
        padding: 20px;
    }
}

.specialist-card {
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    min-height: 280px; 
    height: 100%;
    padding: 20px;
}


.specialist-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}


.doctor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}


.specialist-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    flex-grow: 1; 
}

.specialist-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .specialist-card {
        min-height: auto;
    }

    .doctor-img {
        width: 100px;
        height: 100px;
    }
}

.appointment-form {
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s, background 0.3s;
}

.appointment-form:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.2);
}

.appointment-form .form-control {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px;
    border-radius: 5px;
}

.appointment-form button {
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.appointment-form button:hover {
    background: #a5f0d2;
    color: #fff;
}

@media (max-width: 768px) {
    .appointment-form {
        padding: 20px;
    }
}
.admin-card{
    color: #f0f324;
}