*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    font-size: 10px;
}

/* CONTACTUS CSS */
#contactus{
    background-color: #F2F2F2;
}

#contactus iframe{
    width: 100%;
    height: clamp(60rem, 50vw, 80rem);
    border: 0;
    margin: 0;
}

#contactus .container{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto auto;
    grid-template-areas: 
    'container1 container2'
    'container1 container3';
     margin: 10vh 0 0 5vw;
}

#contactus .container1 {
    grid-area: container1;
}
  
  #contactus .container2 {
    grid-area: container2;
  }
  
  #contactus .container3 {
    grid-area: container3;
  }

#contactus .container img{
    height: clamp(50rem, 85vw, 70rem);
}

#contactus .container h1::after {
    content: '';
    display: block;
    width: 12vh;
    height: 1px;
    background-color: #FF7F50;
    box-shadow: 0 1px 0 #FF4500;
    margin-top: 0px;
}

#contactus .container h1 {
    font-size: clamp(3rem, 4.5vw, 4.3rem);
    margin-bottom: 8vh;
}

#contactus .container a,
#contactus ph,
#contactus mail{
    font-size: clamp(2.2rem, 1.5vw, 2.6rem);
    text-decoration: none;
    color: black;
    font-style: normal;
}

#contactus .container2 i{
    margin-right: 10px;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

#contactus .container2-element{
    display: flex;
    gap: 50px;
    line-height: 2.5em;
}

#contactus .address{
    display: flex;
}

#contactus .email-container{
    display: flex;
}


#contactus .container3 {
    border-radius: 8px;
    padding: 20px;
}


#contactus .container3 .contact-form {
    display: flex;
    flex-direction: column;
}

#contactus .container3 .contact-form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

#contactus .container3 .contact-form .form-group label {
    width: 40px;
    height: 40px;
    background-color: #2FA7C9;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contactus .container3 .contact-form .form-group input,
#contactus .container3 .contact-form .form-group textarea {
    flex: 1;
    padding-left: 41px;
    border: none;
    outline: none;
    font-size: clamp(2rem, 2.2vw, 2.2rem);
}

#contactus .container3 .contact-form .form-group textarea {
    flex: 1;
    padding: 50px 0 auto 41px;
    border: none;
    outline: none;
    min-height: 80px;
    max-height: 200px;
    resize: vertical; 
    overflow: auto; 
}

#contactus .container3 .contact-form .submit-btn {
    background-color: #2FA7C9;
    color: white;
    font-size: clamp(2rem, 3vw, 2.5rem);
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#contactus .container3 .contact-form .submit-btn:hover {
    background-color: #5a9238;
}

