/* Yellow Text & Background Utilities */
.text-yellow-color {
    color: #ffca02;
}

.bg-yellow-color {
    background-color: #ffca02;
}

/* Blue Text & Background Utilities */
.text-blue-color {
    color: #112F53
}

.bg-blue-color {
    background-color: #112F53
}

/* Logo section */
.logo-bar {
    z-index: 2;
}

/* Custom Navbar overlapping both logo and hero */
.custom-navbar {
   top: 40px; /* Adjust based on logo height */
    z-index: 3;
    border-radius: 6px;
}

/* Hero Section */
.hero-section {
    background: url('../images/hero-img.jpg') no-repeat center center/cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: #fff;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 30px 20px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .custom-navbar {
        top: 50px;
    }
}



/* css for contact-form */
.contact-rounded {
    background-color: #112F53;
    border-radius: 15px;
}

.contact-card {
    /* background-color: #112F53; */
    padding: 30px;
    color: white;

}

.contact-card input,
.contact-card textarea {
    background-color: #3d4e83;
    color: white;
    border: none;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
    color: #ccc;
}

.contact-card input:focus,
.contact-card textarea:focus {
    box-shadow: none;
    outline: none;
}

.btn-send {
    font-weight: 600;
}

@media (max-width: 768px) {

    .contact-card,
    iframe {
        margin-bottom: 1.5rem;
    }
}


.office-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.322);
  max-width: 600px;
  /* margin: 40px auto; */
}

.office-info {
  padding-left: 20px;

}

.office-info h6 {
  color: #0a2a66;
  font-weight: 600;
}

.office-info p {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

body{
    overflow-x: hidden;
}