/*Importing Goggle Fonts */

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:'Lato', sans-serif;
    

}
:root{

   
     /*Colors */
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
     --light-yellow:#F79C00;
    --light-green:#00784a;
   --light-blue-two: #004586;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
   --light-blue: #100d5c;
   --black:#212144;
   --min-white:#f5f5f5;
   --light-red:#ec020c;
     --red-two:#e70034;
       --light-black:#252525;
         --bg-color:#0A122B;
    --icon-bg:#2F2D4C;
    --icon-color:#69727D;
    --light-black:#252525;
    --bg-color:#0A122B;
    --black-two:#1C244B;



   /* Font-Family */
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Font sizes in px */
    --font-size-t: 12px;   /* tiny text, captions, meta info */
    --font-size-s: 14px;   /* small text, nav links */
    --font-size-n: 16px;   /* normal body text */
    --font-size-m: 18px;   /* medium text */
    --font-size-1: 24px;   /* h3 or small section heading */
    --font-size-2: 28px;   /* h2 */
    --font-size-3: 32px;   /* h1 */
    --font-size-x1: 36px;  /* large h1 / hero */
    --font-size-xx1: 48px; /* extra large headings */
   /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 900;


    /*Border radius*/
    --border-radius-s:8px;
    --border-radius-m:30px;
    --boder-radius-circle:50%;


    /*site max width */
    --site-max-width:1300px

}


/* Contact Form Styling */
.contact-us-section {
    padding: 220px 0 80px;
    background: var(--white);
}

.contact-details{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.contact-us-heading {
    text-align: center;
    font-size: var(--font-size-xx1);
    font-family: var(--font-heading);
    color: var(--light-blue);
    text-transform: uppercase;
   
}

.contact-us-subtitle {
    text-align: center;
    font-size: var(--font-size-n);
    font-family: var(--font-body);
    color: var(--light-blue);

}

.contact-form-card {
    max-width: 700px;
    background: var(--white);
    padding: 50px 40px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.12);
}

.form-heading {
    font-size: var(--font-size-1);
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}




.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;  
    width: 100%;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 400px); 
    gap: 20px 30px; 
    justify-content: center;
    margin-top: 100px;
}

.contact-input {
    padding: 20px 25px;     
    font-size: var(--font-size-m);
    border: 2px solid var(--light-blue);
    width: 100%;            
    min-height: 60px;         
    box-sizing: border-box;
}

.contact-send-btn {
    padding: 12px 40px;
    font-size: var(--font-size-m);
    font-family: var(--font-body);
    background-color: var(--light-blue);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
    font-weight: var(--font-weight-bold);
}

.contact-send-btn:hover {
    transform: scale(1.2);

}

.information-details{
    display: flex;
    margin-top: 100px;
    gap: 150px;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
}

.info-one{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.info-one .info{
    font-size: var(--font-size-m);
}
.info-one .info-text{
    font-size: var(--font-size-n);
}


/* Tablets and small laptops (1024px and down) */
@media screen and (max-width: 1024px) {
      .contact-form-grid {
        grid-template-columns: repeat(2, minmax(350px, 1fr));
        gap: 20px;
    }

    .information-details{
        gap: 50px;
    }
}

/* Tablets and small laptops (900px and down) */
@media screen and (max-width: 900px) {

    .contact-form-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .information-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {

    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-input {
        min-height: 55px;
    }

    .contact-send-btn {
        width: 100%; 
    }


    .information-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-details {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {

    .contact-us-section {
        padding: 160px 10px;
    }

    .contact-input {
        padding: 15px 18px;
        font-size: 14px;
    }

    .contact-send-btn {
        padding: 12px;
        font-size: 14px;
    }

    .info {
        font-size: var(--font-size-1);
    }

    .info-text {
        font-size: var(--font-size-s);
    }
}