/* Base Styles */
:root {
    --primary-color: #0072b5;
    --secondary-color: #00a896;
    --accent-color: #f76c6c;
    --dark-color: #333;
    --light-color: #f9f9f9;
    --text-color: #555;
    --text-dark: #333;
    --white: #fff;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;

}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
}

.section-header.left-align {
    text-align: left;
}

.section-header.left-align p {
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: capitalize;
    transition: var(--transition);
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.secondary-btn:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.logo h1 span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}


.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.appointment-btn {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 30px;
}

.appointment-btn:hover {
    background-color: var(--secondary-color);
}

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    padding: 0;
    margin-top: 70px;
}

.hero-swiper {
    width: 100%;
    height: 600px;
}

.swiper-slide {
    position: relative;
}

/* .slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/BG1\ \(1\).jpeg') no-repeat center center/cover;
    height: auto;
    width: 100%;
} */
.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/4.jpg');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    height: auto;
    width: 100%;
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/usama.jpg');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    height: auto;
    width: 100%;
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/usama3\ \(2\).jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    width: 100%;

}

.slide-4 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/usama8.jpg');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    height: auto;
    width: 100%;
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    color: var(--white);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content .btn {
    animation: fadeInUp 1.4s ease-out;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* ================================================================================== */
/* Services Section */

/* Section height to make it cover full screen */
.services-section {
    padding: 80px 0;
    min-height: 120vh;
    /* Height of the entire section */
}

/* Swiper container padding */
.services-swiper {
    padding: 20px 0 50px;
}

/* VIP Card Styling */
.service-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 103vh;
    /* Height of the card increased to 60vh */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

/* Card Hover Effects */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

/* Image Styling */
.service-image {
    width: 100%;
    height: 60%;
    /* Image takes the top part of the card */
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers the area properly */
    border-radius: 15px 15px 0 0;
    /* Rounded top corners */
}

/* Service Content Styling */
.service-content {
    padding: 20px;
    height: 40%;
    /* Content area takes the remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-content a {
    margin-top: auto;
    /* Button is pushed to the bottom */
}

/* Button Styling */
.secondary-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.secondary-btn:hover {
    background-color: var(--primary-color-dark);
    color: black;
}

/* Cursor Dot */
/* Cursor Dot (Fast & Snappy) */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: black;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
    z-index: 10000;
    /* Faster, snappy */
}

/* Cursor Circle (Smoother & Slower) */
.cursor-circle {
    width: 30px;
    height: 30px;
    border: 2px solid black;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-out;
    z-index: 10000;
    /* Slower, creates a trailing effect */
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: visible;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(37, 211, 102, 0.7);
    /* More opacity for stronger glow */
    border-radius: 50%;
    animation: pulse 0.8s infinite;
    /* Faster: was 1.5s, now 0.8s */
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(2);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    background: #25d366;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}


/* .services-section { */
/* background-color: var(--light-color);
}

.services-swiper {
    padding: 20px 0 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.service-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 114, 181, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
} */
/* ====================================================================================== */
/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.about-content p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Updated Contact Section Styling */
.floating-label {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
    z-index: 0;
}

.form-group input:focus~.floating-label,
.form-group select:focus~.floating-label,
.form-group textarea:focus~.floating-label,
.form-group input:not(:placeholder-shown)~.floating-label,
.form-group select:not([value=""]):not([value="null"])~.floating-label,
.form-group textarea:not(:placeholder-shown)~.floating-label {
    top: -12px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background-color: var(--white);
    padding: 0 5px;
    z-index: 2;
}

/* .form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: transparent;
} */

.contact-form .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-form .btn i {
    transition: transform 0.3s ease;
}

.contact-form .btn:hover i {
    transform: translateX(5px);
}

/* Django Messages */
.django-messages {
    margin-top: 20px;
}

.message {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.5s ease;
}

.message i {
    font-size: 1.2rem;
}

.message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.message.info {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border-left: 4px solid #17a2b8;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: fadeIn 0.3s ease;
}

.error-message::before {
    content: "\f071";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 5px;
}

.info-item p::before {
    content: ".";
    position: relative;
    top: -5px;
    right: 3px;
    font-weight: 900;
}

.contact-form {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form .btn {
    width: 100%;
}

/* Reviews Section */
/* New Reviews Section Styling */
.reviews-section {
    background-color: #f6f9fc;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 114, 181, 0.05);
    z-index: 0;
}

.reviews-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 114, 181, 0.05);
    z-index: 0;
}

.reviews-swiper {
    padding: 30px 10px 70px;
    position: relative;
    z-index: 1;
}

.review-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--primary-color);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.reviewer-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0, 114, 181, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

.reviewer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.reviewer-info p {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #FFD700;
    font-size: 1rem;
}

.review-quote {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: rgba(0, 114, 181, 0.1);
}

.review-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.reviews-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.reviews-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next {
    position: static;
    width: 50px !important;
    height: 50px !important;
    margin: 0;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover {
    background-color: var(--primary-color);
}

.reviews-swiper .swiper-button-prev::after,
.reviews-swiper .swiper-button-next::after {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-button-prev:hover::after,
.reviews-swiper .swiper-button-next:hover::after {
    color: var(--white);
}

.reviews-swiper .swiper-pagination {
    position: static;
    width: auto;
}

.reviews-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 114, 181, 0.3);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .review-card {
        min-height: 280px;
    }

    .reviewer-img {
        width: 60px;
        height: 60px;
    }

    .reviews-navigation {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .review-header {
        flex-direction: column;
        text-align: center;
    }

    .reviewer-img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .rating {
        justify-content: center;
    }

    .review-quote {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-about h3,
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-about h3 span {
    color: var(--primary-color);
}

.footer-about p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    display: grid;
    gap: 15px;
}

.footer-links a,
.footer-services a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ccc;
}

.footer-contact ul li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-dark);
    animation: modalFadeIn 0.3s;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.modal-body i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.modal-body h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.modal-body p {
    margin-bottom: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Media Queries */
@media screen and (max-width: 1024px) {

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {

    .service-card,
    .review-card {
        height: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-float i {
    margin-top: 3px;
}

.whatsapp-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Show WhatsApp button only on larger screens */
@media screen and (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

.social-icons {
    margin-top: 20px;
}

.social-icons>a {
    margin-left: 15px;
    color: white;
}