/* Root Variables */
:root {
    --main-bg-color: #a86cfd;
    --main-hover-color: #c296ff;
    --text-color: #333;
    --light-text-color: #555;
    --background-color: #f9f9f9;
    --accent-color: #f3eaff;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Accessibility Styles */
.visually-hidden {
    position: absolute;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    overflow: hidden;
    white-space: nowrap;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--main-bg-color);
    outline-offset: 2px;
}

/* Header Styles */
.header-section {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: box-shadow 0.3s ease;
}

.header-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    white-space: nowrap;
    margin-top: 37px;
}

.header-logo img {
    margin-right: 20px;
    margin-top: -37px;
    height: 55px;
}

.header-nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header-nav-links a {
    position: relative;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 100;
    text-decoration: none;
    padding: 5px 0;
}

.header-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.3s ease;
}

.header-nav-links a:hover::after {
    width: 100%;
}

.header-contact-button {
    position: relative;
    display: inline-block;
    margin-left: auto;
    padding: 10px 20px;
    max-width: 200px;
    background-color: var(--main-bg-color);
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border: 2px solid var(--main-bg-color);
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    font-family: "uniwars", sans-serif;
    font-size: 12px;

}

.header-contact-button span {
    position: relative;
    z-index: 2;
}

.header-contact-button::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -75px;
    width: 50px;
    height: 155px;
    background: #fff;
    opacity: 0.6;
    transform: rotate(35deg);
    transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.header-contact-button:hover::after {
    left: 120%;
}

@media (max-width: 768px) {
    .header-nav-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Us Section */
.contact-us-section {
    padding: 80px 5%;
    background-color: var(--accent-color);
}

.contact-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 45%;
    margin-bottom: 40px;
    padding-right: 100px;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-family: "uniwars", sans-serif;
    font-size: 2rem;

}

.contact-info p {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info a {
    color: var(--main-bg-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--main-hover-color);
}

.contact-details {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin: 40px 0;
}

.contact-details i {
    margin-right: 10px;
    color: var(--main-bg-color);
}

/* Social Icons in Contact Info */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--main-bg-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--main-hover-color);
}

.footer-social-icons a i {
    font-size: 18px;
}

/* Contact Form */
.contact-form {
    flex: 1 1 45%;
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-family: "uniwars", sans-serif;

}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fdfdfd;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--main-bg-color);
    outline: none;
}

.contact-form button {
    align-self: flex-start;
    padding: 15px 20px;
    background-color: var(--main-bg-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "uniwars", sans-serif;
    font-size: 12px;

}

.contact-form button:hover {
    background-color: var(--main-hover-color);
}

@media (max-width: 768px) {
    .contact-us-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        flex: 1 1 100%;
        padding-right: 0;
    }
}

/* Footer Styling */
footer {
    background-color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tse-footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.tse-footer-links {
    display: flex;
    color: #545454;
    font-size: 14px;
}

/* Footer Links Color */
.tse-footer-links a {
    color: rgb(84, 84, 84); /* Ensures original color is retained */
    /*text-decoration: none;*/
}

.tse-footer-link1 {
    border-right: 1.5px solid #545454;
    padding-right: 10px;
    margin-right: 10px;
}

.tse-footer-logo {
    width: 300px;
    height: 60px;
    overflow: hidden;
    background-color: transparent;
}

.tse-footer-logo img {
    height: 200px;
    transform: translateY(-50px);
}

.tse-footer-social-icons {
    display: flex;
    gap: 15px;
    width: 300px;
    justify-content: center;
}

.tse-footer-social-icons a {
    font-size: 20px;
    color: #1d1d1b;
    text-decoration: none;
}

.tse-footer-email-icon {
    background-color: transparent;
    padding: 6px 9px;
    border-radius: 5px;
}

.tse-footer-email-icon i {
    color: #545454;
}

.tse-footer-linkedin-icon {
    background-color: var(--main-bg-color);
    padding: 0 8px;
    border-radius: 5px;
    margin-bottom: 10px;
    transform: translateY(5px);
}

.tse-footer-linkedin-icon i {
    color: #fff;
}

.tse-footer-social-icons a i {
    vertical-align: middle;
}

.tse-footer-copyright {
    width: 300px;
    font-size: 14px;
    color: #545454;
    text-align: right;
}

@media (max-width: 768px) {
    .tse-footer-content {
        flex-direction: column;
        align-items: center;
    }

    .tse-footer-logo,
    .tse-footer-social-icons,
    .tse-footer-copyright {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

.contact-details .fab.fa-linkedin-in {
    background-color: var(--main-bg-color);
    color: #fff;
    padding: 0 4px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 5px;
    margin-right: 7px;
    font-size: 15px;
}

/* Responsive Adjustments for Mobile Devices */
@media (max-width: 600px) {
    .mobile {
    display: none;
    }
}
