
/* Skip to Content Link Styling */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: #007BFF;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}


/* Services Section */
.services {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.service-item img {
    max-width: 100px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #666;
}


/* Testimonials Section */
.testimonials {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonials blockquote {
    font-size: 18px;
    font-style: italic;
    color: #666;
    margin: 20px auto;
    max-width: 800px;
    line-height: 1.5;
}

/* Modal Default Hidden State */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 30px;
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    /* transition: background 0.3s ease; */
    padding-left: 500px;
    padding-top: 10px;
   
}


.close-btn:hover {
  
    color: darkred;
}

/* Contact Us Section */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

input:focus, textarea:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
     /* width: 100%; */
    /* margin-top: 20px;  */
}
    #submit-btn{
        width: 100%;
       top: -10px;
    }

    @media (max-width: 915px) {
        .close-btn {
            margin-right: 20px;
            margin-top: 5px;
        }
    }
     #contact-heading h1{
        color: #000;
     }