@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&family=Philosopher&family=Poppins:wght@300&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;

}

:root {
    --font-01: 'Poppins', sans-serif;
    --font-02: 'Philosopher', sans-serif;

    /* color  */
    --global-color-0: #B76E79;
    --global-color-1: #DCAE96;
    --global-color-2: #A9A9A9;
    --global-color-3: lightblue;
    --global-color-4: #f7f7f7;
    --global-color-5: #fff;
    --global-color-6: #A9A9A9;
    --global-color-7: #BFD1FF;

}

/* sectionFirst */

.sectionFirst {
    padding: 12rem 0% 15rem;
}

.sectionFirst::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: var(--global-color-2); */
    background-image: url("../Images/contact_background.png");
    z-index: -1;
    opacity: .7;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Contact Form Styling */
.form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Form Headline */
.f-head {
    font-size: 28px;
    font-weight: bold;
    color: #DCAE96;
    margin-bottom: 10px;
}

/* Paragraph Styling */
.f-para {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Contact Info Styling */
.contact-info p {
    font-size: 16px;
    color: #333;
    margin: 5px 0;
}

/* Email & Phone Links */
.contact-info a {
    color: #B76E79; /* Rose gold color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.contact-info a:hover {
    color: #a65d68;
}

.sectionFirst h1 {
    text-align: center;
    font-size: 5rem;
    font-family: var(--font-02);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.AboutMeInDetail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.AboutMeInDetail:nth-child(even) {
    flex-direction: row-reverse;
}

.img img {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.infoAboutMe {
    max-width: 60%;
}

.infoAboutMe h1 {
    font-size: 24px;
    color: #333;
}

.p-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.para {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.infoAboutMe h2 {
    font-size: 20px;
    color: #333;
    margin-top: 20px;
}

.iconLink {
    margin-top: 10px;
}

.iconLink i {
    margin-right: 10px;
    color: #666;
}

.iconLink a {
    text-decoration: none;
    color: #007BFF;
}

.iconLink a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .AboutMeInDetail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .AboutMeInDetail:nth-child(even) {
        flex-direction: column;
    }

    .img img {
        max-width: 100%;
    }

    .infoAboutMe {
        max-width: 100%;
    }
}

/* <!-- second section  --> */

.FormMap {
    display: flex;
    padding: 4rem 5%;
}

.FormMap .map {
    width: 70%;
    /* border: 1px solid green; */
    display: flex;
    align-items: center;
    width: 100%;
    flex-basis: 70%;
    flex-shrink: 5;
    width: 100%;

}

.FormMap .map iframe {
    width: 100%;
    border-radius: 7px;

}

.FormMap .form {
    flex-basis: 33%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    box-shadow: 0 0 12px 1px var(--global-color-6);
    border-radius: 7px;
    position: relative;
    z-index: 1;
}

.FormMap .form .f-head {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-02);
    color: #DCAE96;
}

.FormMap .form .f-para {}

.FormMap .form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: .1rem;
}

.FormMap .form form input,
.FormMap .form form select,
.FormMap .form form textarea,
.FormMap .form form button {
    padding: .7rem 1rem .7rem .5rem;
    border: none;
    box-shadow: 0 0 1px 1px var(--global-color-6);
    border-radius: 5px;
    outline: none;
}

.FormMap .form form input {}

::placeholder {
    color: var(--global-color-3);
}

.FormMap .form form select {
    color: var(--global-color-3);
}

.FormMap .form form section option {}

.FormMap .form form textarea {}

.FormMap .form form button {
    padding: 17px 30px;
    font-size: 17px;
    text-transform: uppercase;
    width: fit-content;
    background-color: var(--global-color-0);
    border: 1px solid var(--global-color-0);
    box-shadow: none;
    font-weight: 700;
    color: #fff;
    transition: all .4s ease;
}

.FormMap .form form button:hover {
    background-color: var(--global-color-1);
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center aligns content */
    text-align: center;
}

/* Quick Links List */
.box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px; /* Space between Quick Links and Icons */
}

.box ul li {
    margin: 5px 0;
}

.box ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

/* Quick Links Hover Effect */
.box ul li a:hover {
    color: #B76E79; /* Rose Gold */
}

.icons {
    display: flex;
    justify-content: center; /* Center icons */
    align-items: center;
    gap: 15px; /* Space between icons */
    margin-top: 10px;
}

.social-icon {
    font-size: 15px; /* Adjusted icon size */
    color: #555; /* Neutral dark gray */
    background-color: white; /* Background for contrast */
    border-radius: 50%; /* Makes it circular */
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15); /* Subtle shadow */
}

.title:hover, .title:hover .subtitle {
    color: #B76E79; /* Rose gold color */
}

.social-icon:hover {
    background-color: #B76E79; /* Rose Gold Background */
    color: white; /* Icon turns white */
    transform: scale(1.1); /* Slight pop effect */
}