/* 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/about-us-2.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;
    }
}


.about-section img {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-top: 30px;
  margin-left: 10px;
}

.gear-icon {
  top: -15px;
  left: -1px;

}

.box{
     box-shadow: 5px 6px 7px 0px rgba(23, 21, 21, 0.74);
}

 