﻿:root {
    --primary-color: #2e3092;
    --secondary-color: #44c3f3;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --white: #fff;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.call-link {
    text-decoration: none;
    color: #2e3092; /* default color */
    transition: color 0.3s ease;
}

    .call-link:hover {
        color: #34353d; /* hover color */
    }

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 500;
}

    .btn-primary:hover {
        background-color: #24267a;
        border-color: #24267a;
    }

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    font-weight: 500;
}

    .btn-secondary:hover {
        background-color: #3ab0e0;
        border-color: #3ab0e0;
    }

/* Top Bar Styles */
.top-bar {
    background-color: var(--light-color);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: "Open Sans", sans-serif;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 40px; /* Adjust based on your actual logo */
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 2px;
}

.logo-tagline {
    font-family: "Open Sans", sans-serif;
    font-size: 0.6rem;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 5px;
    min-width: 16px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-container {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .contact-info {
        width: 100%;
        text-align: center !important;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
    }
}

/* Navbar */
.navbar {
    padding: 15px 0;
    background-color: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
    color: var(--dark-color) !important;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
    position: relative;
}

    .nav-link:before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    .nav-link:hover:before,
    .nav-link.active:before {
        width: 100%;
    }

    .nav-link.active {
        color: var(--primary-color) !important;
        font-weight: 600;
    }

/* Mobile specific styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }

    .nav-item {
        margin-bottom: 8px;
    }

    .btn-primary {
        width: 100%;
        margin-top: 10px;
    }
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.dropdown-item {
    padding: 8px 15px;
    font-weight: 500;
}

    .dropdown-item:hover {
        background-color: var(--primary-color);
        color: var(--white) !important;
    }

/* Slider Section */
.swiper {
    width: 100%;
    height: 85vh;
    min-height: 600px;
}

.swiper-reviewSection {
    width: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 20px; /* Added padding to arrows */
}

.swiper-button-next {
    right: 30px !important; /* Adjusted position */
}

.swiper-button-prev {
    left: 30px !important; /* Adjusted position */
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.6);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 24px;
        font-weight: bold;
    }

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-links a:hover {
        color: var(--white);
        padding-left: 5px;
    }

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Social Icons */
.social-icons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1000;
}

    .social-icons a {
        background-color: white;
        padding: 10px;
        border-radius: 50%;
        color: var(--primary-color);
        font-size: 18px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        text-decoration: none !important;
    }

        .social-icons a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

