/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    background-color: #F4F5FF;
    max-width: 100%;;
}

/* Navigation Bar */
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: rgba(249, 249, 249, 1);
    transition: background-color 0.5s ease;
}

.transparent-nav {
    background-color: rgba(249, 249, 249, 0.4);
}
.navbar-logo {
    height: 35px;
    max-width: 150px; 
}

.hero img,
.content img{
    max-height: 100vh;
}

/* Counter Section */
.counter-photo img {
    width: 100%;
    max-width: 100%;
    height: 500px;
}

.counter-info {
    max-width: 50%;
}

.counter-number {
    font-size: 2em;
    font-weight: bold;
}

.hero,
.map-container,
.footer,
.coop-section,
.divider-top-blue,
.counter-section,
.maid-agency-section{
  background-color: #1a245e;
  color: white;
}
.light-blue-hover:hover{
  color: rgba(26,36, 94, 1);
}
.light-blue{
  color: #1CB5E0;
}
.light-gold{
  color: #FFD700;
}
.solid-gold{
  color: rgba(201,159,81,1);
}
.size-11{
  font-size: 1.1rem;
}
.size-09{
  font-size: 0.9rem;
}
.size-20{
  font-size: 2rem;
}
.size-25{
  font-size: 2.5rem;
}
.dark-bg{
  background-color: #1C1C1C;
}
.width-300{
  width: 20rem;
}
.about-us{
  background-color: rgba(248,249, 250, 1);
}

/* Section 4 Styles */
#section4 {
    background-color: #f9f9f9;
    padding: 50px 20px;
  }
  
  #section4 .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  #section4 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  #section4 .image-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  #section4 .image-wrapper img {
    width: calc(50% - 10px);
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  #section4 .text-wrapper {
    max-width: 600px;
  }
  
  #section4 h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
  }
  
  #section4 p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  #section4 .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  #section4 .btn-primary:hover {
    background-color: #0056b3;
  }

.footer-icon{
    width: 2.5rem;
    height: 2.5rem;
}


.divider-light-top{
  bottom: -10px;
}
.divider-light-top{
  margin-bottom: -10px;
}
/* 28 min spent here! fade-in effect */
.fade-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-in-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateX(0);
}
/* Owner Identity Card Custom Styles  */
#owner-info .card {
    transition: transform 0.3s ease-in-out;
}

#owner-info .card:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Shit i am trying! */
#auto-typing-text {
  border-right: 2px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}


.feature-box {
  flex: 1 1 calc(25% - 20px); /* Adjust the width of each feature box */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px; /* Adjust the minimum height as needed */
  box-sizing: border-box;
}

.gradient-text {
  background: linear-gradient(90deg, #1CB5E0, #0000FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.zoom-in:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
  cursor: zoom-in;;
}
.zoom-in {cursor: zoom-in;}

.zoom-out{
cursor: zoom-out;
}

.zoom-out:hover {
  transform: scale(0.95);
  transition: transform 0.3s;
  cursor: zoom-out;
}

.modal-body img {
max-height: 90vh;
max-width: 90vw;
}

.carousel-inner .carousel-item {
height: 18rem;
}

.carousel-inner .carousel-item img {
max-height: 95%;
max-width: 95%;
object-fit: contain;
}


/* Media Queries */
@media screen and (max-width: 580px) {
  h1, p, .link-container {
      width: 80%;
  }

}

@media screen and (min-width: 650px) and (max-height: 750px) {
  .link-container {
      margin-top: 12px;
  }
  h1 {
      margin-top: 0;
      margin-bottom: 0;
  }

}
@media (max-width: 768px) {
  .feature-box {
    flex: 1 1 calc(50% - 20px); /* Adjust for smaller screens */
  }
}

@media (max-width: 480px) {
  .feature-box {
    flex: 1 1 100%; /* Full width for very small screens */
  }
}

@media (min-width: 768px) {
  #section4 .container {
    flex-direction: row;
  }

  #section4 .content {
    flex-direction: row;
    gap: 40px;
  }

  #section4 .image-wrapper {
    width: 50%;
    gap: 20px;
  }

  #section4 .text-wrapper {
    width: 50%;
    text-align: left;
  }

  #section4 h2 {
    font-size: 28px;
  }
  .fs-md-1 {
    font-size: 1rem; 
  }
}

@media (min-width: 920px) {
  .fs-lg-2 {
    font-size: 2rem; 
  }
  .fs-lg-1 {
    font-size: 1rem; 
  }
  .w-lg-50 {
    width: 50%;
  }
  .w-lg-75 {
    width: 75%;
  }
  .carousel-inner .carousel-item {
    height: 25rem;
  }
  .carousel-inner .carousel-item img {
    max-height: 100%; 
    object-fit: contain; 
  }
}


@media (min-width: 1024px) {
  .fs-xl-3 {
    font-size: 3rem; 
  }
  .fs-xl-13 {
    font-size: 1.3rem; 
  }
  .carousel-inner .carousel-item {
    height: 28rem;
  }
}

