@import url('https://fonts.googleapis.com/css2?family=Ramaraja&family=Krub:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    background-color: #101B2B;
}
body {
    font-family: 'Krub', sans-serif;
    background-color: #D9D9D9;
    color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    position: relative;
}
header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}
header nav .back-btn,
header nav .menu-toggle {
    pointer-events: auto;
}
.back-btn {
    background-color: #E9D0A7;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.back-btn:hover {
    transform: scale(1.05);
}
.back-btn img {
    width: 28px;
    height: 28px;
}
.menu-toggle {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.menu-toggle:hover {
    transform: scale(1.1);
}
.menu-toggle img {
    width: 40px;
    height: 40px;
}
.header-background {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
main {
    padding: 40px 32px;
    background-color: #D9D9D9;
    flex: 1;
}
.contact-form-section {
    margin-bottom: 60px;
}
.section-title {
    font-family: 'Krub', sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 5px;
    color: #000000;
}
.section-subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-group label {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}
.input-row {
    display: flex;
    gap: 10px;
    width: 100%;
}
.input-row .input-field {
    width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
}
.input-field {
    background-color: #A1A1A1;
    border: none;
    border-radius: 25px;
    padding: 15px 20px;
    font-family: 'Krub', sans-serif;
    font-size: 14px;
    color: #000000;
    width: 100%;
}
.input-field::placeholder {
    color: #4A4A4A;
}
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-with-icon .input-field {
    padding-left: 50px;
    width: 100%;
}
.input-icon {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
}
.textarea-field {
    background-color: #A1A1A1;
    border: none;
    border-radius: 20px;
    padding: 20px;
    font-family: 'Krub', sans-serif;
    font-size: 14px;
    color: #000000;
    min-height: 150px;
    resize: vertical;
}
.textarea-field::placeholder {
    color: #4A4A4A;
}
.btn-submit {
    background-color: #A1A1A1;
    color: #000000;
    border: none;
    border-radius: 25px;
    padding: 12px 40px;
    font-family: 'Krub', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    align-self: center;
    transition: background-color 0.3s ease;
}
.btn-submit:hover {
    background-color: #4B5563;
}
.contact-info-section {
    margin-bottom: 60px;
}
.contact-info-section .section-title {
    margin-bottom: 30px;
}
.contact-info-box {
    background-color: #9E9E9E;
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-icon {
    width: 24px;
    height: 24px;
}
.contact-item span {
    font-size: 16px;
    color: #000000;
}
.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.map-image {
    width: 100%;
    height: auto;
    display: block;
}
footer {
    background-color: #101B2B;
    padding-top: 2rem;
}
.social-media {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0rem;
}
.social-media a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-media a:hover {
    transform: scale(1.1);
}
.social-media img {
    width: 29px;
    height: 29px;
}
.footer-nav {
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    color: #E9D0A7;
}
.footer-nav-line1,
.footer-nav-line2 {
    margin: 0.5rem 0;
}
.footer-nav a {
    color: #E9D0A7;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: #E9D0A7;
}
.footer-nav span {
    margin:  0.10rem;
    color: #ffffff;
}
.footer-hero {
    position: relative;
    width: 100%;
    height: 275px;
}
.footer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #101B2B 0%, #101B2B 10%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.footer-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
