/* Custom Fonts */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

/* Navigation Bar */
.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    color: #007bff;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.7);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: 600;
}

.hero-section p {
    font-weight: 300;
}

.hero-section .btn {
    font-weight: 500;
}

/* About Section */
.about-section .about-img {
    position: relative;
}

.years-experience {
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    text-align: center;
    border-radius: 50%;
}

.about-section h2 {
    font-weight: 600;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section ul li {
    font-size: 1rem;
}

.about-section ul li i {
    color: #007bff;
}

/* Services Section */
.services-section .service-item {
    transition: transform 0.3s, box-shadow 0.3s;
}

.services-section .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.services-section .icon {
    color: #007bff;
}

.services-section h5 {
    font-weight: 600;
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials-section .testimonial-item {
    transition: box-shadow 0.3s;
}

.testimonials-section .testimonial-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonials-section img {
    border-radius: 50%;
}

.testimonials-section h6 {
    font-weight: 600;
}

/* Appointment Section */
.appointment-section {
    background-image: url('images/appointment-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.appointment-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.8);
}

.appointment-section .container {
    position: relative;
    z-index: 2;
}

.appointment-section h2 {
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #343a40;
}

.footer p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        height: 80vh;
    }
}

@media (max-width: 767.98px) {
    .about-section .years-experience {
        top: -10px;
        left: -10px;
        width: 80px;
        height: 80px;
    }
}

/* Animations */
.animate__animated {
    visibility: visible;
}

/* Blog Section */
.blog-section .blog-post img {
    height: 200px;
    object-fit: cover;
}

.blog-section h5 {
    font-weight: 600;
}

.blog-section a {
    text-decoration: none;
}

.blog-section .btn {
    margin-top: 1rem;
}

/* Newsletter Section Styling */
.newsletter-section {
    background-color: #f9f9f9;
}

.newsletter-card {
    max-width: 700px;
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-card h2 {
    color: #007bff;
}

.newsletter-card p {
    color: #555;
}

/* Form Styling */
.newsletter-form input.form-control {
    border-radius: 0.3rem;
    border: 1px solid #ccc;
    padding: 0.8rem;
    font-size: 1rem;
}

.newsletter-form input.form-control:focus {
    border-color: #007bff;
    box-shadow: none;
}

.newsletter-form button {
    border-radius: 0.3rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .col-md-8,
    .newsletter-form .col-md-auto {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
        margin-top: 10px;
    }
}

/* Contact Form Container */
#contact-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); /* Stronger initial shadow */
    transition: box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

/* Contact Form Hover Effect */
#contact-form:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); /* Even stronger shadow on hover */
}



/* Form Labels */
#contact-form .form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Input Fields */
#contact-form .form-control {
    font-size: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    border: none solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9f9f9;
}

#contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    outline: none;
}

/* Placeholder Text */
#contact-form .form-control::placeholder {
    color: #aaa;
}

/* Submit Button Styling */
#contact-form button {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

#contact-form button:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #contact-form {
        padding: 1.5rem;
    }

    #contact-form .form-label {
        font-size: 0.95rem;
    }

    #contact-form .form-control {
        font-size: 0.95rem;
        padding: 0.65rem;
    }

    #contact-form button {
        font-size: 1rem;
    }
}

/* Social Media Icons */
.social-icons .social-link {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons .social-link:hover {
    transform: scale(1.2) rotate(10deg);
    color: #0056b3;
}







/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-icon {
    margin: 0;
}
