*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}
body, html {
    width: 100%;
    overflow-x: hidden; 
    font-family: 'Poppins', 'Montserrat', sans-serif;
}
.navbar-toggler {
  border-color: white; 
}

.navbar-toggler-icon {
  filter: invert(1); 
}

.banner{
    background-color: #011F59 !important;
}
  /* Contact Info Section */
  .contact-info {
    background-image: url("images/istockphoto-1807779771-612x612.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    height: 60vh;
    background-position: center;
    text-align: center;
    padding: 80px 0;
    
  }

  .contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }

  .contact-info .info-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .contact-info .info-item i {
    font-size: 24px;
    color: #011F59; 
    margin-bottom: 10px;
  }

  .contact-info .social-media {
    margin-top: 30px;
  }

  .contact-info .social-media a {
    margin: 0 10px;
    color: #011F59; 
    font-size: 20px;
  }

  .contact-info .social-media a:hover {
    color: gold; 
  }

  /* Contact Form Section */
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #011F59; 
  }

  .contact-form label {
    margin-top: 10px;
    display: block;
    color: #011F59; 
  }

  .contact-form input, .contact-form textarea, .contact-form select {
    width: 90%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }

  .contact-form button {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: gold; 
    color: 11; 
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
  }

  .contact-form button:hover {
    background: gold; 
  }

  /* Live Chat Section */
  .live-chat {
    text-align: center;
    padding: 50px 0;
  }

  .live-chat h2 {
    color: #011F59; 
  }

  .live-chat .chat-button {
    background: gold; 
    color: #011F59;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
  }

  .live-chat .chat-button:hover {
    background: gold; 
  }

  /* Footer */
  footer {
    background-color: #011F59 !important;
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 32px;

}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.footer-heading {
    position: relative;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: gold;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.footer-list li i {
    margin-right: 0.5rem;
    width: 16px;
    color: gold;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.social-links i {
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}