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

body {
    min-height: 100vh;
}

/* Container with Flexbox for Centering */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin-top: 5rem;
    margin-bottom: 3rem;
    width: 100%;
    padding: 0 15px;
    background-image: url("https://media.wired.com/photos/5932334052d99d6b984dd067/master/w_2560%2Cc_limit/robogames_16x9-3.jpg");
    background-size: 900px;
    background-position: center;
    background-repeat: no-repeat;

    /* Prevents content from touching the sides on mobile */
}

/* Contact Box */
.contact-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 900px;
    height: 70vh;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    /* Add lift effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    /* Enhanced shadow */
}

/* Header Styling */
h2 {
    color: #fff;
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Input Fields */
.input-box {
    position: relative;
    margin-bottom: 30px;
}

/* Styling for input and textarea */
.input-box input,
.input-box textarea {
    width: 100%;
    padding: 17px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    border-radius: 5px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 26px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.input-box input:focus,
.input-box textarea:focus {
    border: 1px solid #00c6ff;
    /* Add blue focus effect */
}

/* Label Styling */
.input-box label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: cyan;
    font-size: 20px;
    transition: 0.3s;
}

.input-box input:focus~label,
.input-box input:valid~label,
.input-box textarea:focus~label,
.input-box textarea:valid~label {
    top: -18px;
    left: 10px;
    font-size: 16px;
    color: #00c6ff;
}

/* Textarea Styling */
textarea {
    height: 80px;
    resize: none;
}

/* Button Styling */
.btn {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border: none;
    padding: 14px;
    width: 100%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    font-weight: bold;
}

.btn:hover {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    /* Smooth color change */
    transform: scale(1.05);
    /* Slight zoom on hover */
    color: black;
    font-weight: bold;
}


/* Maps Container Styling */
.location {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    justify-content: center;
    gap: 5em;
    border: 1px solid cyan;
    margin:10em 10em;
    /* margin-bottom: 10em; */
    padding: 5em 0em;
    border-radius: 2em;
    box-shadow: 0 0 100px rgba(0, 255, 255, 0.5);
}

.map-box {
    max-width: 600px;
}

h1 {
    font-size: 5em;
}

.color-change {
    color: cyan;
}

p {
    font-size: 1.2em;
    margin-bottom: 2em;
}

iframe {
    border-radius: 2em;
    transition: 0.3s ease-in-out;
}

iframe:hover {
    transform: scale(1.1);
}

.add-info {
    font-size: 1.4em;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    /* font-weight: bold; */
}


/* Responsive Styling */

@media (max-width: 1280px) {
.map-box{
    padding: 0px 45px;
}
iframe{
    padding: 0px 40px;
}

h2{
    margin-top: 0px;
    margin-bottom: 10px;
}

}

@media (max-width: 1024px) {
    .container {
        height: auto;
        margin-top: 3rem;
        margin-bottom: 2rem;
        padding: 20px;
        
    }
    
    .contact-box {
        height: auto;
        max-width: 95%;
        padding: 20px;
        
        
    }
    
    .location {
        flex-direction: column;
        gap: 3em;
        margin: 0em 5em;
        margin-bottom: 5em;
        padding: 3em 0em;
    }
    
    .map-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        height: auto;
        padding: 15px;
        margin: 8rem auto;
        background-size:660px ;
    }
    
    .contact-box {
        width: 90%;
        padding: 20px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .input-box input,
    .input-box textarea {
        font-size: 16px;
    }
    
    .btn {
        font-size: 16px;
        padding: 12px;
    }
    
    .location {
        margin: 8em 2em;
        padding: 2em 0em;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 10px;
        margin: 10em auto 5em auto;
        background-size: 390px;
        background-position-y: 216px ;
    }
    
    .contact-box {
        width: 100%;
        padding: 15px;
        
    }
    
    h2 {
        font-size: 25px;
    }
    
    h1{
        font-size: 3em;
    }
    .input-box input,
    .input-box textarea {
        font-size: 14px;
        padding: 10px;
    }
    
    .btn {
        font-size: 14px;
        padding: 10px;
    }
    
    .location {
        gap: 2em;
        margin: 0em 4px;
        padding: 1.5em 1em;
        width: 100%;
        margin-bottom: 4em;
        
    }

    iframe{
        height: 400px;
        width: 400px;
       
        
    }

    iframe:hover{
        transform: scale(1);
    }

    .footer-container{
        width: 500px;
      
    }
    
}

@media (max-width: 400px) {
    .container{
      
       background-size: 350px;
       margin-left: 5px;
    }

    .location{
       
       margin-left: 1px;
    }

    
    }
