.gradient-section-details {
    background: linear-gradient(#000000, #1d1d1d, #2f2e2e, #626161, #999696, #b4b3b3);
    padding: 60px 0;
    color: darkgoldenrod;
    text-align: center;
    position: relative;
}

.container-details {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title-details {
    font-size: 3em;
    margin-bottom: 40px;
    font-weight: bold;
    color: #AA771C;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    visibility: visible;
}

.main-image {
    max-width: 80%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.main-image:hover {
    transform: scale(1.05);
}

.section-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: white;
    text-align: justify;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .section-title-details {
        font-size: 2.5em;
        top: 40%;
    }

    .main-image {
        max-width: 90%;
    }

    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title-details {
        font-size: 2em;
        top: 30%;
    }

    .main-image {
        max-width: 100%;
    }

    .section-description {
        font-size: 0.9rem;
    }
}


/* services */


.services-gradient-section {
    background-color: #2f2f2f;
    padding: 60px 0;
    color:goldenrod;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    letter-spacing: 1.5px;
}

.services-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.services-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    width: calc(25% - 20px);
    min-width: 280px;
}

.services-item img {
    width: 100%;
    display: block;
}

.services-desc {
    padding: 20px;
    text-align: center;
}

.services-desc h2 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #ffffff;
}

.services-desc p {
    font-size: 1em;
    line-height: 1.5em;
    color: #ffffff;
}

.services-item:hover {
    transform: scale(1.05);
}

.services-button {
    margin-top: 15px;
    padding: 10px 20px;
    background:transparent;
    border: 2px solid goldenrod;
    border-radius: 5px;
    color: goldenrod;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.services-button:hover {
    background: #424040;
    color: #ffffff;
    border: 2px solid black;
}

@media (max-width: 768px) {
    .services-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .services-item {
        width: 100%;
    }
}

/* contact form*/

.gradient-section-contact {
    background: linear-gradient(#2f2f2f, #000000);
    padding: 60px 0;
    color: goldenrod;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container-contact {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: rgba(78, 76, 76, 0.342);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: burlywood;
}

input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: solid 2px #2f2e2e;
    border-radius: 5px;
    font-size: 16px;
    background-color:#333 ;
}

textarea {
    resize: vertical;
}

button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: transparent;
    color:burlywood;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #424040;
    color: white;
}


