:root {
    --primary-color: #0078ff;
    --secondary-color: #0d0b2d;
    --accent-color: #f8f9fa;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--accent-color);
}

.hero-section {
    background: linear-gradient(rgba(0, 120, 255, 0.8), rgba(0, 120, 255, 0.8)),
        url('../images/pattern_ai.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
}

.contact-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.social-icon {
    transition: all 0.3s;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}



.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.google-form {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 10px;
}


/* footer */



.footer {
background-color: white;
color: #0d0b2d;
padding: 20px 0;
}
.footer .footer-logo img {
max-width: 150px;
}
.footer .footer-bottom {
border-top: 1px solid #ddd;
padding-top: 10px;
margin-top: 10px;
}
.footer .social-icons a {
color: #0d0b2d;
margin: 0 10px;
font-size: 1.5rem;}

/* navbar */

@media (max-width: 768px) {
    .navbar-brand img {
        height: 70px !important;
    }
}

@media (max-width: 576px) {
    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
}