body, ul, li, a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: Arial, sans-serif;
}

/* Header styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    padding: 15px 30px;
    position: relative;
    z-index: 100;
}

/* Logo styling */
.logo img {
    height: 120px;
}

/* Navigation container */
nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Centers navigation */
}

/* Navigation links */
nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

/* Hover effect */
nav ul li a:hover {
    text-decoration: underline;
    color: deepskyblue;
}

/* Get a Quote Button */
.quote-button {
    margin-left: auto; /* Pushes button to the right */
}

.quote-button a {
    background-color: rgb(109, 210, 244);
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.quote-button a:hover {
    background-color: deepskyblue;
}

/* Hamburger menu */
.hamburger {
    display: none;
    font-size: 40px;
    cursor: pointer;
    color: white;
    padding: 10px 15px;
}

/* Mobile menu - Hidden by default */
.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 220px;
    background-color: #222;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Show menu when active */
.mobile-menu.active {
    display: block;
    opacity: 0.95;
    transform: translateY(0);
}

.mobile-menu ul {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.mobile-menu ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    color: white;
    display: block;
    padding: 10px;
    transition: background 0.3s ease-in-out;
}

.mobile-menu ul li a:hover {
    background-color: deepskyblue;
    border-radius: 5px;
}

/* Mobile button inside menu */
.mobile-menu .quote-button {
    margin-top: 10px;
}

.mobile-menu .quote-button a {
    display: block;
    padding: 12px 20px;
    background-color: rgb(109, 210, 244);
    color: black;
    font-size: 20px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.mobile-menu .quote-button a:hover {
    background-color: deepskyblue;
}


/* Footer Styling */
footer {
    background-color: black;
    color: rgb(235, 229, 234);
    padding: 20px 30px;
    margin-top: 20px;
}

/* Flex container for footer sections */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Contact Info & Hours Styling */
.contact-info, .hours {
    width: 45%;
}

/* Footer Icons */
.icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Responsive styles for mobile */
@media screen and (max-width: 812px) {
    /* Hide nav and button on mobile */
    nav, .quote-button {
        display: none;
    }

    /* Show hamburger menu */
    .hamburger {
        display: block;
    }
}



/* Services section styling */
.services-section {
    background-image: url('images/pressure_wash.jpeg'); /* Add your image path here */
    background-size: cover;
    background-position: center;
    height: 500px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: space-around; /* Add more space between text and form */
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Services content styling */
.services-content {
    max-width: 45%; /* Slightly reduce width for more spacing */
    background-color: rgba(1, 1, 1, 0.7); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin-right: 20px; /* Add space between text and form */
}

.services-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.services-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Form styling */
#contact-form {
    background-color: rgba(0, 0, 0, 0.7); 
    padding: 0px 20px 20px;
    border-radius: 10px;
    width: 45%; 
    color: white;
    margin-left: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.8); 
    color: black;
}

.form-group textarea {
    resize: vertical; 
}

.contact-button {
    background-color: rgb(109, 210, 244);
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: 100%;
}

.contact-button:hover {
    background-color: deepskyblue;
}

@media screen and (max-width: 768px) {
    .services-section {
        flex-direction: column; 
        height: auto; 
        padding: 10px;
    }

    .services-content, #contact-form {
        max-width: 100%; 
        width: 100%;
        margin: 0 0 20px 0; 
    }

    .services-content h2 {
        font-size: 28px; 
    }

    .services-content p {
        font-size: 16px;
    }

    .contact-button {
        font-size: 16px;
    }
}

.why-choose-us {
    margin-top: 40px; 
    padding: 20px;
    max-width: 1200px; 
    margin: 0 auto;
}

.why-choose-us-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-choose-us-content img {
    margin-top: 30px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); 
}

.why-choose-us-text {
    width: 50%; 
}

.why-choose-us-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333; 
}

.why-choose-us-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555; 
}

.why-choose-us-text ul {
    list-style: none;
    padding: 0;
}

.why-choose-us-text ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555; 
}

.why-choose-us-text ul li strong {
    color: #000; 
}

