:root {
  --primary: #033a7c;
  --primary-dark: #0e7490;
  --secondary: #f0fdfa;
  --accent: #14b8a6;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --white: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}


.inner-banner img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary) !important;
}

.navbar-brand i {
    color: var(--accent);
}

.nav-link {
    color: var(--dark) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.header__top {
    background: #033a7c;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-appointment {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
}

/* Hero Slider Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(15, 23, 42, 0.70) 0%, rgba(8, 145, 178, 0.5) 100%); */
}

.hero-slide-1 {
    background-image: url("/placeholder.svg?height=900&width=1600");
}

.hero-slide-2 {
    background-image: url("/placeholder.svg?height=900&width=1600");
}

.hero-slide-3 {
    background-image: url("/placeholder.svg?height=900&width=1600");
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.btn-primary-custom {
    background: var(--primary);
    border: none;
    color: var(--white);
}

.btn-primary-custom:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators button.active {
    background: var(--primary);
}

/* Stats Section */
.stats-section {
    /* background: var(--white); */
    background: #63ac68;
    padding: 3rem 0;
    position: relative;
    z-index: 20;
}

.stats-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 80px rgba(8, 145, 178, 0.2);
}

.stats-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
}

.stats-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.stats-info p {
    color: var(--gray);
    margin: 0;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--light);
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.about-feature span {
    font-weight: 600;
    color: var(--dark);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15); */
}

.about-image img {
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(8, 145, 178, 0.4);
}

.experience-badge h4 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.experience-badge p {
    margin: 0;
    font-weight: 500;
}

/* Services Section */
.services-section {
    margin: 3rem 0;
    background: var(--white);
}

.service-card {
    background: var(--primary);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(8, 145, 178, 0.15);
    border-color: transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    /* background: var(--secondary); */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent);
    gap: 1rem;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
}

.why-us-section .section-subtitle {
    color: var(--accent);
}

.why-us-section .section-title {
    color: var(--white);
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.why-card-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.why-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 3rem 0;
    background: var(--light);
    background: #69b969;
}

.team-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(8, 145, 178, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}
.team-info {
    background: #0e509e;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.team-info p {
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--light);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--gray);
    margin: 0;
    font-size: 0.875rem;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/placeholder.svg?height=400&width=1600") center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-content .btn {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--light);
}

.contact-info-card {
    background: #ffffff4a;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(8, 145, 178, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-info-text h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    color: var(--gray);
    margin: 0;
}

.contact-form {
    background: #ffffff4a;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgb(0 0 0 / 0%);
}

.contact-form .form-control {
    background: var(--light);
    border: none;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.2);
}

.contact-form textarea {
    resize: none;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--primary);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .stats-section {
        margin-top: 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
