/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #1e2a44 100%, #2c3e50 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 40px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.footer-column {
    flex: 1;
}
.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #00ffcc;
    display: block;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav {
    position: relative;
    perspective: 1000px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-list li {
    transform: rotateY(0deg) translateZ(0);
    transition: transform 0.3s ease;
}

.nav-list a {
    color: #00ffcc;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    padding: 5px 10px;
    display: block;
    text-shadow: 0 0 5px #00ffcc;
}

.nav-list a:hover {
    color: #800080;
    text-shadow: 0 0 10px #800080;
    transform: scale(1.1) rotateY(10deg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #ffffff;
    text-align: right;
}

.contact-info p {
    margin: 0;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -250px;
        height: 100%;
        width: 250px;
        background: rgba(0, 0, 0, 0.9);
        transition: right 0.3s ease;
    }
    .nav.active {
        right: 0;
        top: 74px;
    }
    .nav-list {
        flex-direction: column;
        padding: 60px 20px;
        gap: 20px;
    }
    .contact-info {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    min-height: 100%;
    margin-top: 70px;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    animation: glow 2s infinite alternate;
}

.hero-overlay h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00ffcc;
}

.hero-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

.hero-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-button.neon-teal {
    background-color: transparent;
    color: #00ffcc;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 10px #00ffcc;
}

.hero-button.neon-teal:hover {
    background-color: #00ffcc;
    color: #000;
    box-shadow: 0 0 20px #00ffcc;
}

.hero-button.neon-purple {
    background-color: transparent;
    color: #800080;
    border: 2px solid #800080;
    box-shadow: 0 0 10px #800080;
}

.hero-button.neon-purple:hover {
    background-color: #800080;
    color: #fff;
    box-shadow: 0 0 20px #800080;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #00ffcc;
    box-shadow: 0 0 5px #00ffcc;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #00ffcc; }
    to { text-shadow: 0 0 15px #00ffcc; }
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    .hero-overlay h1 {
        font-size: 24px;
    }
}

/* About Section */
.about {
    padding: 50px 0;
    position: relative;
}

.about h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.about p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.about-orbit {
    position: relative;
    text-align: center;
    display: flex;
}

.about-orbit img {
    width: 33%;
    flex: 1;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.orbit-container {
    position: relative;
    height: 200px;
    width: 200px;
    margin: 0 auto;
    animation: orbit 10s linear infinite;
}
.orbit__items {
    display: flex
;
overflow: hidden;
width: 100%;
}
.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 204, 0.2);
    border: 1px solid #00ffcc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    color: #00ffcc;
    box-shadow: 0 0 10px #00ffcc;
    animation: orbitRotate 10s linear infinite;
}

.orbit-item:nth-child(2) { animation-delay: -2.5s; }
.orbit-item:nth-child(3) { animation-delay: -5s; }
.orbit-item:nth-child(4) { animation-delay: -7.5s; }

@keyframes orbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes orbitRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
    .about-orbit img {
        width: 100%;
    }
    .orbit-container {
        height: 150px;
        width: 150px;
    }
    .orbit-item {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }
}

/* Services Section */
.services {
    padding: 50px 0;
}

.services h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 0;
    text-align: center;
    overflow: hidden;
    /* border: 1px solid #00ffcc; */
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ffcc;
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
}

.service-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #800080;
}

.service-card p {
    font-size: 14px;
    padding: 20px;
}

.service-card.empty {
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Appointment Section */
.appointment {
    padding: 50px 0;
    background: #00c4cc;
    border-radius: 0px;
    margin: 20px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.appointment h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.appointment-buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.appointment-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1e2a44;
    color: #00ffcc;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    margin: 0 auto;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.appointment-button:hover {
    background-color: #00ffcc;
    color: #1e2a44;
}

.appointment-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00ffcc;
}

.appointment-form input {
    padding: 10px;
    border: 1px solid #00ffcc;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: box-shadow 0.3s ease;
}

.appointment-form input:focus {
    box-shadow: 0 0 10px #00ffcc;
    outline: none;
}

.appointment-submit {
    padding: 10px 20px;
    background-color: #800080;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appointment-submit:hover {
    background-color: #00ffcc;
    color: #1e2a44;
}

