   body {
        
            font-family: 'Karla', sans-serif !important;

        }
 .brochure-btn {
  display: inline-block;
  overflow: hidden;
  width: 50px; /* Initial width = icon size */
  height: 50px;
  position: Fixed;
  top: 30%;
      z-index: 9999;
  right: 0;
  text-decoration: none;
    border-radius: 12px 0px 0px 12px;
background-color: #f9c10b;
  transition: width 0.4s ease;
  white-space: nowrap;
}


.brochure-btn .content {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 12px;
  gap: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}


.brochure-btn img {
  width: 24px;
  height: 24px;
}
.download-icon{
    height:12px !important;
}

.brochure-btn .text,
.brochure-btn .download-icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.brochure-btn:hover {
  width: 160px; /* Expanded width on hover */
}

.brochure-btn:hover .text,
.brochure-btn:hover .download-icon {
  opacity: 1;
  transform: translateX(0);
}
 /* Counter */
 
.visitor-box {
    display: flex;
    align-items: center;
    justify-content: center;
  color: white;
  padding: 20px;
  font-size: 20px;
  border-radius: 10px;
}



.flip-counter {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-left: 40px;
}

.digit {
  perspective: 1000px;
  width: 30px;
  height: 50px;
  position: relative;
  font-size: 32px;
  font-family: monospace;
  background: #000;
  color: #f9c10b;
  line-height: 50px;
  border-radius: 5px;
  overflow: hidden;
}

.digit-inner {
  display: block;
  transform: rotateX(90deg);
  animation: flipIn 0.5s forwards;
}

@keyframes flipIn {
  from {
    transform: rotateX(90deg);
  }
  to {
    transform: rotateX(0deg);
  }
}


 /*End*/
 
 /* header */
header{
       z-index: 999;
    position: fixed;
    width: 100%;
    background-color: #013050;

}


  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }
    

      .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    margin-right: 20px;
    transition: color 0.3s ease;
}
        .navbar-nav .nav-link.active {
            font-weight: bold;
            color: #ffff  !important;
        }
        .nav-link:focus, .nav-link:hover {
         color: #ffff  !important;
}

        .book-btn {
               background-color: #f9c10b;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 32px;
        text-decoration: none ! IMPORTANT;
    border: none;
    border-radius: 4px;
}
        }

        .social-icons a {
            color: #333;
            font-size: 14px;
            margin-left: 12px;
        }

        .navbar-toggler {
            border: none;
        }

        @media (max-width: 991.98px) {

            .top-header,
            .social-icons,
            .book-btn {
                display: none !important;
            }

            .mobile-only {
                display: flex !important;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }

            .navbar-brand {
                margin-right: auto;
            }
        }

  /* header end */
  
  
  /* Now here code is Section 4 */
     footer {
      background-color: #0c1424;
      color: #f8f9fa;
      padding: 60px 0 20px;
      font-family: 'Segoe UI', sans-serif;
    }

    footer h5 {
      color: #f9c10b;
      font-weight: 700;
      margin-bottom: 20px;
    }

    footer p,
    footer a {
      color: #ffffff;
      font-size: 15px;
      line-height: 1.7;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .footer-links li {
      list-style: none;
      margin-bottom: 10px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 40px;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .social-icons a {
      color: #f9c10b;
      margin-left: 15px;
      font-size: 20px;
    }

    @media (max-width: 767px) {
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }
    }