/* 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;
    }
}




 .animated-section {
      position: relative;
      overflow: hidden;
      padding: 3rem;
      background-color: #f8f9fa;
      transition: background-color 0.4s ease-in-out;
    }

    /* Animated background layer */
    .animated-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #112F53;;
      z-index: 1;
      transition: left 0.6s ease-in-out;
    }

    /* Text container */
    .animated-content {
      position: relative;
      z-index: 2;
      color: #212529;
      transition: color 0.5s ease, transform 0.5s ease;
    }

    /* Hover Effects */
    .animated-section:hover::before {
      left: 0;
    }

    .animated-section:hover .animated-content {
      color: white;
      transform: scale(1.03);
    }






     