/* Dr. Shahan Saleem - Plastic Surgery Website */
/* Professional & Elegant Color Palette */

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

:root {
    --primary-dark: #1a3a52;
    --primary-navy: #2c3e50;
    --accent-gold: #d4a574;
    --accent-rose: #f5e6e0;
    --accent-blush: #fce4ec;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-white: #ffffff;
    --border-light: #e8e8e8;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    scroll-behavior: smooth;
}

/* ===== ANIMATION KEYFRAMES ===== */
/* Prevent animation flashing - maintain final state */
*[data-animation].animated {
    will-change: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-dark);
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-navy));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(26, 58, 82, 0.2);
}

.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:hover {
    color: var(--accent-gold);
    width: 100%;
}

.cta-link {
    background: linear-gradient(135deg, var(--accent-gold), #c9a961);
    color: var(--bg-white) !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.cta-link::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    transition: all 0.3s ease;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(245, 230, 224, 0.5), rgba(252, 228, 236, 0.3));
    position: relative;
}

/* Carousel Container */
.carousel-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(26, 58, 82, 0.1), rgba(26, 58, 82, 0.4));
    z-index: 2;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    color: var(--primary-dark);
    font-size: 24px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 3;
    font-weight: bold;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: var(--accent-gold);
    border-color: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-btn {
    background: linear-gradient(135deg, var(--accent-gold), #c9a961);
    color: var(--bg-white);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 58, 82, 0.15);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: var(--bg-white);
}

.services h2 {
    text-align: center;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 60px;
}

/* Services Carousel - Infinite Scroll */
.services-carousel {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.services-scroll {
    display: flex;
    gap: 30px;
    animation: scrollLeft 60s linear infinite;
    width: max-content;
}

.services-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-75%);
    }
}

.services-carousel .service-card {
    flex: 0 0 280px;
    min-width: 280px;
}

.service-card {
    background: var(--accent-rose);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-blush);
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 58, 82, 0.1);
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-blush));
}

.service-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(245, 230, 224, 0.3), rgba(44, 62, 80, 0.03));
}

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

.about-photo {
    position: relative;
}

.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(26, 58, 82, 0.15);
    object-fit: cover;
}

.about h2 {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-features li {
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 500;
}

.check-mark {
    color: var(--accent-gold);
    margin-right: 10px;
    font-weight: bold;
}

.col-md-6 {
    flex: 1;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 100px 0;
    background: var(--bg-white);
}

.gallery h2 {
    text-align: center;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #f5f5f5;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 82, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay p {
    color: var(--bg-white);
    font-size: 22px;
    font-weight: 600;
}

.gallery-button-container {
    text-align: center;
    margin-top: 60px;
}

.view-all-btn {
    background: linear-gradient(135deg, var(--accent-gold), #c9a961);
    color: var(--bg-white);
    padding: 15px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

/* ===== FULL GALLERY PAGE ===== */
.full-gallery {
    padding: 80px 0;
    background: var(--bg-white);
    min-height: 100vh;
}

.full-gallery h1 {
    text-align: center;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.back-btn {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 58, 82, 0.3);
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--bg-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 28px;
    padding: 15px 25px;
    text-decoration: none;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: whatsapp-pulse 2s infinite;
    font-weight: 600;
    min-width: 200px;
    justify-content: center;
}

.whatsapp-btn i {
    font-size: 28px;
}

.whatsapp-btn span {
    font-size: 14px;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 40px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(245, 230, 224, 0.5), rgba(252, 228, 236, 0.3));
}

.testimonials h2 {
    text-align: center;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(26, 58, 82, 0.1);
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(26, 58, 82, 0.15);
}

.stars {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h4 {
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact h2 {
    text-align: center;
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact > .container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 32px;
    color: var(--accent-gold);
    margin-top: 5px;
}

.info-item h3 {
    color: var(--primary-dark);
    font-size: 18px;
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-gold), #c9a961);
    color: var(--bg-white);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 14px;
}

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

.social-links a {
    color: var(--accent-gold);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--bg-white);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-white);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .nav-links.active {
        max-height: 500px;
        opacity: 1;
        padding: 20px;
    }

    .nav-links a {
        animation: slideIn 0.4s ease forwards;
    }

    .nav-links.active a:nth-child(1) {
        animation: slideIn 0.4s ease 0.1s forwards;
    }

    .nav-links.active a:nth-child(2) {
        animation: slideIn 0.4s ease 0.2s forwards;
    }

    .nav-links.active a:nth-child(3) {
        animation: slideIn 0.4s ease 0.3s forwards;
    }

    .nav-links.active a:nth-child(4) {
        animation: slideIn 0.4s ease 0.4s forwards;
    }

    .nav-links.active a:nth-child(5) {
        animation: slideIn 0.4s ease 0.5s forwards;
    }

    .nav-links.active a:nth-child(6) {
        animation: slideIn 0.4s ease 0.6s forwards;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 0;
        position: relative;
        min-height: 600px;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        height: 400px;
        margin-bottom: 40px;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        background: rgba(255, 255, 255, 0.95);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(26, 58, 82, 0.1);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .services h2,
    .gallery h2,
    .about h2,
    .testimonials h2,
    .contact h2 {
        font-size: 36px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer .container {
        flex-direction: column;
        gap: 20px;
    }

    .services-scroll {
        gap: 20px;
        animation: scrollLeft 50s linear infinite;
    }

    .services-carousel .service-card {
        flex: 0 0 240px;
        min-width: 240px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .full-gallery h1 {
        font-size: 36px;
    }

    .gallery-grid-full {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content img {
        max-height: 80vh;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        min-width: 180px;
        font-size: 24px;
    }

    .whatsapp-btn i {
        font-size: 24px;
    }

    .whatsapp-btn span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 8px;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .logo-text {
        font-size: 14px;
        font-weight: 600;
    }

    .carousel-container {
        height: 300px;
        margin-bottom: 30px;
    }

    .carousel-prev,
    .carousel-next {
        padding: 8px 12px;
        font-size: 18px;
    }

    .carousel-dots {
        bottom: 10px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content {
        padding: 20px;
    }

    .services h2,
    .gallery h2,
    .about h2,
    .testimonials h2,
    .contact h2 {
        font-size: 28px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }
}
