@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

/* CSS for Milkylush */
:root
{
	--c1:#f4f7f0;
  --c2:#bfd2d0;
  --c3:#368980;
  --c4:#62ccc0;
  --c5:#261FB3;
  --c6:#38b6ff;
}
body {
    font-family:'Poppins','Segoe UI', 'Helvetica Neue', 'Arial', sans-serif;
  }

/*navbar*/
.custom-navbar{
  background-color:white;
}
.navbar-nav .nav-link {
  font-size: 1.1rem; 
  color:#123458!important;
  font-weight:400;
}

.navbar img{
width:180px;
height:100px;
border: none;
border-radius: 20px;
}

.btn-primary {
  border-radius: 10px;
}
/*navbar hover effect*/
.navbar-nav .nav-link {
  position: relative;
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  text-decoration: underline;
}



/*Hero Section*/
.about-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Text content on top of video */
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

/* Optional overlay for readability */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Adjust darkness here */
  z-index: 1;
}


/*About Section*/
 .about-hero {
      background-image: url('img/heroSection.jpg'); 
      background-size: cover;
      background-position: center;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-shadow: 2px 2px 4px #0000005b;
    }

    .about-content {
      padding: 60px 20px;
    }

    .about-content h2 {
      font-weight: bold;
      margin-bottom: 20px;
      color:#123458;
    }

    .about-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: justify;
    }


/*footer section*/
  footer {
   
  }
  footer a img {
    transition: transform 0.3s ease;
  }

  footer a:hover img {
    transform: scale(1.2);
  }
  .footer-bg {
  background-image: url('img/footer.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
}

/* Overlay for readability */
.footer-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(97, 88, 88, 0.6); /* Black transparent overlay */
  z-index: 1;
}

.footer-bg .container,
.footer-bg .text-center,
.footer-bg .row,
.footer-bg .col-md-4,
.footer-bg a,
.footer-bg p,
.footer-bg h3,
.footer-bg h5,
.footer-bg small {
  position: relative;
  z-index: 2;
  color:whitesmoke !important;
  font-weight: bold;
}

.footer-bg a:hover {
  text-decoration: underline;
}
 .footernav:hover{
  color: #38b6ff !important;
 }
