
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/img/doctor_cubes_about_bg.webp') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 120px 20px;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .btn {
            display: inline-block;
            background-color: #008B8B;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #008B8B;
        }

        .btn:hover {
            background-color: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* About Section */
        .about-section {
            padding: 80px 5%;
            background-color: white;
        }

        .section-title {
            font-size: 32px;
            color: #008B8B;
            margin-bottom: 15px;
            text-align: center;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            height: 3px;
            width: 80px;
            background-color: #FFD700;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-top: 50px;
            gap: 30px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h2 {
            color: #006666;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

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

        /* Stats */
        .stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-top: 40px;
            text-align: center;
        }

        .stat-item {
            flex: 1;
            min-width: 200px;
            padding: 20px;
            margin: 10px;
            background-color: #f1f9f9;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-item i {
            font-size: 36px;
            color: #008B8B;
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #006666;
            margin-bottom: 10px;
        }

        /* Why Choose Us */
        .why-us {
            padding: 80px 5%;
            background-color: #f1f9f9;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 50px;
        }

        .feature-card {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            margin: 15px;
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-card i {
            font-size: 40px;
            color: #008B8B;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 20px;
            color: #006666;
            margin-bottom: 15px;
        }

        /* Testimonial */
        .testimonial {
            padding: 80px 5%;
            background-color: white;
            text-align: center;
        }

        .testimonial-card {
            max-width: 800px;
            margin: 50px auto 0;
            padding: 30px;
            background-color: #f1f9f9;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .testimonial-card:before {
            content: '\201C';
            font-size: 80px;
            position: absolute;
            top: -20px;
            left: 20px;
            color: #008B8B;
            opacity: 0.3;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .testimonial-author {
            font-weight: 700;
            color: #006666;
        }

        /* Call to Action */
        .cta {
            padding: 80px 5%;
            background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }

        .cta .btn {
            background-color: #FFD700;
            color: #333;
            border-color: #FFD700;
        }

        .cta .btn:hover {
            background-color: transparent;
            color: white;
        }

        /* Footer */
        footer {
            background-color: #004444;
            color: white;
            padding: 50px 5% 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #FFD700;
        }

        .footer-column p {
            margin-bottom: 15px;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }

        .footer-column a:hover {
            color: #FFD700;
        }

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

        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: #FFD700;
            color: #004444;
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 15px;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav {
                margin-bottom: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .header-contact {
                margin-top: 10px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .about-content, .features {
                flex-direction: column;
            }
            
            .about-image {
                order: -1;
            }
        }
    /* Photo Gallery Styles - Enhanced Version */

/* Main Gallery Container */
.gallery-section {
    padding: 80px 5%;
    background-color: #f1f9f9;
    overflow: hidden;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.05) 0%, rgba(0, 102, 102, 0.05) 100%);
    z-index: 0;
}

.section-subtitle {
    text-align: center;
    color: #006666;
    font-size: 16px;
    margin: 0 auto 40px;
    max-width: 800px;
}

/* Gallery Layout & Container */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.gallery-slider {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Individual Gallery Items with 3D Effects */
.gallery-item {
    position: relative;
    min-width: 300px;
    height: 250px;
    margin: 0 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 139, 139, 0) 0%, rgba(0, 102, 102, 0.6) 100%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 30px rgba(0, 102, 102, 0.2);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Caption with Animation */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 70, 70, 0.9), transparent);
    color: white;
    padding: 20px 15px;
    font-size: 14px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Navigation Controls with Effects */
.gallery-nav {
    text-align: center;
    margin: 30px auto 0;
}

.gallery-nav button {
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 102, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-nav button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
}

.gallery-nav button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 102, 102, 0.4);
    background: linear-gradient(135deg, #006666 0%, #008B8B 100%);
}

.gallery-nav button:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.gallery-nav button:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 102, 102, 0.3);
}

.gallery-nav button i {
    position: relative;
    z-index: 1;
    font-size: 18px;
}

/* Featured Item Indicator */
.gallery-item.featured::after {
    content: 'Featured';
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FFD700;
    color: #004444;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 3;
    transform: rotate(5deg);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Gallery Pagination */
.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 102, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: #008B8B;
    transform: scale(1.2);
}

.pagination-dot:hover {
    background-color: #006666;
    transform: scale(1.2);
}

