/*PRELOADER STYLES START*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #0d0d0d, #1a1a1a);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* Center container */
.loader-container {
  text-align: center;
  color: #fff;
}

/* Glowing logo effect */
.loader-logo {
  width: 90px;
  height: 90px;
  animation: glow 1.5s ease-in-out infinite alternate;
  border-radius: 50%;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px #00e0ff, 0 0 20px #00e0ff, 0 0 30px #00e0ff;
  }
  to {
    box-shadow: 0 0 25px #00e0ff, 0 0 45px #00e0ff, 0 0 65px #00e0ff;
  }
}

/* Loading dots animation */
.loading-dots {
  margin-top: 15px;
}

.loading-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #00e0ff;
  border-radius: 50%;
  animation: bounce 1s infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* Hide loader after page load */
body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-out;
}
/*PRELOADER STYLES END*/


/*TOPBAR STYLING START*/
#header-top-bar {
  background: linear-gradient(90deg, #0d1b2a, #1b263b);
  font-size: 14px;
}

.list-inline-item strong {
     font-family: "Lobster Two", sans-serif !important;
  font-weight: 700;
  font-style: normal;
}

.list-inline-item i{
    font-size:18px !important;
}

.topbar-text a {
  color: #fff;
  transition: color 0.3s;
   font-family: "Lobster Two", sans-serif !important;
  font-weight: 700;
  font-style: normal;
  font-size:16px !important;
}
.topbar-text a:hover {
  color: #00e0ff;
  text-decoration: none;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.social-icons i {
    font-size:16px;
}
.social-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.1);
}
.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  color: #fff;
}

/* Brand Hover Colors */
.social-icon.facebook:hover { background: #1877f2; }
.social-icon.twitter:hover { background: #1da1f2; }
.social-icon.linkedin:hover { background: #0077b5; }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 30%, #f58529, #dd2a7b, #8134af, #515bd4); }

/* 🔹 Stylish Rotating Clock */
.rotating-clock {
  font-size: 18px;
  animation: rotateClock 5s linear infinite;
  cursor: pointer;
  position: relative;
}

@keyframes rotateClock {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 🔹 Tooltip Styling */
.rotating-clock::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.rotating-clock:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}
/*TOPBAR STYLING END*/


/*BANNER STYLING START*/
.hero-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 90vh;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dots Styling */
.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffc107;
  transform: scale(1.2);
}
/*BANNER STYLING END*/


/*ABOUT STYLING START*/
.highlight-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.highlight-number {
    font-size: 28px;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
/*ABOUT STYLING END*/


/*CALL TO ACTION STYLING START*/
.call-to-action {
    position: relative;
    color: #fff;
}

.call-to-action .section-heading h2 {
    font-size: 36px;
    font-weight: 700;
}

.call-to-action .section-heading p {
    font-size: 18px;
    margin-top: 15px;
}

.call-to-action .cta-image img {
    transition: transform 0.5s ease;
}

.call-to-action .cta-image img:hover {
    transform: translateY(-10px) rotate(-5deg);
}
/*CALL TO ACTION STYLING END*/


/*SERVICE STYLING START*/
.services-single .img-fluid {
   height: 100px !important;
}
/*SERVICE STYLING END*/


/*ENQUIRY BUTTON STYLING START*/
.enquery-btn {
  position: fixed;
  left: -69px;
  top: 48%;
  z-index: 1000;
  background: #000;
  color: #fff;
  padding: 10px 21px;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.enquery-btn:hover { background: #1e90ff; }

.enquery-btn i {
  margin-left: 6px;
}

.sidebar-enquery {
  width: 400px;
  background: #fff;
  border-left: 4px solid #1e90ff;
  padding: 25px;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 1050;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
}

.side-enq-ovrly {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-enquery.active { transform: translateX(0); }
.side-enq-ovrly.active {
  opacity: 1;
  visibility: visible;
}

.close-enquery {
  position: absolute;
  top: -15px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}

.contact__form__control input,
.contact__form__control select,
.contact__form__control textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e90ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.insta-btn:hover {
  background: #0b68d1;
}
.insta-btn__icon {
  margin-left: 8px;
}
/*ENQUIRY BUTTON STYLING END*/


/*WHATSAPP ICON STYLING START*/
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  padding: 17px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  text-align: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseBeat 1.6s infinite ease-in-out;
}

.whatsapp-float i {
  font-size: 38px;
  line-height: 25px;
}

.whatsapp-float:hover {
  transform: scale(1.2);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
  background-color: #20b659;
}

/* Continuous Pulse + Pop Animation */
@keyframes pulseBeat {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  35% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.3);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/*WHATSAPP ICON STYLING END*/