
@import url(./Nav.css);
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #eef2f6; /* Soft blue-gray for a soothing background */
    color: #333;
}

/* Contact Section Specific to contact_information_demo */
#contact_information_demo {
    padding: 50px 20px;
    background-color: #ffffff; /* Clean white background */
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    margin: 0px auto;
    max-width: 800px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    border: 2px solid #dae1e7; /* Light border for subtle definition */
}

#contact_information_demo h2 {
    margin-bottom: 30px;
    font-size: 36px;
    color: #1f3a93; /* Bold blue for a modern and professional look */
    font-weight: 700;
}

#contact_information_demo .contact-details p {
    margin: 20px 0;
    font-size: 18px;
    color: #444; /* Darker gray for better readability */
    line-height: 1.6;
}

#contact_information_demo .contact-details a {
    color: #1f3a93; /* Matching link color with header */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

#contact_information_demo .contact-details a:hover {
    color:darkgreen
}

.email-button {
    display: inline-block;
    padding: 7px 13px;
    background-color: #3498db; /* Vivid blue for standout button */
    color: #fff; /* White text for contrast */
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4); /* Soft blue shadow */
}

.email-button:hover {
    background-color: #2980b9; /* Slightly darker blue on hover */
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(41, 128, 185, 0.5);
}

.contact-details strong i{
    margin-left: 8px;
    color:rgba(31, 31, 241, 0.959);
    font-size: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    #contact_information_demo {
        padding: 50px 20px;
    }

    #contact_information_demo h2 {
        font-size: 32px;
    }

    #contact_information_demo .contact-details p {
        font-size: 17px;
    }

    .email-button {
        font-size: 13px;
        padding: 8px 14px;
    }
}

@media (max-width: 768px) {
    #contact_information_demo {
        padding: 40px 15px;
        margin:10px auto;
    }
    

    #contact_information_demo h2 {
        font-size: 28px;
    }

    #contact_information_demo .contact-details p {
        font-size: 16px;
    }

    .email-button {
        font-size: 13px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    #contact_information_demo {
        padding: 20px 10px;
    }

    #contact_information_demo h2 {
        font-size: 24px;
    }

    #contact_information_demo .contact-details p {
        font-size: 14px;
    }

    .email-button {
        font-size: 11px;
        padding: 4px 10px;
    }
}





/* enquiry form */


/* Enquiry Form */
#contact_me {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #e3f2fd;
}

.form-container {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;


}



    
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #1976d2;
    outline: none;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #1976d2;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #135ba1;
}



@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }

    input, textarea {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 15px;
    }

    input, textarea {
        font-size: 13px;
        padding: 12px;
    }

    button {
        font-size: 14px;
        padding: 12px;
    }
}


