:root {
    --primary-green: #ffffff;
    --secondary-green:  #37a8ee;
    --dark-green:  #37a8ee;
    --light-green: #ffffff; 
    --snow-blue: #3498db;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Navbar Styling */
/* Centered Navbar with Enhanced Styling */




.custom-navbar {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--snow-bluek) !important;
    margin-right: 30px;
    transition: transform 0.3s ease;
}

.custom-navbar-brand:hover {
    transform: scale(1.05);
    color: var(--snow-blue) !important;

}
.custom-navbar {
    background-color: white !important;
    color: #333 !important;
}

.custom-navbar .navbar-brand {
    color: #333 !important;
    
}

.custom-navbar .nav-link {
    color: #333 !important;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: (black) !important;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none !important; /* Remove underline */
}

.navbar-brand img {
    height: 100px; /* Increase height */
    width: auto; /* Maintain aspect ratio */
    max-width: 200px; /* Optional max width */
    object-fit: contain; /* Ensures logo looks good */

}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--light-green );
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--snow-blue) !important;
}

.nav-link:hover::before {
    width: 100%;
}


/* Hero Section */
.hero-section {
background-size: cover;
background-position: center;
height: calc(100vh - 80px); /* Subtract navbar height */
display: flex;
align-items: center;
justify-content: center; /* Horizontal centering */
text-align: center;
padding-top: 80px; /* Match navbar height */
color: rgb(0, 0, 0);
}
.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0; /* Adds vertical spacing */
    background-color: #f4f4f4; /* Optional background color */
}

.hero-text-container {
    max-width: 800px; /* Limits width */
    padding: 0 15px; /* Adds side padding */
}

.hero-text-container h1 {
    font-size: 3rem; /* Adjust size as needed */
    margin-bottom: 20px;
}

.hero-text-container p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-quote1 {
    padding: 16px 24px;
    background-color: #37a8ee;
    color: #37a8ee(0, 0, 0);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-quote1:hover {
    background-color:#37a8ee;
    transform: scale(1.05);
    box-shadow:  4px 15px rgba(0,0,0,0.2)
 }

 .btn-quote1:hover {
    background-color:#37a8ee; /* Green color */
    border-color: #2fd2fa;
    padding: 10px 20px;
    border-radius: 50px; /* Makes button round */
    transition: all 0.3s ease;
 }

    .quote1-button-container {
        margin-top: 20px; /* Space above button */
        margin-bottom: 40px; /* Space below button */
    } 
/* Service Cards */
.services-section {
    padding: 90px 0;
}

.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; 
}

.service-card {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    text-align: center;
    width: 300px;
    height: 253px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-green); 
    margin-bottom: 17px;
    
}

/* Responsive design */
@media (max-width: 992px) {
    .d-flex {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        margin-bottom: 20px;
    }
}
  
/* Portfolio Section */

.portfolio-section {
    padding: 80px 0;
}

.portfolio-card {
    width: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: scale(1.05);
}

.portfolio-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    background-color: #919191; /* Placeholder color */
    }
/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 15px;
    width: 80%;
    max-width: 600px;
    position: relative;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

/* Seasonal Services */
.seasonal-services {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.seasonal-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease;
    height: 260px;
    width: 250px;
}

.seasonal-card:hover {
    transform: translateY(-15px);
}

.seasonal-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}
.btn-success {
text-decoration: none !important;
    background-color:  #37a8ee; /* Green color */
    border-color: #37a8ee;
    padding: 10px 20px;
    border-radius: 50px; /* Makes button round */
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #27ae60;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.quote-button-container {
    margin-top: 20px; /* Space above button */
    margin-bottom: 40px; /* Space below button */
}

/* Responsive spacing */
@media (max-width: 768px) {
    .quote-button-container {
        margin-top: 20px;
        margin-bottom: 40px;
    }
}
   /* Sun and Cloud Animations */
   .hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #ffffff);
}

.sun {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #FFD700;
    border-radius: 50%;
    top: 40%;
    right: 10%;
    box-shadow: 0 0 50px #FFD700;
    animation: sun-move 30s infinite alternate;
    
}  
.cloud-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud-move-left-to-right {
    position: absolute;
    opacity: 0.8;
    /* Adjust these values to fit your image */
    max-width: 200px; 
    top: 30%;
    left: -200px; /* Start off-screen on the left */
    animation: cloud-move-left-to-right 20s linear infinite;
}
    .cloud-move-right-to-left {
         position: absolute;
        opacity: 0.8;
        max-width: 300px; 
        right: -200px; /* Start off-screen on the right */
        top: 60%; /* Vertical position */
        animation: cloud-move-right-to-left 25s linear infinite; /* Adjust duration as needed */  
    }

    @keyframes cloud-move-right-to-left { 
        0% { 
            transform: translateX(0%); /* Start from right side */
        
        }
        100% { 
            transform: translateX(-100vw); /* Move completely to left side */
        
        }
    }

  
/* Add more cloud styles as needed */

@keyframes cloud-move-left-to-right {
    0% { transform: translateX(0%); }
    100% { transform: translateX(100vw); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cloud {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sun, .cloud {
        display: none;
    }
}
@keyframes sun-move {
    0% { 
        transform: translateX(0);
        right: -100px; 
    }
    100% { 
        transform: translateX(-100vw);
        right: 100%; 
    }
}
@keyframes sun-rays {
    from { transform: translate(-50%, -50%) scale(1); }
    to { transform: translate(-50%, -50%) scale(1.2); }
}

.contact-section {
    background-color: #f4f4f9;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.contact-info {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-details h3 {
    color: #2ecc71;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-method i {
    color: #2ecc71;
    margin-right: 15px;
    font-size: 1.5rem;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #2ecc71;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #27ae60;
}



.contact-form {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.form-group {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 50px;
    padding: 12px 20px;
}
.form-control:focus {
    border-color: #37a8ee;
    box-shadow: 0 0 0 0.2rem #37a8ee(46,204,113,0.25);
    outline: none;
}
.btn-quote {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    color: #ffffff;
}


.email-signup-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 80px 0;
}

.signup-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
}

.discount-highlight {
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2em;
}

.email-form .form-group {
    margin-bottom: 15px;
}

.signup-button {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    border-color: #3498db;
    transition: all 0.3s ease;
}

.signup-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.coupon-display {
    margin-top: 20px;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
}

.coupon-code {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.coupon-code span {
    background-color: #2ecc71;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
}

.coupon-terms {
    font-size: 0.8em;
    color: #666;
}
.site-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.customer-reviews-footer {
    background-color: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}



.review-slider {
    max-width: 100%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.review-container {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 100%;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    color: #333;
}

.review-card.active {
    opacity: 1;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 10px;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    justify-content: center;
}

.stars {
    display: inline-block;
}

.stars input {
    display: none;
}

.stars label {
    float: right;
    padding: 5px;
    font-size: 24px;
    color: #ddd;
    transition: all .2s;
}

.stars label:before {
    content: '★';
}

.stars input:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
    color: #ffc107;
    transform: scale(1.2);
}

.review-form-container {
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .customer-reviews-footer {
        padding: 15px;
    }
}

.stars input:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
    color: #ffc107;
    transform: scale(1.2);
}

.review-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}