.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: goldenrod;
    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;
    }
}


/* team */

.gradient-section-ourteam {
    background:linear-gradient(#2f2e2e, #626161, #999696, #b4b3b3);
    padding: 60px 0;
    color: darkgoldenrod;
    text-align: center;
}

.container-ourteam {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-ourteam {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: bold;
}

.team-ourteam {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member-ourteam {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.team-member-ourteam:hover {
    transform: scale(1.05);
}

.team-member-ourteam img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member-ourteam h3 {
    color: burlywood;
    margin: 10px 0 5px 0;
    font-size: 1.5em;
}

.team-member-ourteam p {
    color: white;
    font-size: 1.2em;
    margin: 0 0 15px 0;
}

.social-links-ourteam a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.2em;
    transition: color 0.3s ease-in-out;
}

.social-links-ourteam a:hover {
    color: goldenrod; 
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-ourteam {
        flex-direction: column;
        align-items: center;
    }
}

/* contact form */

.gradient-section-contact {
    background: linear-gradient(#b4b3b3, #626161, #2f2e2e, #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(255, 255, 255, 0.1);
    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;
}

/* map */

.map-container {
    width: 100%;
    overflow: hidden;
  }
  iframe {
    width: 100%;
    height: 400px; /* Adjust the height as needed */
    border-style: solid;
    border-color: #000000;
  }