﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #007b94;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .btn:hover {
        background: #1c6cb0;
        transform: translateY(-2px);
    }

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 50px;
        margin-right: 10px;
    }

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2a7cc7;
}

.nav-menu {
    display: flex;
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    font-weight: 500;
    color: #333;
    padding: 10px 0;
    display: inline-block;
    transition: color 0.3s;
}

    .nav-link:hover {
        color: #2a7cc7;
    }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.3s;
}

    .dropdown-item:hover {
        background: #f8f9fa;
        color: #2a7cc7;
    }

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-image::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

.hero-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .hero-btn:hover {
        background: #ff4f4f;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 36px;
        color: #007b94;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: #0a0a0a;
        }

    .section-title p {
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.about-text {
    flex: 1;
}

    .about-text h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #007b94;
    }

.about-icons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .about-item i {
        font-size: 30px;
        color: #1d5172;
        flex-shrink: 0;
        margin-top: 5px;
    }

    .about-item h4 {
        font-size: 20px;
        margin-bottom: 8px;
        color: #007b94;
    }

    .about-item p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }

/* Services slider container */
#services {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

    .services-title span {
        color: #007b94;
        font-weight: 700;
    }

.services-viewport {
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

    .services-viewport:active {
        cursor: grabbing;
    }

.services-track {
    display: flex;
    transition: transform 0.3s ease-out;
}

.service-card {
    flex: 0 0 auto;
    width: 300px;
    margin: 0 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #007b94;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.5;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.carousel-btn {
    background: #007b94;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

    .carousel-btn:hover {
        background: #2980b9;
    }

.dots-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: background 0.3s;
}

    .dot.active {
        background: #007b94;
        transform: scale(1.2);
    }

@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }

    .service-card {
        width: 280px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }

    .service-card {
        width: 260px;
        padding: 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
}
/* Why Choose Us Section */
.why-us {
    background-color: #e6ebf0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        background: #2a7cc7;
        color: white;
    }

        .feature-card:hover h3,
        .feature-card:hover .feature-icon {
            color: white;
        }

.feature-icon {
    font-size: 40px;
    color: #343b42;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #007b94;
    transition: color 0.3s;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2a7cc7;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 45px;
    gap: 40px;
    justify-content: space-between;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #3b3c3c;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2a7cc7;
        }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

.submit-btn {
    background-color: #007b94;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .submit-btn:hover {
        background-color: #1c5fa3;
    }

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    padding: 8px;
}

    .info-card h3 {
        color: #5c5c5c;
        font-size: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom-style: groove;
        margin-bottom: 20px;
    }

        .info-card h3 i {
            color: #007b94;
            font-size: 24px;
        }

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .info-item i {
        color: #007b94;
        font-size: 20px;
        width: 30px;
        flex-shrink: 0;
    }

.info-content {
    flex: 1;
}

    .info-content .label {
        font-weight: 600;
        color: #2a7cc7;
        display: block;
        margin-bottom: 3px;
        font-size: 14px;
    }

    .info-content .value {
        color: #272727;
        font-size: 17px;
        font-weight: 500;
    }

.social-links {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: #12293a;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 18px;
    }

        .social-links a:hover {
            background-color: #1c5fa3;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .social-links a.facebook:hover {
            background-color: #0866ff;
        }

        .social-links a.instagram:hover {
            background: linear-gradient( 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888 );
        }

        .social-links a.youtube:hover {
            background-color: #ff0000;
        }

.map {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

    .map iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* Footer */
footer {
    background: #12293a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-column h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: #2a7cc7;
    }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links a {
        color: #ccc;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: #2a7cc7;
        }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
    font-size: 14px;
}

/* Home Sample Collection */
.home-sample {
    padding: 80px 20px;
    background: #f9fafa;
}

    .home-sample .section-title {
        text-align: center;
        margin-bottom: 40px;
    }

        .home-sample .section-title h2 {
            font-size: 32px;
            color: #007b7f;
            margin-bottom: 10px;
        }

        .home-sample .section-title p {
            color: #555;
            font-size: 18px;
        }

.home-sample-content {
    max-width: 900px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

    .home-sample-content .features h3 {
        margin: 20px 0 15px;
        color: #007b7f;
        font-size: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .home-sample-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .home-sample-content ul li {
            margin-bottom: 12px;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .home-sample-content ul li i {
                color: #007b7f;
                font-size: 18px;
            }

    .home-sample-content .cta {
        margin-top: 25px;
        padding: 15px;
        background: #e6f7f8;
        border-left: 4px solid #007b7f;
        font-size: 17px;
        font-weight: 500;
    }

        .home-sample-content .cta i {
            color: #d63384;
            margin-right: 8px;
        }

        .home-sample-content .cta .highlight {
            color: #007b7f;
            font-weight: bold;
            text-decoration: none;
        }

            .home-sample-content .cta .highlight:hover {
                text-decoration: underline;
            }

.footer-logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-btn {
        padding: 14px 32px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        flex: none;
        width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        background: white;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

        .nav-menu.active {
            left: 0;
        }

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 10px;
    }

    .nav-item.active .dropdown {
        max-height: 500px;
    }

    .hero {
        min-height: 500px;
        height: 80vh;
        margin-top: 70px;
    }

        .hero h1 {
            font-size: 2.4rem;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.5;
        }

    .hero-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .hero-content {
        padding-top: 100px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 32px;
    }

    .info-card h3 {
        margin-left: 0;
    }

    .info-item {
        margin-left: 0;
    }

    .social-links {
        margin-left: 0;
    }

    .map {
        margin-left: 0;
    }

    .home-sample {
        padding: 50px 15px;
    }

        .home-sample .section-title h2 {
            font-size: 26px;
        }

    .home-sample-content {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 450px;
        height: 75vh;
    }

        .hero h1 {
            font-size: 2rem;
            line-height: 1.3;
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 20px;
            padding: 0 10px;
        }

    .hero-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .hero-content {
        padding-top: 80px;
        width: 95%;
    }

    .contact {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 14px;
    }

    .info-card {
        padding: 0;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .hero {
        min-height: 400px;
        height: 70vh;
    }

        .hero h1 {
            font-size: 1.8rem;
        }

        .hero p {
            font-size: 0.95rem;
        }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 60px 10px 0;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo img {
        height: 40px;
    }
}

/* For very small devices in landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .dropdown-item a {
        display: block;
        padding: 12px 20px;
        color: #333;
    }

        .dropdown-item a:hover {
            color: #2a7cc7;
            background: #f8f9fa;
        }
}

/* Book Appointment button styles */
.book-appointment {
    margin-left: auto; /* pushes it to the right corner */
}

.book-btn {
    background-color: #007b94; /* green */
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

    .book-btn:hover {
        background-color: #007b94; /* darker green on hover */
        transform: translateY(-2px);
    }
