/* Global Styles */
:root {
    --primary-color: #0056a6; /* Primary blue color */
    --secondary-color: #9bc21e; /* Secondary lighter blue */
    --accent-color: #f7941d; /* Orange accent */
    --text-color: #333333;
    --light-text: #ffffff;
    --light-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --section-spacing: 60px;
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 70px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background: #9bc21e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--light-text);
}

.btn-secondary:hover {
    background: #9bc21e;
    transform: translateY(-2px);
}

.btn-text {
    color: var(--primary-color);
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.btn-text:hover {
    border-bottom-color: var(--primary-color);
}

/* Header Styles */
header {
    background: var(--light-text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    height: 100%;
}

.logo img {
    height: 40px;
}

/* Desktop Navgation */ 
nav {
    margin-left: auto;
}

.main-menu {
    display: flex;
    gap: 30px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.main-menu> li > a:hover,
.main-menu > li > a.active {
    color: var(--secondary-color);
}


/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-text);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.main-menu > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    border-bottom: 1px solid var(--border-color);
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.submenu li a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1002;
}

/* Hero Section */
.hero {
    margin-top: -70px;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    scroll-snap-align: none;
}

.hero-single-image {
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    background-color: var(--primary-color); /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-single-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 5px;
    background: transparent;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--light-text);
    max-width: 600px;
    padding: 0 30px;
    position: relative;
    z-index: 5;
    background: transparent;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Page Hero Section */
.page-hero {
    margin-top: 0px;
    height: 88vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
    scroll-snap-align: start;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
section {
    padding: var(--section-spacing) 0;
    scroll-snap-align: start;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-bg);
}

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

.about-card {
    background: var(--light-text);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--secondary-color);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--light-text);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Images Section */
.images {
    background: var(--light-bg);
    scroll-snap-align: start;
}

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

