:root {
    --primary-color: #0077B6;      /* Water Blue */
    --primary-dark: #023E8A;       /* Navy Blue */
    --secondary-color: #90E0EF;    /* Aqua */
    --light-gray: #F1F9FF;
    --text-color: #1F2933;
    --dark-gray: #5F6C7B;
}
/* ===== FLOATING WHATSAPP FINAL FIX ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366 !important; /* WhatsApp Green */
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.35);
    z-index: 9999;
}

/* Icon color force white */
.whatsapp-float i {
    color: #ffffff !important;
}

/* Hover effect */
.whatsapp-float:hover {
    background-color: #1EBE5D !important;
    transform: scale(1.1);
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: var(--primary-color);
            color: white;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .logo i {
            margin-right: 10px;
            font-size: 1.8rem;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--secondary-color);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
       .hero {
            background: linear-gradient(rgba(0, 119, 182, 0.85), rgba(2, 62, 138, 0.85)), url('images/Water\ Tank\ Cleanning.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .btn {
            display: inline-block;
            background-color: white;
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-right: 15px;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .btn:hover {
            background-color: transparent;
            color: white;
        }

        .btn-outline {
            background-color: transparent;
            color: white;
        }

        .btn-outline:hover {
            background-color: white;
            color: var(--primary-color);
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .service-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .service-content {
            padding: 25px;
            
        }

        .service-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .service-content p {
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .service-content a {
            color: var(--primary-color);
            font-weight: bold;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .service-content a i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .service-content a:hover i {
            transform: translateX(5px);
        }

        /* About Section */
        .about {
            padding: 80px 0;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--dark-gray);
        }

        .about-img {
            flex: 1;
            height: 400px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature {
            text-align: center;
            padding: 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .feature i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .feature h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(rgba(0, 119, 182, 0.9), rgba(2, 62, 138, 0.9)), url('images/Water\ Tank\ Cleanning.jpg');
            padding: 80px 0;
            background-size: cover;
            background-position: center;
            color: white;
        }

        .contact-content {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .contact-details {
            margin-bottom: 20px;
        }

        .contact-details h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .contact-details p {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .contact-details i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .contact-form {
            flex: 1;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            color: var(--text-color);
        }

        .contact-form h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group textarea {
            height: 120px;
            resize: none;
        }

       /* WhatsApp Submit Button */
.form-btn {
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn:hover {
    background-color: #1EBE5D;
    transform: scale(1.05);
}


        /* Footer */
        footer {
            background-color: #222;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .footer-column p {
            margin-bottom: 15px;
            color: #aaa;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about-content {
                flex-direction: column;
            }

            .contact-content {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            nav ul.active {
                left: 0;
            }

            nav ul li {
                margin: 20px 0;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-text h2 {
                font-size: 1.8rem;
            }

            .contact-info h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 80vh;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .btn {
                margin-bottom: 15px;
            }

            .services,
            .about,
            .features,
            .contact {
                padding: 50px 0;
            }
        }
/* Service Rating */
.star-rating i {
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
    margin-right: 5px;
}

.star-rating i.active {
    color: #FFC107;
}






.book-now {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.book-now:hover {
    text-decoration: underline;
}

/* Modern Review Box */
.review-section {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.review-name,
.review-text {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
}

.review-text {
    height: 70px;
    resize: none;
}

.review-btn {
    width: 100%;
    background: linear-gradient(135deg, #0077B6, #023E8A);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.review-btn:hover {
    opacity: 0.9;
}

/* Review list */
.reviews-list {
    margin-top: 10px;
    max-height: 150px;
    overflow-y: auto;
}

.review-item {
    background: #f8fafc;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.review-stars {
    color: #FACC15;
}


.rating-container {
    margin-top: 10px;
}


.star-rating i {
    transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating i:hover {
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .star-rating i {
        font-size: 24px;
        margin-right: 8px;
    }

    .star-rating i:active {
        transform: scale(1.3);
    }
}
/* END OF STYLE.CSS */