
  .logo-img {
    max-height: 60px;
    width: auto;
  }

  @media (max-width: 576px) {
    .logo-img {
      max-height: 40px;
    }
  }

  .nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
  }

  .nav-hover:hover {
    color: #ff6600;
    transition: color 0.3s ease;
  }

  .social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
  }

  .social-circle:hover {
    opacity: 0.8;
  }
.floor-card {
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  background: #fff;
}

.floor-card:hover {
  transform: translateY(-5px);
}

.floor-card img {
  width: 100%;
  height: 400px;
  display: block;
}

.floor-caption {
  padding: 10px;
  text-align: center;
  font-style: italic;
}

.yellow-btn {
  background-color: #f4c014;
  color: #000;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.yellow-btn:hover {
  background: #0422a5;
  color: white;
}

.yellow-btn i {
  margin-right: 8px;
}

.floor-gallery {
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  background: #fff;
}

.floor-gallery img {
  width: 100%;
  height: 400px;
  display: block;
}
  /* Full-screen background bubble wrapper */
  .bubble-bg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: transparent;
    overflow: hidden;
  }

  /* Bubble styles */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 27, 22, 0.2), transparent 70%);
  animation: floatBubble 20s infinite ease-in-out;
  z-index: 5;
}

/* Define 4 separate bubbles at corners */
.bubble1 { width: 150px; height: 150px; top: 10%; left: 5%; animation-delay: 0s; }
.bubble2 { width: 150px; height: 150px; top: 10%; right: 5%; animation-delay: 0s; }
.bubble3 { width: 150px; height: 150px; bottom: 10%; left: 5%; animation-delay: 0s; }
.bubble4 { width: 150px; height: 150px; bottom: 10%; right: 5%; animation-delay: 0s; }

@keyframes floatBubble {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
  100% { transform: translateY(0px) scale(1); }
}
  /* Content container with dotted border */
  .bubble-content-box {
    position: relative;
    z-index: 1;
    border: 2px dotted #b90a0a;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  /* Typography & image styling */
  #overview h1 {
    font-size: 2.1rem;
    color: #ff9800;
  }

  #overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
  }
  #overview img {
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  /* Section Styling */
  #responsibilities {
    position: relative;
    padding: 60px 0;
    background-color: #fff3f3;
  }

  .section-title {
    color: #ff5722;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  /* Timeline list */
  .responsibility-list {
    list-style: none;
    padding-left: 20px;
    border-left: 3px dotted #ffaa0d;
    position: relative;
  }

  .responsibility-list li {
    position: relative;
    padding: 10px 0 10px 20px;
    margin-bottom: 10px;
  }

  .responsibility-list li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 10px;
    width: 14px;
    height: 14px;
    background-color: #e21f1f;
    border-radius: 50%;
    border: 2px solid white;
  }

  /* Paragraph text */
  .responsibility-desc {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
  }

  /* Image styling */
  .responsibility-img {
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    width: 100%;
  }
  /* section-bg-info */
  .section-bg-info{
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
  }


  