/* Call Now Button */
.call-now {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    text-decoration: none;
}

    .call-now i {
        font-size: 24px;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(68, 195, 243, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(68, 195, 243, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(68, 195, 243, 0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .top-bar .contact-info {
        text-align: left !important;
        margin-top: 10px;
    }

    .navbar-brand {
        display: block;
        font-weight: 700;
        color: var(--primary-color);
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .social-icons {
        display: none;
    }

    .swiper-button-next,
    .swiper-button-prev {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        text-align: center;
    }

        .top-bar .d-flex {
            flex-direction: column;
        }

    .swiper {
        height: 70vh;
        min-height: 500px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .services-section,
    .reviews-section,
    .social-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .swiper {
        height: 60vh;
        min-height: 400px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        padding: 8px 10px !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
        }

    .review-slider {
        padding: 0 20px;
    }
}
/* Services Section - Updated with new design */
.services-section {
    padding: 80px 0;
    background: linear-gradient( rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9) ), url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80") no-repeat center center;
    background-size: cover;
    text-align: center;
    position: relative;
}

.services-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

    .services-title:after {
        content: "";
        display: block;
        width: 80px;
        height: 2px;
        background: var(--primary-color);
        margin: 15px auto 30px;
    }

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto 40px;
}

.service-card {
    width: 180px;
    position: relative;
}

.service-icon-box {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.service-icon {
    font-size: 40px;
    color: var(--white);
}

.service-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.view-all-btn {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Reviews Section Styles */
.reviews-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.stars-container {
    margin: 0 auto 30px;
    color: #ffd700;
    font-size: 28px;
    letter-spacing: 5px;
}

.review-slider {
    margin: 0 auto;
    padding: 0 30px 40px;
}

.review-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 700px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.review-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

.leave-review-btn {
    margin-top: 20px;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

    .leave-review-btn:hover {
        background-color: var(--primary-color);
        color: white;
    }

@media (max-width: 768px) {
    .review-card {
        padding: 30px;
    }

    .review-text {
        font-size: 1.1rem;
    }

    .stars-container {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* Social Section - Updated to match reference exactly */
.social-section {
    padding: 80px 0;
    background-color: var(--white);
}

.social-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

.social-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.social-box {
    flex: 1;
    min-width: 250px;
    height: 200px;
    background: linear-gradient( rgba(46, 48, 146, 0.8), rgba(46, 48, 146, 0.8) ), url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-box:nth-child(even) {
        background: linear-gradient( rgba(245, 245, 245, 0.8), rgba(245, 245, 245, 0.8) ), url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80") no-repeat center center;
        background-size: cover;
        color: var(--primary-color);
    }

    .social-box:hover {
        transform: scale(1.05);
    }

.social-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.social-text {
    font-weight: 500;
    text-align: center;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: var(--white);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.welcome-text {
    flex: 1;
}

.welcome-image {
    flex: 1;
    text-align: center;
}

    .welcome-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

    .welcome-title span {
        display: block;
        font-size: 3rem;
        color: var(--secondary-color);
    }

.welcome-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.meet-doctors-btn {
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .welcome-content {
        flex-direction: column;
    }

    .welcome-text,
    .welcome-image {
        flex: auto;
        width: 100%;
    }

    .welcome-image {
        order: -1;
        margin-bottom: 40px;
    }
}

/* Blogs Content CSS */
.blog-container {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Full-width breadcrumb container */
.breadcrumb-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #2e3092;
    padding: 30px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

/* Back button */
.back-button {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.back-button i {
    margin-right: 5px;
}



/* Main Content Layout */
.content-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-list {
    flex: 2;
    order: 1;
}

.sidebar {
    order: 2;
}

/* Blog Entries */
.blog-entry {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgb(109 86 86 / 8%);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-left: 4px solid #2e3092;
}

.blog-image {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

/* Sidebar */
.sidebar-box {
    background: rgb(109 86 86 / 8%);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

    .sidebar-box img {
        max-width: 180px;
        margin-bottom: 15px;
        height: auto;
    }

.logo-text {
    margin-bottom: 20px;
}

.logo-main {
    font-weight: 600;
    color: #2e3092;
}

/* Buttons */
.appointment-btn {
    background: #2e3092;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
}

    .appointment-btn:hover {
        background: #1a1b5e;
        transform: translateY(-2px);
    }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

    .pagination a {
        color: #2e3092;
        padding: 8px 16px;
        text-decoration: none;
        border: 1px solid #dee2e6;
        margin: 4px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

        .pagination a.active {
            background-color: #2e3092;
            color: white;
            border: 1px solid #2e3092;
        }

/* Links */
.read-more {
    color: #2e3092;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

    .read-more:hover {
        text-decoration: underline;
    }

.breadcrumb-link {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

/* Mobile Styles */
@media (min-width: 768px) {
    .content-container {
        flex-direction: row;
    }

    .blog-entry {
        flex-direction: row;
    }

    .blog-image {
        flex: 0 0 250px;
        height: 180px;
    }

    .sidebar {
        position: sticky;
        top: 20px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-container {
        padding: 0 15px 0 40px;
    }

    .back-button {
        left: 10px;
        font-size: 0.9rem;
    }

    .blog-heading {
        font-size: 1.5rem;
    }

    .blog-entry {
        padding: 15px;
    }
}
/* Blog Details CSS*/
.blog-detail-container {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Full-width header */
.blog-header-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #2e3092;
    padding: 30px 0;
    margin-bottom: 30px;
    height: 120px; /* Fixed height for consistent centering */
    display: flex;
    align-items: center;
}

.blog-header-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.back-button {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: absolute;
    left: 20px;
    z-index: 1;
}

    .back-button i {
        margin-right: 5px;
    }


.title-container {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
}

.blog-heading {
    text-align: center;
    margin-bottom: 0;
    color: #ffff;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

/* Content Styles */
.featured-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-title {
    color: #2e3092;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #2e3092;
    font-size: 0.95rem;
    gap: 10px;
}

.content {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 40px;
}

    .content h2 {
        color: #2e3092;
        margin: 30px 0 15px;
        font-size: 1.5rem;
    }

    .content p {
        margin-bottom: 20px;
    }

/* Connect Section */
.connect-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.connect-title {
    color: #2e3092;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2e3092;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

    .social-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.connect-text {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Footer Elements */
.categories {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #6c757d;
    font-size: 0.9rem;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #2e3092;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 30px;
    border: none;
    font-size: 1rem;
}

    .back-to-blog:hover {
        background: #1a1b5e;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .back-to-blog i {
        margin-right: 8px;
        font-size: 14px;
    }

/* Mobile Styles */
@media (max-width: 767px) {
    .blog-header-wrapper {
        height: 100px;
        padding: 20px 0;
    }
    

    .blog-header-container {
        padding: 0 15px 0 50px;
    }

    .back-button {
        left: 15px;
        font-size: 0.9rem;
    }

    .blog-title {
        font-size: 1.5rem;
    }

    .featured-image {
        max-height: 250px;
        margin-bottom: 20px;
    }

    .connect-section {
        padding: 25px 15px;
        margin: 30px 0;
    }

    .content h2 {
        font-size: 1.3rem;
        margin: 25px 0 10px;
    }
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    padding: 12px 20px 12px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .whatsapp-float:hover {
        background: #128C7E;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

.whatsapp-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 22px;
}

.whatsapp-text {
    font-weight: 500;
}

/* WhatsApp popup form */
.whatsapp-popup {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1001;
    transform: scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .whatsapp-popup.active {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--secondary-color);
    color: white;
    border-radius: 10px 10px 0 0;
}

    .popup-header h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0 0 4px 10px;
}

/* Form styles */
#whatsappForm {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-family: inherit;
        font-size: 14px;
        transition: border 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
        }

    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }

.whatsapp-submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
}

    .whatsapp-submit-btn:hover {
        background: #128C7E;
    }

/* Responsive adjustments */
@media (max-width: 480px) {
    .whatsapp-popup {
        width: 90vw;
        right: 5vw;
        bottom: 80px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}