/* Fullscreen Preview */
.gallery-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-fullscreen.active {
    display: flex;
    opacity: 1;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-fullscreen.active .fullscreen-image {
    transform: scale(1);
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fullscreen-close:hover {
    transform: rotate(90deg);
}

/* Hover Effect Variations */
.gallery-item:nth-child(odd):hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

.gallery-item:nth-child(3n):hover {
    transform: translateY(-10px) rotateX(-5deg) rotateY(-3deg);
}

.gallery-item:nth-child(3n+1):hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-5deg);
}

/* Custom Animation Keyframes */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rotateShadow {
    0% {
        box-shadow: 0 10px 20px rgba(0, 102, 102, 0.2);
    }
    50% {
        box-shadow: 0 15px 25px rgba(0, 102, 102, 0.4), 0 5px 10px rgba(255, 215, 0, 0.2);
    }
    100% {
        box-shadow: 0 10px 20px rgba(0, 102, 102, 0.2);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 139, 139, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 139, 139, 0.8), 0 0 30px rgba(0, 102, 102, 0.5);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 139, 139, 0.5);
    }
}

/* Apply Animations */
.gallery-item {
    animation: floatIn 0.8s ease-out forwards, rotateShadow 5s infinite;
    animation-delay: calc(var(--item-index, 0) * 0.15s);
    opacity: 0;
}

.gallery-item.featured {
    animation: floatIn 0.8s ease-out forwards, glow 3s infinite;
    animation-delay: calc(var(--item-index, 0) * 0.15s);
}

/* Timeline Section Enhancement */
.timeline-section {
    padding: 80px 5%;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pattern_bg.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #008B8B, #006666);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 139, 139, 0.3);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
    perspective: 1000px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid #008B8B;
    border-radius: 50%;
    top: 15px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px rgba(0, 139, 139, 0.2);
}

.timeline-item:hover::after {
    background-color: #FFD700;
    box-shadow: 0 0 0 8px rgba(0, 139, 139, 0.3);
    transform: scale(1.2);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -10px;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.5s ease;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    border-left: 3px solid #008B8B;
}

.right .timeline-content {
    border-left: none;
    border-right: 3px solid #008B8B;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 0;
    height: 0;
    border-style: solid;
}

.left .timeline-content::before {
    right: -15px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent white;
}

.right .timeline-content::before {
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent white transparent transparent;
}

.timeline-item:hover .timeline-content {
    transform: rotateY(-5deg);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1);
}

.right:hover .timeline-content {
    transform: rotateY(5deg);
    box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-top: 0;
    color: #008B8B;
    font-size: 24px;
    position: relative;
    display: inline-block;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #FFD700;
}

/* Awards Section Enhancement */
.awards-section {
    background-color: #f1f9f9;
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 139, 139, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.awards-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 139, 139, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.awards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.award-item {
    flex: 0 0 300px;
    margin: 20px;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #008B8B, #006666);
}

.award-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.award-icon {
    font-size: 48px;
    color: #008B8B;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.award-item:hover .award-icon {
    transform: scale(1.2) rotateY(360deg);
    color: #FFD700;
}

.award-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: #006666;
    font-size: 18px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.award-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

.award-item:hover .award-title::after {
    width: 80%;
}

/* Media Queries */
@media (max-width: 768px) {
    .gallery-container {
        padding: 10px 0;
    }
    
    .gallery-item {
        min-width: 250px;
        height: 200px;
        margin: 0 10px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .left::after, .right::after {
        left: 20px;
    }
    
    .right {
        left: 0;
    }
    
    .left .timeline-content::before {
        left: -15px;
        border-width: 10px 15px 10px 0;
        border-color: transparent white transparent transparent;
    }
    
    .left .timeline-content {
        border-left: none;
        border-right: 3px solid #008B8B;
    }
    
    .timeline-item:hover .timeline-content,
    .right:hover .timeline-content {
        transform: rotateY(5deg);
        box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .award-item {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        min-width: 200px;
        height: 180px;
    }
    
    .gallery-nav button {
        width: 40px;
        height: 40px;
    }
    
    .award-item {
        flex: 0 0 100%;
        margin: 10px 0;
    }
}

/* Gallery Additional Animations */
@keyframes zoomEffect {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shineSweep {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    background-size: 200% 100%;
    transform: skewX(-20deg);
    animation: shineSweep 3s infinite;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}