/* Responsive Design for Why Choose Us Section */
@media screen and (max-width: 768px) {
    .why-choose-us-content {
        flex-direction: column; 
    }

    .why-choose-us-content img,
    .why-choose-us-text {
        width: 100%; 
    }

    .why-choose-us-text h2 {
        font-size: 28px; 
    }

    .why-choose-us-text p,
    .why-choose-us-text ul li {
        font-size: 16px; 
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button */
.dropbtn {
    cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #222;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0 0 5px 5px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 18px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: deepskyblue;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile menu dropdown (when hamburger is clicked) */
@media screen and (max-width: 812px) {
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
}

.exterior_cleaning {
    background-image: url('images/home_exterior.jpg');
    background-size: cover;
    background-position: center;
    height: 300px; 
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.exterior_cleaning h2{
    font-size: 48px;  
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
    padding: 20px;
    border-radius: 5px;
}

/* Services Description Section */
.services-description {
    max-width: 1000px;
    margin: 60px auto;  
    padding: 40px;      
    background-color: #efeded;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid rgb(109, 210, 244);
}
.services-description:nth-child(even) {
    background-color: rgb(229, 242, 244);
    border-left-color: #333;
}
.services-description + .services-description {
    margin-top: 80px;  
}
.services-description h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.services-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: rgb(109, 210, 244);
}
.services-description h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.services-description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: rgb(109, 210, 244);
}
.services-description p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 18px;
}

.services-description a {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgb(109, 210, 244);
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.services-description a:hover {
    background-color: white;
    color: rgb(109, 210, 244);
    border-color: rgb(109, 210, 244);
    transform: translateY(-2px);
}

.cta-button {
    display: block;
    width: 250px;
    margin: 30px auto;
    padding: 15px 25px;
    background-color: rgb(109, 210, 244);
    color: black;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: deepskyblue;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
    .services-description {
        padding: 0 15px;
        margin: 30px auto;
    }
    
    .services-description h2 {
        font-size: 24px;
        padding-bottom: 10px;
    }
    .services-description h3 {
        font-size: 22px;
        padding-bottom: 10px;
    }
    .services-description p {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }
    .services-description a {
        padding: 10px 20px;
        font-size: 16px;
    }
    .cta-button {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .exterior_cleaning h2 {
        font-size: 32px;
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .services-description h2 {
        font-size: 24px;
    }
    
    .services-description p {
        font-size: 15px;
    }
}
.house_washing {
    background-image: url('images/5.png');
    background-size: cover;
    background-position: center;
    height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.house_washing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); 
}

.house_washing h2 {
    font-size: 48px;  
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    padding: 25px 40px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.house_description {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.house_description h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.house_description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: rgb(109, 210, 244);
}

.house_description p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.materials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 0;
    list-style: none;
}

.materials-list li {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    transition: transform 0.3s ease;
}

.materials-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-section {
    text-align: center;
    margin: 60px auto;
    padding: 40px;
    background-color: rgb(109, 210, 244);
    border-radius: 10px;
    max-width: 800px;
}

.cta-section h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: rgb(109, 210, 244);
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
}
.surfaces-image {
    margin-top: 30px;
    text-align: center;
    padding: 0 20px; 
    
}

.surfaces-image img {
    max-width: 65%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee; 
    transition: transform 0.3s ease;
}
.surfaces-image img:hover {
    transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
    .house_washing {
        height: 300px;
    }
    
    .house_washing h2 {
        font-size: 42px;
        padding: 20px;
    }
    
    .house_description {
        padding: 30px 20px;
        margin: 40px auto;
    }
    
    .house_description h3 {
        font-size: 28px;
    }
    
    .materials-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    .surfaces-image {
        margin-top: 20px;
    }

}

@media screen and (max-width: 480px) {
    .house_washing h2 {
        font-size: 32px;
    }
    
    .house_description h3 {
        font-size: 24px;
    }
    
    .materials-list {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        width: 100%;
        padding: 12px;
    }

    surfaces-image img {
        border-radius: 5px;
    }
}
/*Gutter Cleaning Section*/
.gutter_cleaning {
    background-image: url('images/dirty-gutter.jpg');
    background-size: cover;
    background-position: center;
    height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gutter_cleaning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); 
}

.gutter_cleaning h2 {
    font-size: 48px;  
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    padding: 25px 40px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    text-align: center;
}
.gutter_description {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.gutter_description h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.gutter_description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: rgb(109, 210, 244);
}
.gutter_description h4 {
    font-size: 22px;
    position: relative;
}
.gutter_description p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    text-align: justify;
}

.gutter-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.gutter-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gutter-image img:hover {
    transform: translateY(-5px);
}

.warning-box {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    margin: 25px 0;
    border-radius: 0 5px 5px 0;
}

.benefits-list, .features-list {
    margin: 20px 0;
    list-style-type: none;
    padding-left: 20px;
}

