@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Serif+Kannada:wght@100..900&family=Poppins:wght@300;400;500;700;800&display=swap');
html{
    font-family: "Jost", sans-serif;
}

body{
    background: #f6f6ff;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.contact-form, .contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-form h2, .contact-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline-color: var(--secondary-color);
    resize: none;
}

.contact-form button {
    margin: 0 auto;
    width: 100%;
    padding: 12px;
    background-image: linear-gradient( 109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.contact-form button:hover {
    background-image: linear-gradient( -109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
}

.contact-details {
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 5px;
}

.contact-info p {
    font-size: 16px;
    margin: 10px 0;
}

.contact-info i {
    margin-right: 10px;
}

.map {
    margin-top: 40px;
    width: 100%;
}

.contact-form,.contact-details {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-details img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
}

.address-container{
    width: 100%;
    margin: 10px auto;
    background: #fff;
    padding: 20px;
}

.address-items{
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 20px;
}

.address-container h1,
.head{
    padding: 0 0 10px 0;
    border-bottom: 2px dashed #ddd;
}
.address-item .head{
    font-size: 1.5rem;
    font-weight: 600;
}
.address-item p{
    padding-bottom: 10px;
    border-bottom: 2px dashed #ddd;
    font-size: 0.9rem;
}
.address-btn{
    display: grid;
    gap: 10px;
}

.address-btn a,
.map-btn{
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.address-btn a:hover{
    opacity: 0.8;
}
.whatsapp-btn{
    background: #dbf4de;
    color: #000;
}
.whatsapp-btn i{
    color: green;
}
.call-btn,
.map-btn{
    background-image: linear-gradient( 109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
    color: var(--white-color);
}
.map-btn{
    margin-top: 5px;
}
.call-btn:hover,
.map-btn:hover{
    background-image: linear-gradient( -109.6deg,  rgba(204,0,0,1) 11.2%, rgba(68,0,0,1) 100.6% );
}
.map-img{
    width: 100%;
    height: 230px;
}
.map-img iframe{
    width: 100%;
}
@media (max-width: 768px) {
    .contact {
        width: 90%;
    }
    .address-items {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 500px) {
    .contact-form h2, .contact-details h2 {
        font-size: 18px;
    }
}