/* Packages Section */
.packages {
    padding: 50px 0;
}

.packages h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.package-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    border: 1px solid #00ffcc;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: rotateY(10deg);
}

.package-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #800080;
}

.package-card .price {
    font-size: 24px;
    color: #00ffcc;
    margin-bottom: 10px;
}

.package-card .price span {
    font-size: 14px;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.package-card ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

.package-button {
    padding: 10px 20px;
    background-color: #800080;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-button:hover {
    background-color: #00ffcc;
    color: #1e2a44;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* Doctors Section */
.doctors {
    padding: 50px 0;
}

.doctors h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.doctor-card {
    /* background: rgba(255, 255, 255, 0.1); */
    padding: 20px;
    text-align: center;
    /* border: 1px solid #00ffcc; */
    border-radius: 15px;
    transition: opacity 0.3s ease;
}
.doctor-card:hover {
    opacity: 0.8;
}

.doctor-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #00ffcc;
}

.doctor-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: #800080;
}

.doctor-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

.social-icons a img {
    width: 20px;
    height: 20px;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .doctors-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
}

.testimonials h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.testimonials-slider {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    border: 1px solid #00ffcc;
    border-radius: 15px;
    transition: opacity 0.3s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #00ffcc;
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial-card .stars img {
    width: 20px;
    height: 20px;
    margin: 0 2px;
}

.testimonial-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: #800080;
}

.testimonial-card p:last-child {
    font-size: 14px;
}

.slider-controls {
    text-align: center;
    margin-top: 20px;
}

.slider-controls button {
    background: none;
    border: none;
    color: #00ffcc;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .testimonials-slider {
        height: 400px;
    }
}

/* Blog Section */
.blog {
    padding: 50px 0;
}

.blog h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 0px;
    display: flex
;
    gap: 20px;
    text-align: center;

    border-radius: 15px;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: scale(1.05);
}

.blog-card img {
    width: 100%;
    height: 400px;
    max-width: 400px;
    object-fit: cover;
    margin-bottom: 0px;
    border-radius: 10px;
}

.blog-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 24px;
    margin-bottom: 5px;
    color: #800080;
}

.blog-card p {
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-link {
    display: inline-block;
    padding: 5px 10px;
    background-color: #800080;
    color: #fff;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    background-color: #00ffcc;
    color: #1e2a44;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Accordion Section */
.accordion-section {
    padding: 50px 0;
}

.accordion-section h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    background: rgba(255, 255, 255, 0.1);
    color: #800080;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: 1px solid #00ffcc;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 5px #00ffcc;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.2);
}

.accordion-content {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border: 1px solid #00ffcc;
    border-top: none;
}

.accordion-content.active {
    display: block;
}

/* Events Section */
.events {
    padding: 50px 0;
}

.events h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-card {
    /* background: rgba(255, 255, 255, 0.1); */
    /* padding: 20px; */
    text-align: center;
    /* border: 1px solid #00ffcc; */
    /* border-radius: 15px; */
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 0px;
}

.event-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #800080;
}

.event-card p {
    font-size: 14px;
    padding: 20px;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #1e2a44;
    padding: 50px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 10px;
    animation: glow 2s infinite alternate;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-column h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #00ffcc;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #800080;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    text-shadow: 0 0 5px #800080;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-form input {
    padding: 10px;
    width: 200px;
    border: 1px solid #00ffcc;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #800080;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #00ffcc;
    color: #1e2a44;
}

.social-icons a img {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    margin: 0 5px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    margin-bottom: 10px;
}

.policy-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.policy-links a {
    color: #00ffcc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.policy-links a:hover {
    text-shadow: 0 0 5px #00ffcc;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 20px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input {
        width: 100%;
    }
}

html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    flex: 1;
    display: flex;
    padding: 20px;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .about-orbit {
        position: relative;
        text-align: center;
        display: flex
    ;
        flex-direction: column;
    }
    .blog-card {
        background: rgba(255, 255, 255, 0.1);
        padding: 0px;
        display: flex
    ;
        gap: 20px;
        text-align: center;
        border-radius: 15px;
        transition: transform 0.3s ease;
        flex-direction: column;
    }
    .f{

       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}