/* Responsive Media Queries */
@media (max-width: 320px) {
    #contactus iframe{
        height: 30vh;
    }
    
    #contactus .container{
        grid-template-areas: 
        'container1'
        'container2'
        'container3';
         margin: 2vh 0 0 5vw;
    }
    
    #contactus .container img{
        height: 58vh;
    }
    
    #contactus .container h1::after {
        margin-top: 1px;
    }
    
    #contactus .container h1 {
        font-size: 2.5rem;
        margin-bottom: 3vh;
    }
    
    #contactus .container a,
    #contactus ph,
    #contactus mail{
        font-size: 1.9rem;
        text-decoration: none;
        color: black;
        font-style: normal;
    }
    
    #contactus .container2 i{
        margin-right: 5px;
        font-size:  12px;
    }
    
    #contactus .container2-element{
        display: flex;
        flex-direction: column;
        gap: 10px;
        line-height: 2.5em;
    }
    
    #contactus .container3 {
        border-radius: 8px;
        padding: 20px;
    }
    
    #contactus .container3 .contact-form {
        display: flex;
        flex-direction: column;
    }
    
    #contactus .container3 .contact-form .form-group {
        margin-bottom: 10px;
    }
    
    #contactus .container3 .contact-form .form-group label {
        width: 40px;
        height: 40px;
        background-color: #2FA7C9;
        color: white;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #contactus .container3 .contact-form .form-group input,
    #contactus .container3 .contact-form .form-group textarea {
        font-size: 1rem;
    }
    
    #contactus .container3 .contact-form .submit-btn {
        background-color: #2FA7C9;
        color: white;
        font-size: 1.5rem;
        padding: 8px;
    }
    }
    /* Extra Small Devices (Phones, 321px - 575px) */
    @media (min-width: 321px) and (max-width: 575.98px) {
    #contactus iframe{
        width: 100%;
        height: clamp(12rem, 40vw, 24rem);
    }
    
    #contactus .container{
        grid-template-areas: 
        'container1'
        'container2'
        'container3';
         margin: 2vh 0 0 5vw;
    }
    
    #contactus .container1 {
        width: 95vw;
    }
    
    #contactus .container1 img {
            height: clamp(30rem, 78vw, 48rem);
            display: block;
            margin: 0 auto; 
    }
    
    #contactus .container h1::after {
        margin-top: 1px;
    }
    
    #contactus .container h1 {
        font-size: 2.5rem;
        margin-bottom: 3vh;
    }
    
    #contactus .container a,
    #contactus ph,
    #contactus mail{
        font-size: 1.9rem;
        text-decoration: none;
        color: black;
        font-style: normal;
    }
    
    #contactus .container2{
        margin: 0 auto;
    }
    
    #contactus .container2 i{
        margin-right: 5px;
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    #contactus .container2-element{
        display: flex;
        flex-direction: column;
        gap: 10px;
        line-height: 2.5em;
    }
    
    #contactus .container3 {
        border-radius: 8px;
        padding: 20px;
    }
    
    #contactus .container3 .contact-form {
        display: flex;
        flex-direction: column;
    }
    
    #contactus .container3 .contact-form .form-group {
        margin-bottom: 10px;
    }
    
    #contactus .container3 .contact-form .form-group label {
        width: 40px;
        height: 40px;
        background-color: #2FA7C9;
        color: white;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #contactus .container3 .contact-form .form-group input,
    #contactus .container3 .contact-form .form-group textarea {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }
    
    #contactus .container3 .contact-form .submit-btn {
        background-color: #2FA7C9;
        color: white;
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        padding: 8px;
    }
    }
    
    /* Small Devices (Landscape Phones, 576px - 767px) */
    @media (min-width: 576px) and (max-width: 767.98px){
          #contactus iframe{
            height: clamp(24rem, 40vw, 32rem);
        }
        
        #contactus .container{
            grid-template-areas: 
            'container1'
            'container2'
            'container3';
             margin: 2vh 0 0 5vw;
        }
        
        #contactus .container1 {
            width: 95vw;
        }
        
        #contactus .container1 img {
                height: clamp(30rem, 80vw, 60rem);
                display: block;
                margin: 0 auto; 
        }
        
        #contactus .container h1::after {
            margin-top: 1px;
        }
        
        #contactus .container h1 {
            font-size: clamp(2.5rem, 4.5vw, 3rem);
            margin-bottom: 3vh;
        }
        
        #contactus .container a,
        #contactus ph,
        #contactus mail{
            font-size: clamp(1.9rem, 3.5vw, 2.5rem);
            text-decoration: none;
            color: black;
            font-style: normal;
        }
        
        #contactus .container2{
            margin: 0 auto;
        }
        
        #contactus .container2 i{
            margin-right: 7px;
            font-size: clamp(1.5rem, 3vw, 1.9rem);
        }
        
        #contactus .container2-element{
            display: flex;
            flex-direction: column;
            gap: 10px;
            line-height: 2.6em;
        }
        
        #contactus .container3 {
            border-radius: 8px;
            padding: 20px;
        }
        
        #contactus .container3 .contact-form {
            display: flex;
            flex-direction: column;
        }
        
        #contactus .container3 .contact-form .form-group {
            margin-bottom: 10px;
        }
        
        #contactus .container3 .contact-form .form-group label {
            width: 40px;
            height: 40px;
            background-color: #2FA7C9;
            color: white;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #contactus .container3 .contact-form .form-group input,
        #contactus .container3 .contact-form .form-group textarea {
            font-size: clamp(1.5rem, 2.2vw, 2rem);
        }
        
        #contactus .container3 .contact-form .submit-btn {
            background-color: #2FA7C9;
            color: white;
            font-size: clamp(2rem, 3vw, 2.5rem);
            padding: 8px;
        }
    }
    
    /* Medium Devices (Tablets, 768px - 991px) */
    @media (min-width: 768px) and (max-width: 991.98px) {
          #contactus iframe{
            height: clamp(24rem, 50vw, 45rem);
        }
        
        #contactus .container{
            grid-template-areas: 
            'container1'
            'container2'
            'container3';
             margin: 2vh 0 0 5vw;
        }
        
        #contactus .container1 {
            width: 95vw;
        }
        
        #contactus .container1 img {
                height: clamp(60rem, 85vw, 65rem);
                display: block;
                margin: 0 auto; 
        }
        
        #contactus .container h1::after {
            margin-top: 1px;
        }
        
        #contactus .container h1 {
            font-size: clamp(2.5rem, 4.5vw, 3.3rem);
            margin-bottom: 3vh;
        }
        
        #contactus .container a,
        #contactus ph,
        #contactus mail{
            font-size: clamp(1.9rem, 4.3vw, 3.3rem);
            text-decoration: none;
            color: black;
            font-style: normal;
        }
        
        #contactus .container2{
            margin: 0 auto;
        }
        
        #contactus .container2 i{
            margin-right: 10px;
            font-size: clamp(1.5rem, 3.5vw, 3rem);
        }
        
        #contactus .container2-element{
            display: flex;
            flex-direction: column;
            gap: 10px;
            line-height: 4em;
        }
        
        #contactus .container3 {
            border-radius: 8px;
            padding: 20px;
        }
        
        #contactus .container3 .contact-form {
            display: flex;
            flex-direction: column;
        }
        
        #contactus .container3 .contact-form .form-group {
            margin-bottom: 10px;
        }
        
        #contactus .container3 .contact-form .form-group label {
            width: 40px;
            height: 40px;
            background-color: #2FA7C9;
            color: white;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #contactus .container3 .contact-form .form-group input,
        #contactus .container3 .contact-form .form-group textarea {
            font-size: clamp(1.5rem, 2.2vw, 2rem);
        }
        
        #contactus .container3 .contact-form .submit-btn {
            background-color: #2FA7C9;
            color: white;
            font-size: clamp(2rem, 3vw, 2.5rem);
            padding: 8px;
        }
    }
    
    /* Large Devices (Small Desktops, 992px - 1199px) */
    @media (min-width: 992px) and (max-width: 1199.98px) {
          #contactus iframe{
            height: clamp(24rem, 50vw, 45rem);
        }
        
        #contactus .container{
            grid-template-areas: 
            'container1'
            'container2'
            'container3';
             margin: 2vh 0 0 5vw;
        }
        
        #contactus .container1 {
            width: 95vw;
        }
        
        #contactus .container1 img {
                height: clamp(60rem, 85vw, 65rem);
                display: block;
                margin: 0 auto; 
        }
        
        #contactus .container h1::after {
            margin-top: 1px;
        }
        
        #contactus .container h1 {
            font-size: clamp(2.5rem, 4.5vw, 3.3rem);
            margin-bottom: 3vh;
        }
        
        #contactus .container a,
        #contactus ph,
        #contactus mail{
            font-size: clamp(1.9rem, 4.3vw, 3.3rem);
            text-decoration: none;
            color: black;
            font-style: normal;
        }
        
        #contactus .container2{
            margin: 0 auto;
        }
        
        #contactus .container2 i{
            margin-right: 10px;
            font-size: clamp(1.5rem, 3.5vw, 3rem);
        }
        
        #contactus .container2-element{
            display: flex;
            flex-direction: column;
            gap: 10px;
            line-height: 4em;
        }
        
        #contactus .container3 {
            border-radius: 8px;
            padding: 20px;
        }
        
        #contactus .container3 .contact-form {
            display: flex;
            flex-direction: column;
        }
        
        #contactus .container3 .contact-form .form-group {
            margin-bottom: 10px;
        }
        
        #contactus .container3 .contact-form .form-group label {
            width: 40px;
            height: 40px;
            background-color: #2FA7C9;
            color: white;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #contactus .container3 .contact-form .form-group input,
        #contactus .container3 .contact-form .form-group textarea {
            font-size: clamp(1.5rem, 2.2vw, 2rem);
        }
        
        #contactus .container3 .contact-form .submit-btn {
            font-size: clamp(2rem, 3vw, 2.5rem);
            padding: 8px;
        }
    }
    
    /* Extra Large Devices (Laptops, 1200px - 1599px) */
    @media (min-width: 1200px) and (max-width: 1599.98px) {
        #contactus iframe{
            height: clamp(45rem, 50vw, 65rem);
        }
        
        #contactus .container{
             margin: 10vh 0 0 5vw;
        }
        
        #contactus .container1 {
            width: 40vw;
        }
        
        #contactus .container img{
            height: clamp(40rem, 85vw, 50rem);
        }
        
        #contactus .container h1::after {
            margin-top: 0px;
        }
        
        #contactus .container h1 {
            font-size: clamp(2rem, 4.5vw, 3rem);
            margin-bottom: 3vh;
        }
        
        #contactus .container a,
        #contactus ph,
        #contactus mail{
            font-size: clamp(1.5rem, 1.5vw, 2.2rem);
        }
        
        #contactus .container2 i{
            font-size: clamp(1.5rem, 3.5vw, 2.5rem);
        }
        
        #contactus .container2-element{
            display: flex;
            gap: 1rem;
            gap: 0.5rem;
            gap: 1.5vw;
            line-height: 2.5em;
        }
        
        #contactus .email-container{
            display: flex;
        }
        
        #contactus .container3 {
            border-radius: 8px;
            padding: 20px;
        }
        
        #contactus .container3 .contact-form .form-group input,
        #contactus .container3 .contact-form .form-group textarea {
            font-size: clamp(1.5rem, 2.2vw, 2rem);
        }
        
        #contactus .container3 .contact-form .form-group textarea {
            flex: 1;
            padding: 50px 0 auto 41px;
            border: none;
            outline: none;
            min-height: 80px;
            max-height: 200px;
            resize: vertical; 
            overflow: auto; 
        }
        
        #contactus .container3 .contact-form .submit-btn {
            font-size: clamp(2rem, 3vw, 2.5rem);
        }
    }