.image-card {
    background: var(--light-text);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

/* News Section */
.news {
    background: var(--light-bg);
}

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

.news-card {
    background: var(--light-text);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.news-category {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    scroll-snap-align: start;
}

.content-section.bg-light {
    background: var(--light-bg);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-main h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
}

.content-main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 30px 0 15px 0;
}

.content-main p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Sidebar */
.sidebar-card {
    background: var(--light-text);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #666;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* sidebar */
.sidebar{
  position: fixed;
  padding-left: 20px;
  top: 0;
  right: 0;
  height: 100vh;
  width: 350px;
  z-index: 999;
  background-color: #e0e0e0;
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    scroll-snap-align: start;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: var(--light-text);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card-image {
    height: 250px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-content {
    padding: 25px;
    text-align: center;
}

.team-card-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.position {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.team-card .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-card .social-links a {
    width: 35px;
    height: 35px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.team-card .social-links a:hover {
    background: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.partner-card {
    background: var(--light-text);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-logo {
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    object-fit: contain;
}

.partner-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.partner-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Services Accordion */
.services-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--light-text);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion-header {
    padding: 25px 30px;
    background: var(--light-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #e8e8e8;
}

.accordion-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 30px;
    max-height: 700px;
}

.accordion-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.accordion-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.accordion-content li {
    color: #666;
    margin-bottom: 8px;
    list-style: disc;
}

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.quality-card {
    background: var(--light-text);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-5px);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--light-text);
    font-size: 2rem;
}

.quality-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.quality-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 80px 0;
    scroll-snap-align: start;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    background: var(--light-text);
    color: var(--primary-color);
    padding: 15px 30px;
    font-weight: 600;
}

.cta-section .btn:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.cta-section .btn-secondary:hover {
    background: var(--light-text);
    color: var(--primary-color);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--light-text);
    padding: 60px 0 0;
    scroll-snap-align: start;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about {
    max-width: 300px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-text);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-contact i {
    color: var(--primary-color);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-bottom-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide desktop navigation */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--light-text);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 100;
        padding: 80px 30px 30px;
    }

    nav.active {
        right: 0;
    }

    /* Mobile menu overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile menu styles */
    .main-menu {
        flex-direction: column;
        gap: 0;
    }

    .main-menu > li {
        width: 100%;
        border-bottom:  1px solid var(--border-color);
    }

    .main-menu > li > a {
        display: block;
        padding: 15px 0;
        font-weight: 600;
    }

    /* Mobile submenu styles */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding-left: 20px;
        background: var(--light-bg);
        transition: none;
        margin-top: 5px;
        border-radius: 4px;
    }

    .submenu.active {
        display: block;
    }

    .submenu li {
        border-bottom: 1px solid var(--border-color);
    }

    .submenu li:last-child {
        border-bottom: none;
    }

    .submenu li a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    /* Submenu toggle for mobile */
    .menu-item-has-children {
        position: relative;
    }

    .submenu-toggle {
        position: absolute;
        right: 0;
        top: 10px;
        width: 40px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        z-index: 5;
    }

    .submenu-toggle i {
        transition: transform 0.3s ease;
    }

    .submenu-toggle.active i {
        transform: rotate(180deg);
    }

    /* Prevent hover effects on mobile */
    .main-menu > li:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /*nav ul li:hover .submenu {
        display: none;
    }*/

    nav ul li.active .submenu {
        display: block;
    }

    .submenu li a {
        padding: 10px 0;
        color: #666;
    }

    
    .hero-arrow {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .hero-arrow-left {
        left: 15px;
    }
    
    .hero-arrow-right {
        right: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .section.page-hero {
        inset: 0;
        margin: auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content {
        padding: 60px 30px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Modern Layout Styles for Clinical Pathology Page */
.modern-layout {
    padding: 80px 0;
    scroll-snap-align: start;
}

.modern-section {
    margin-bottom: 100px;
    scroll-snap-align: start;
}

.modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.modern-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.modern-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modern-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modern-btn {
    background: #8B5CF6;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.modern-btn:hover {
    background: #7C3AED;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.service-icon {
    width: 24px;
    height: 24px;
    background: #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.treatment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.treatment-dot {
    width: 8px;
    height: 8px;
    background: #8B5CF6;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.treatment-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.treatment-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.reverse-grid {
    direction: rtl;
}

.reverse-grid > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .modern-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .modern-content h2 {
        font-size: 2rem;
    }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  /* Contact Section */
  .contact-section {
    text-align: center;
    padding: 100px 20px;
  }
  
  .contact-btn {
    background: #0056a6;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1rem;
  }
  
  /* Contact Grid */
  .contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    width: 280px;
    text-align: center;
    transition: 0.3s ease;
  }
  
  .contact-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
  }
  
  .contact-card .icon {
    background: #0056a6;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 15px;
  }
  
  .contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .contact-card p {
    color: #666;
    font-size: 0.95rem;
  }

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.map-wrapper {
    width: 500px;
    height: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
                linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

.map-placeholder i {
    font-size: 3rem;
    color: #0056a6;
    margin-bottom: 15px;
}

.map-text {
    text-align: center;
    z-index: 1;
    position: relative;
}

 /* Vision Section */
        .vision-section {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 50px;
            margin-bottom: 40px;
            transition: transform 0.3s ease;
        }

        .vision-section:hover {
            transform: translateY(-5px);
        }

        .vision-title {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .vision-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            border-radius: 2px;
        }

        .vision-content {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #555;
            text-align: justify;
        }

        /* Vision Points */
        .vision-points {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .vision-point {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background-color: #f8fafc;
            border-radius: 8px;
            transition: all 0.3s ease;
            border-left: 4px solid #3498db;
        }

        .vision-point:hover {
            background-color: #edf2f7;
            transform: translateX(5px);
        }

        .point-icon {
            margin-right: 15px;
            color: #27ae60;
            font-size: 1.3rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .point-text {
            font-size: 1.05rem;
            color: #2d3748;
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            border-radius: 12px;
            margin-top: 60px;
            margin-bottom: 60px;
        }

        .cta-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-block;
            padding: 14px 32px;
            background-color: white;
            color: #2c3e50;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            margin-top: 10px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
            background-color: #f1f1f1;
        }

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-panel,
    .contact-info-panel {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-header,
    .contact-content,
    .map-container {
        padding: 0 20px;
    }
    
}

 /* Responsive Design */
        @media (max-width: 992px) {
            .vision-points {
                grid-template-columns: 1fr;
            }
            
            .vision-section {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            
            .vision-title {
                font-size: 1.8rem;
            }
            
            .vision-content {
                font-size: 1rem;
            }
            
            .vision-section {
                padding: 30px 20px;
            }
            
            .container {
                padding: 20px 15px;
            }
        }

        @media (max-width: 480px) {
            
            .vision-title {
                font-size: 1.6rem;
            }
            
            .vision-point {
                padding: 15px;
            }
            
            .cta-title {
                font-size: 1.5rem;
            }
            
            .cta-button {
                padding: 12px 25px;
            }
        }


