
.search-input {
    padding: 10px;
    font-size: 12px;
    border-radius: 15px;
    border: 1px ;
    outline: none;
    width: 100%;
    padding-right: 80px;
}

.search-btns {
    position: absolute;
    right: 140px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #ff1e3b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}


.search-btns:hover {
    background-color: #45a049;
}

.search-btns i {
    font-size: 18px;
}



header {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: -30px;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    display: inline;
}

header h1 span.intelli {
    color:navy;
}

header h1 span.host {
    color: burlywood;
}


header p {
    font-size: 1.5rem;
    margin-top: 10px;
}




.contact-section {
    padding: 240px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color:lightgoldenrodyellow;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color:#00bcd4;
    font-size: 1.7em;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info p {
    color: black;
    font-size: 1.1em;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-info p strong {
    color: #ff4d6d;
}

.contact-info a {
    color: #4169e1;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color:lightgoldenrodyellow;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5em;
    color:#00bcd4;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
}

.contact-form label {
    display: block;
    color: #333;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form input[type="submit"] {
    background-color: #ff4d6d;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    padding: 12px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-form input[type="submit"]:hover {
    background-color: #ff1e3b;
}


.content-map {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 235px;
}

.content-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}




/*..................................360pixel..................*/




/*.............................768pixel...............*/

/* Responsive Design */
@media (max-width: 768px) {
    
    
    .contact-section {
        padding: 150px 20px;
        flex-direction: column;
      
        
    }

    .contact-container {
        flex-direction: column;
        margin-top: 200px;
        width: 600px;
        
    }
    
    
    .contact-info,
    .contact-form {
        min-width: 100%;
        margin-top: 20px;
       
        
        
    }

    .content-map {
        
        width: 40%;
        height: 300px;
        margin-bottom: 350px;
        padding-top: 0;
        border-radius: 10px;
        top: 50px;
        
       
        
    }

    .content-map iframe {
        width: 100%;
        height: 100%;
        border: none;
        
        
       
        
    }
}

