﻿body, html {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
}


.service-card .card-title {
    color: #0d6efd;
    font-weight: bold;
}


/* Testimonials */
.bg-gradient {
    background: linear-gradient(135deg, #0d6efd, #ff4fa3);
}


#testimonials p.lead {
    font-style: italic;
}


/* Booking Form */
#booking .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
}


#booking button {
    background: linear-gradient(90deg, #0d6efd, #ff4fa3);
    border: none;
    border-radius: 25px;
}


    #booking button:hover {
        opacity: 0.9;
    }


/* Contact */
#contact {
    background: #000;
}


/* Floating Buttons */
.whatsapp-float, .call-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    z-index: 1001;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.3);
}


.whatsapp-float {
    right: 80px;
    background: #25d366;
}


.call-float {
    right: 20px;
    background: #0d6efd;
}
.carousel-caption {
    bottom: 20%;
    text-align: center;
}

    .carousel-caption h2 {
        display: block;
        font-weight: bold;
        font-size: 2.5rem;
        margin-bottom: 15px;
        background: linear-gradient(90deg, #0d6efd, #ff4fa3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .carousel-caption p {
        display: block;
        font-size: 1.2rem;
        margin-top: 10px;
        background: linear-gradient(90deg, #ff4fa3, #0d6efd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-caption h2,
.carousel-caption p {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

/* Delay description so it appears after heading */
.carousel-caption h2 {
    animation-delay: 0.3s;
}

.carousel-caption p {
    animation-delay: 0.8s;
}
.carousel-item img {
    width: 100%;
    height: auto; /* yeh rakhiye fixed vh ki jagah */
    object-fit: cover;
}
.navbar {
    position: sticky; /* sticky instead of absolute */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, #0d6efd, #ff4fa3); /* Blue → Pink */
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.navbar-brand span {
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 15px;
}

    .navbar-nav .nav-link:hover {
        color: #ffe6f0 !important;
    }

.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #ff4fa3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

    .service-card img {
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
    }

    .service-card .card-title {
        color: #0d6efd;
        font-weight: bold;
        margin-top: 10px;
    }

    .service-card .card-text {
        color: #555;
        font-size: 0.95rem;
    }

#about {
    background: #f9f9f9;
}

    #about img {
        border-radius: 15px;
    }

.btn-gradient {
    background: linear-gradient(90deg, #0d6efd, #ff4fa3);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-gradient:hover {
        opacity: 0.9;
    }

#news {
    background: #fff;
}

    #news .card {
        transition: transform 0.3s, box-shadow 0.3s;
        border-radius: 15px;
        overflow: hidden;
    }

        #news .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

    #news .card-title {
        font-weight: 600;
    }

.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #ff4fa3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Section background */
#news {
    background: linear-gradient(135deg, #e3f2fd, #fce4ec);
    padding: 60px 0;
    border-radius: 0 0 50px 50px;
}

/* Card with gradient */
.colorful-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .colorful-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }

    /* Card Title Gradient */
    .colorful-card .card-title {
        font-weight: 600;
        background: linear-gradient(90deg, #0d6efd, #ff4fa3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* Gradient Badge */
.gradient-badge {
    background: linear-gradient(90deg, #0d6efd, #ff4fa3);
    color: #fff;
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 0.85rem;
}

/* Appointment Section */
#appointment {
    background: linear-gradient(135deg, #e3f2fd, #fce4ec);
    border-radius: 50px 50px 0 0;
}

.appointment-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
}

#appointment .form-control,
#appointment .form-select {
    border-radius: 15px;
    border: 2px solid #ddd;
    padding: 12px 15px;
    transition: all 0.3s ease-in-out;
}

    #appointment .form-control:focus,
    #appointment .form-select:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
    }

.btn-gradient {
    background: linear-gradient(90deg, #0d6efd, #ff4fa3);
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    transition: all 0.3s;
    border: none;
}

    .btn-gradient:hover {
        opacity: 0.9;
        transform: translateY(-3px);
    }
#footer {
    background: #000;
    color: #fff;
}

    #footer h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    #footer p, #footer a {
        font-size: 0.95rem;
    }

.social-links a {
    display: inline-block;
    font-size: 1.6rem;
    margin-right: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        color: #0d6efd;
        transform: scale(1.2);
    }

.footer-bottom {
    background: #111;
}