.benefits-list li, .features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}
.benefits-list li::before,
.features-list li::before {
    content: "•"; 
    color: rgb(109, 210, 244);
    font-size: 24px; 
    position: absolute;
    left: 0;
    top: -2px; 
}

.service-area {
    background-color: #e9f7fe;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.service-area h4 {
    color: #1a73e8;
    margin-bottom: 10px;
}
/* Mobile Responsiveness - Improved Version */
@media screen and (max-width: 768px) {
    .gutter_cleaning {
        height: 250px; 
    }
    
    .gutter_cleaning h2 {
        font-size: 36px; 
        padding: 15px 25px;
        width: 90%;
    }
    
    .gutter_description {
        padding: 25px 15px;
        margin: 30px auto;
        border-radius: 8px;
    }
    
    .gutter_description h3 {
        font-size: 26px; 
        margin-bottom: 20px;
    }
    
    .gutter_description h3::after {
        width: 80px; 
        height: 3px;
    }
    
    .gutter_description h4 {
        font-size: 20px; 
        margin-top: 25px; 
    }
    
    .gutter-image {
        grid-template-columns: 1fr; 
        gap: 15px;
        margin: 30px 0; 
    }
    
    .warning-box {
        margin: 20px 0;
        padding: 12px;
    }
    
    .benefits-list, 
    .features-list {
        padding-left: 15px;
        margin: 15px 0;
    }
    
    .benefits-list li, 
    .features-list li {
        margin-bottom: 8px; 
        padding-left: 22px;
    }

    .benefits-list li::before,
    .features-list li::before {
        font-size: 20px;
        top: -1px; 
    }
    
    .service-area {
        padding: 15px;
        margin-top: 25px;
    }
}

@media screen and (max-width: 480px) {
    .gutter_cleaning {
        height: 200px; 
    }
    
    .gutter_cleaning h2 {
        font-size: 28px;
        padding: 12px 20px;
    }
    
    .gutter_description h3 {
        font-size: 22px; 
    }
    
    .gutter_description p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px; 
    }
    
    .cta-section {
        padding: 25px 15px;
        margin: 30px auto;
    }
    
    .cta-section h3 {
        font-size: 22px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 18px; 
    }
    
}

.pressure_washing {
    background-image: url('images/pressure_washer.jpeg');
    background-size: cover;
    background-position: center;
    height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pressure_washing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); 
}

.pressure_washing h2 {
    font-size: 48px;  
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    padding: 25px 40px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .pressure_washing {
        height: 300px;
    }
    
    .pressure_washing h2 {
        font-size: 42px;
        padding: 20px;
    }
    
}

@media screen and (max-width: 480px) {
    .pressure_washing h2 {
        font-size: 32px;
    }
    
}

.roof_washing {
    background-image: url('images/roof_wash.jpg');
    background-size: cover;
    background-position: center;
    height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.roof_washing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); 
}

.roof_washing h2 {
    font-size: 48px;  
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    padding: 25px 40px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .roof_washing {
        height: 300px;
    }
    
    .roof_washing h2 {
        font-size: 42px;
        padding: 20px;
    }
    
}

@media screen and (max-width: 480px) {
    .roof_washing h2 {
        font-size: 32px;
    }
    
}

.contact_page {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.contact_page h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.contact_page h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: rgb(109, 210, 244);
}

.contact_page h4 {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-page {
    margin-bottom: 20px;
    text-align: left;
}

.form-page input,
.form-page textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: white;
}

.form-page input:focus,
.form-page textarea:focus {
    border-color: rgb(109, 210, 244);
    outline: none;
    box-shadow: 0 0 0 2px rgba(109, 210, 244, 0.2);
}

.form-page textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-button {
    background-color: rgb(109, 210, 244);
    color: black;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
}

.contact-button:hover {
    background-color: deepskyblue;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .contact_page {
        padding: 30px 20px;
        margin: 40px auto;
    }
    
    .contact_page h2 {
        font-size: 28px;
    }
    
    .contact_page h4 {
        font-size: 16px;
    }
    
    .form-page input,
    .form-page textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .contact-button {
        padding: 12px;
        font-size: 16px;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .contact_page h2 {
        font-size: 24px;
    }
    
    .contact_page h4 {
        font-size: 15px;
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.gallery h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: rgb(109, 210, 244);
}
.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Lightbox Modal (for when images are clicked) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 20px;
    }
    
    .gallery img {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery img {
        height: 200px;
    }
    
    .close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
}