/* ===== NAVBAR STYLE ===== */
body {
  font-family: 'Poppins', sans-serif;
}

/* ===== TOP BAR ===== */
.topbar {
  background: linear-gradient(90deg, #0f2027, #203a43);
  color: #ccc;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar i {
  color: #00e5ff;
  margin-right: 6px;
}

.topbar a {
  color: #ccc;
  margin-left: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.topbar a:hover {
  color: #00e5ff;
}

/* ===== NAVBAR ===== */
.custom-navbar {
 background: #ffffff;
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* Logo */
.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #fff !important;
}

.navbar-brand img{
  width: 100px;
}

/* Nav Links */
.nav-link {
  color: black !important;
  margin: 0 12px;
  font-weight: 700 !important;
  position: relative;
  font-size: 18px !important;
}

.nav-link:hover {
  color: #00e5ff !important;
}

/* Animated underline */
.nav-link::after {
  content: '';
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00e5ff, #00c6ff);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== CTA SECTION ===== */
.nav-cta {
  gap: 10px;
}

/* Call Button */
.call-btn {
  background: linear-gradient(45deg, #ff512f, #dd2476) !important;
  padding: 8px 18px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.call-btn:hover {
  transform: translateY(-2px) !important;
}


/* Blink */
.blink {
  animation: blink 1s infinite;
}

/* ===== ACTIVE NAV LINK (DESKTOP FIX) ===== */
.nav-link.active {
  color: #00e5ff !important;
}

/* underline when active */
.nav-link.active::after {
  width: 100%;
}
/* ===== SIDEBAR FIX ===== */
.offcanvas {
  width: 260px;
  background: #ffffff;
}

/* Menu spacing */
.sidebar-menu {
  padding: 10px 0;
}

.sidebar-menu .nav-link {
  color: #222 !important;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 5px;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

/* Active + hover */
.sidebar-menu .nav-link.active,
.sidebar-menu .nav-link:hover {
  color: #00c6ff !important;
}

/* Remove weird underline issue */
.sidebar-menu .nav-link::after {
  display: none;
}

/* CTA button bottom */
.sidebar-cta {
  padding-top: 20px;
}

.sidebar-cta .call-btn {
  border-radius: 30px;
  padding: 12px;
  font-size: 16px;
}

@keyframes blink {
  50% { opacity: 0.4; }
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

  .topbar {
    font-size: 12px;
    text-align: center;
  }

  .navbar-nav {
    margin-top: 10px;
  }

  .nav-cta {
    margin-top: 10px;
    justify-content: center;
  }
}

/* ===== HERO BACKGROUND ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(15, 32, 39, 0.75), rgba(44, 83, 100, 0.75)),
              url('../image/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

/* ===== TEXT ===== */
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title span {
  color: #00e5ff;
}

.hero-sub {
  font-size: 18px;
  margin-top: 15px;
  color: #d1d1d1;
}

/* Badge */
.badge-box {
  display: inline-block;
  background: rgba(0,229,255,0.1);
  border: 1px solid #00e5ff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
}

/* Tags */
.hero-tags span {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  margin: 4px;
  border-radius: 30px;
  font-size: 13px;
}

/* Buttons */
.hero-buttons .btn {
  margin-right: 10px;
  margin-top: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

/* Call */
.call-btn {
  background: linear-gradient(45deg, #ff512f, #dd2476) !important;
  color: #fff !important;
}

/* WhatsApp */
.whatsapp-btn {
  background: #25D366 !important;
  color: #fff !important;
}

/* Book */
.book-btn {
  background: #00e5ff !important;
  color: #000 !important;
}

/* ===== FORM ===== */
.hero-form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero-form h4 {
  font-weight: 700;
}

.hero-form p {
  font-size: 14px;
  color: #ccc;
}

/* Inputs */
.hero-form .form-control {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
}

.hero-form .form-control::placeholder {
  color: #ccc;
}

/* Button */
.enquire-btn {
  background: linear-gradient(45deg, #00e5ff, #00c6ff);
  border: none;
  color: #000;
  font-weight: 700;
  padding: 12px;
  border-radius: 30px;
}

/* ===== BLINK EFFECT ===== */
.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0.4; }
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-section {
    padding: 60px 0;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-tags span {
    font-size: 12px;
    padding: 6px 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-right: 0;
  }

  .hero-form {
    margin-top: 20px;
    padding: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-section {
    padding: 40px 0;
  }
}
/* ===== TRUST STRIP ===== */
.trust-strip {
  margin-top: -60px; /* overlap hero nicely */
  position: relative;
  z-index: 10;
}

/* Wrapper */
.trust-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Item */
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: #222;
  transition: 0.3s;
  height: 100%;
}

/* Icon Box */
.trust-icon {
  width: 55px;
  height: 55px;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c6ff;
  font-size: 20px;
  transition: 0.3s;
}

/* Hover Effects */
.trust-item:hover .trust-icon {
  background: linear-gradient(45deg, #00e5ff, #00c6ff);
  color: #000;
  transform: translateY(-5px);
}

.trust-item:hover {
  color: #00c6ff;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .trust-strip {
    margin-top: -40px;
  }

  .trust-wrapper {
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trust-strip {
    margin-top: 0; /* remove overlap for small devices */
  }

  .trust-wrapper {
    border-radius: 15px;
    padding: 20px 10px;
  }

  .trust-item {
    font-size: 14px;
  }

  .trust-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .trust-item span {
    font-size: 13px;
  }
}
/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative;
  background: #ffffff;
  padding: 90px 0;
  overflow: hidden;
}

/* Background Shapes */
.about-section::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #00e5ff, #00c6ff);
  opacity: 0.08;
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

.about-section::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #ff512f, #dd2476);
  opacity: 0.08;
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
}

/* Title */
.about-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-title span {
  color: #00c6ff;
}

/* Text */
.about-text {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Features */
.about-features {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9f9;
  padding: 12px 15px;
  border-radius: 12px;
  transition: 0.3s;
  font-size: 14px;
}

.feature-box i {
  color: #00c6ff;
  font-size: 18px;
}

.feature-box:hover {
  transform: translateY(-5px);
  background: #f1faff;
}

/* Button */
.about-btn {
  display: inline-block;
  margin-top: 25px;
  background: linear-gradient(45deg, #00e5ff, #00c6ff);
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  transform: scale(1.05);
}

/* Image */
.about-img-box {
  position: relative;
}

.about-img-box img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 100%;
}

/* ===== BLINK ===== */
.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0.5; }
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .about-section {
    padding: 70px 0;
    text-align: center;
  }

  .about-title {
    font-size: 32px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .feature-box {
    justify-content: center;
  }

  .about-btn {
    width: 100%;
    text-align: center;
  }

  .about-img-box {
    margin-top: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-section {
    padding: 50px 0;
  }

  .about-title {
    font-size: 24px;
  }
}

/* ===== FEATURES PREMIUM ===== */
.features-modern {
  background: radial-gradient(circle at top left, #0f2027, #203a43, #2c5364);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Animated Glow Background */
.features-modern::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: #00e5ff;
  opacity: 0.08;
  border-radius: 50%;
  top: -150px;
  left: -150px;
  filter: blur(100px);
}

/* Heading */
.feature-tag {
  color: #00e5ff;
  letter-spacing: 2px;
  font-size: 12px;
}

.feature-title {
  font-size: 42px;
  font-weight: 800;
}

.title-line {
  width: 70px;
  height: 3px;
  background: linear-gradient(45deg, #00e5ff, #00c6ff);
  margin: 12px auto 0;
  border-radius: 10px;
}

/* Feature Card */
.feature-item {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  transition: 0.4s;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Hover Glow Border Effect */
.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(45deg, transparent, #00e5ff, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.feature-item:hover::before {
  opacity: 1;
}

/* Hover Effect */
.feature-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,229,255,0.25);
}

/* Icon Circle */
.icon-circle {
  width: 75px;
  height: 75px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #00e5ff, #00c6ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 26px;
  position: relative;
}

/* Icon Glow */
.icon-circle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00e5ff;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(20px);
  z-index: -1;
}

/* Text */
.feature-item h5 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-item p {
  font-size: 14px;
  color: #ccc;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .feature-title {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .features-modern {
    padding: 70px 0;
  }

  .feature-title {
    font-size: 26px;
  }

  .feature-item {
    padding: 25px 15px;
  }

  .icon-circle {
    width: 65px;
    height: 65px;
    font-size: 22px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .feature-title {
    font-size: 22px;
  }
}


/* ===== VEHICLE SECTION ===== */
.vehicle-section {
  background: #f8f9fb;
  padding: 90px 0;
}

/* Heading */
.vehicle-title {
  font-size: 40px;
  font-weight: 800;
}

.vehicle-sub {
  color: #666;
  font-size: 16px;
}

/* CARD */
.vehicle-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hover */
.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,229,255,0.2);
}

/* IMAGE FIX (IMPORTANT) */
.vehicle-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff; /* important */
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* FIXED */
  transition: 0.4s;
}
.vehicle-card:hover img {
  transform: scale(1.08);
}

/* Title */
.vehicle-card h5 {
  margin-top: 12px;
  font-weight: 700;
}

/* INFO */
.vehicle-info {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-weight: 600;
  font-size: 14px;
}

/* BUTTONS */
.vehicle-btns {
  display: flex;
  gap: 6px;
  margin-top: auto; /* pushes buttons to bottom */
}

.vehicle-btns .btn {
  flex: 1;
  font-size: 12px;
  padding: 8px;
  border-radius: 8px;
  white-space: nowrap;
}

/* WhatsApp */
.wa-btn {
  background: #25D366 !important;
  color: #fff !important;
}

/* Enquiry */
.enquiry-btn {
  background: #222 !important;
  color: #fff !important;
}

/* Call */
.call-btn {
  background: #ff3b3b !important;
  color: #fff !important;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .vehicle-title {
    font-size: 32px;
  }

  .vehicle-img {
    height: 170px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .vehicle-title {
    font-size: 26px;
  }

  .vehicle-sub {
    font-size: 14px;
  }

  .vehicle-img {
    height: 160px;
  }

  .vehicle-btns {
    flex-direction: column;
  }

  .vehicle-btns .btn {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .vehicle-section {
    padding: 60px 0;
  }

  .vehicle-img {
    height: 150px;
  }
}

/* ===== PROMO SECTION ===== */
.promo-section {
  background: linear-gradient(rgba(15, 32, 39, 0.641), rgba(44, 83, 100, 0.767)),
              url('../image/promo-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  color: #fff;
}

/* Title */
.promo-title {
  font-size: 40px;
  font-weight: 800;
}

.promo-title span {
  color: #00e5ff;
}

/* Text */
.promo-text {
  color: #ccc;
  margin: 15px 0 25px;
}

/* Features Grid */
.promo-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Item */
.promo-item h6 {
  color: #00e5ff;
  font-weight: 700;
}

.promo-item p {
  font-size: 14px;
  color: #ccc;
}

/* Buttons */
.promo-btns {
  margin-top: 25px;
}

.promo-btns .btn {
  margin-right: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

/* Call */
.call-btn {
  background: linear-gradient(45deg, #ff512f, #dd2476);
  color: #fff;
}

/* WhatsApp */
.wa-btn {
  background: #25D366;
  color: #fff;
}

/* Image */
.promo-img img {
  max-width: 100%;
  border-radius: 10px !important;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Hover */
.call-btn:hover,
.wa-btn:hover {
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .promo-features {
    grid-template-columns: 1fr;
  }

  .promo-title {
    font-size: 28px;
  }

  .promo-img {
    margin-top: 30px;
  }
}

/* ===== WHY SECTION ===== */
.why-section {
  background: white;
  padding: 90px 0;
  color: black;
  position: relative;
  overflow: hidden;
}

/* Background Glow */
.why-section::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: #00e5ff;
  opacity: 0.08;
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

/* Title */
.why-title {
  font-size: 40px;
  font-weight: 800;
  
}

.why-sub {
  color: #666;
  max-width: 600px;
  margin: 10px auto 0;
}

/* Card */
.why-card {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: left;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
}

/* Hover Glow */
.why-card:hover {
  transform: translateY(-10px);
  border: 1px solid #00e5ff;
  box-shadow: 0 10px 40px rgba(0,229,255,0.2);
}

/* Icon */
.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #00e5ff, #00c6ff);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
  margin-bottom: 15px;
}

/* Text */
.why-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.why-card p {
  font-size: 14px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .why-title {
    font-size: 28px;
  }
}

/* ===== TOUR SECTION ===== */
.tour-section {
  background: #ffffff;
  padding: 90px 0;
}

/* Heading */
.tour-title {
  font-size: 40px;
  font-weight: 800;
}

.tour-sub {
  color: #666;
  font-size: 16px;
}

/* CARD */
.tour-card {
  background: #0f2027;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hover */
.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,229,255,0.2);
}

/* IMAGE FIX */
.tour-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps all images same */
  transition: 0.4s;
}

.tour-card:hover img {
  transform: scale(1.08);
}

/* Badge */
.tour-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #00e5ff;
  color: #000;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

/* Content */
.tour-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-content h5 {
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}

.tour-content p {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 5px;
}

/* Buttons */
.tour-btns {
  display: flex;
  gap: 6px;
  margin-top: auto; /* pushes to bottom */
}

.tour-btns .btn {
  flex: 1;
  border-radius: 8px;
  font-size: 12px;
  padding: 8px;
}

/* Call */
.call-btn {
  background: linear-gradient(45deg, #ff512f, #dd2476);
  color: #fff;
}

/* WhatsApp */
.wa-btn {
  background: #25D366;
  color: #fff;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .tour-title {
    font-size: 32px;
  }

  .tour-img {
    height: 170px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .tour-title {
    font-size: 26px;
  }

  .tour-sub {
    font-size: 14px;
  }

  .tour-img {
    height: 160px;
  }

  .tour-btns {
    flex-direction: column;
  }

  .tour-btns .btn {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .tour-section {
    padding: 60px 0;
  }

  .tour-img {
    height: 150px;
  }
}

/* ===== LOCATIONS SECTION ===== */
.locations-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 90px 0;
  color: #fff;
  position: relative;
}

/* Glow Background */
.locations-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: #00e5ff;
  opacity: 0.08;
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

/* Heading */
.loc-title {
  font-size: 38px;
  font-weight: 800;
}

.loc-sub {
  color: #ccc;
}

/* List */
.loc-list {
  list-style: none;
  padding: 0;
}

.loc-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #ddd;
  transition: 0.3s;
}

/* Icon */
.loc-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00e5ff;
  font-size: 14px;
}

/* Hover */
.loc-list li:hover {
  color: #00e5ff;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .loc-title {
    font-size: 28px;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-tag{
  color: #00c6ff;
  font-weight: 700;
}
/* Title */
.cta-title {
  font-size: 42px;
  font-weight: 800;
}

.cta-text {
  color: #666;
  margin-top: 10px;
  font-size: 16px;
}

/* Features */
.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin: 25px 0;
}

.feature {
  font-size: 14px;
  color: #333;
}

/* Button */
.cta-btn {
  background: linear-gradient(45deg, #00e5ff, #00c6ff) ;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* BLINK */
.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0.5; }
}

/* ===== IMAGE ===== */
.cta-img {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
}

.cta-img img {
  width: 650px;
  max-width: none;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {

  .cta-section {
    padding: 70px 0;
    text-align: center;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-features {
    grid-template-columns: 1fr 1fr;
  }

  .cta-img {
    display: none; /* HIDE IMAGE */
  }
}

/* Mobile */
@media (max-width: 768px) {

  .cta-title {
    font-size: 26px;
  }

  .cta-text {
    font-size: 14px;
  }

  .cta-features {
    grid-template-columns: 1fr;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 22px;
  }
}

/* ===== WORKS SECTION ===== */
.works-section {
  background: linear-gradient(rgba(15,32,39,0.95), rgba(44,83,100,0.95)),
              url('../image/work-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  color: #fff;

}

/* Title */
.works-title {
  font-size: 40px;
  font-weight: 800;
}

.works-sub {
  color: #ccc;
}

/* Wrapper */
.works-wrapper {
  position: relative;
  height: 500px;
}

/* Center Image */
.works-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.works-center img {
  width: 600px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* Work Items */
.work-item {
  position: absolute;
  width: 220px;
}

.work-item h6 {
  font-weight: 700;
}

.work-item p {
  font-size: 13px;
  color: #ccc;
}

/* Circle */
.circle {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #00e5ff, #00c6ff);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

/* POSITIONING */

/* Left Top */
.work-1 {
  top: 50px;
  left: 0;
}

/* Left Bottom */
.work-2 {
  bottom: 50px;
  left: 0;
}

/* Right Top */
.work-3 {
  top: 50px;
  right: 0;
}

/* Right Bottom */
.work-4 {
  bottom: 50px;
  right: 0;
}

/* LINE CONNECTORS */
.work-item::after {
  content: '';
  position: absolute;
  height: 2px;
  background: #00e5ff;
  width: 120px;
  top: 25px;
}

/* Left lines */
.work-1::after,
.work-2::after {
  left: 220px;
}

/* Right lines */
.work-3::after,
.work-4::after {
  right: 220px;
}

/* Hover */
.work-item:hover .circle {
  transform: scale(1.1);
}

/* ===== MOBILE RESPONSIVE IMPROVED ===== */
@media (max-width: 991px) {

  .works-wrapper {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 25px;
  }

  /* Reset absolute layout */
  .work-item,
  .works-center {
    position: relative;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    transform: none;
    text-align: center;
  }

  /* ORDER CONTROL */
  .work-1 { order: 1; }
  .work-2 { order: 2; }
  .works-center { order: 3; }
  .work-3 { order: 4; }
  .work-4 { order: 5; }

  /* Image */
  .works-center img {
    width: 260px;
    margin: 10px 0;
  }

  /* Card width */
  .work-item {
    max-width: 320px;
    width: 100%;
  }

  /* Remove lines */
  .work-item::after {
    display: none;
  }

  /* Improve spacing */
  .circle {
    margin: 0 auto 10px;
  }

  .works-title {
    font-size: 28px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: white;
  padding: 100px 0;
  color: black;
}

/* FORM BOX */
.contact-form-box {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.contact-form-box h3 {
  font-weight: 700;
}

.contact-form-box p {
  color: #666;
  margin-bottom: 20px;
}

/* INPUT */
.form-control {
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  box-shadow: 0 0 10px #00e5ff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* BUTTON */
.contact-btn {
  margin-top: 20px;
  background: linear-gradient(45deg, #00e5ff, #00c6ff);
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  width: 100%;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.05);
}

/* INFO BOX */
.contact-info-box {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.contact-info-box h4 {
  margin-bottom: 20px;
}

/* INFO ITEM */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 20px;
  color: #00e5ff;
  margin-top: 5px;
}

.info-item p {
  margin: 0;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-info-box {
    margin-top: 20px;
  }
}
/* ===== FOOTER ===== */
.footer-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 70px 0 0;
}

/* Logo */
.footer-logo {
  width: 150px;
}

/* Text */
.footer-box p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

/* Headings */
.footer-box h5 {
  margin-bottom: 15px;
  font-weight: 700;
}

/* Links */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.footer-box ul li a:hover {
  color: #00e5ff;
  transform: translateX(5px);
}

/* Icons */
.footer-box i {
  color: #00e5ff;
  margin-right: 8px;
}

/* Contact links */
.footer-box a {
  color: #ccc;
  text-decoration: none;
}

.footer-box a:hover {
  color: #00e5ff;
}

/* Social */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #00e5ff;
  color: #000;
  transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 15px 0;
  font-size: 14px;
  color: #aaa;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {
  .footer-section {
    padding: 50px 0 0;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .footer-box {
    text-align: center;
  }

  .footer-box p {
    font-size: 13px;
  }

  .footer-box ul li a:hover {
    transform: none;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer-logo {
    width: 130px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}
/* ===== FLOATING ICONS ===== */
.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Base Button */
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
  text-decoration: none;
}

/* Call */
.call-float {
  background: linear-gradient(45deg, #ff512f, #dd2476);
  animation: pulseCall 1.5s infinite;
}

/* WhatsApp */
.whatsapp-float {
  background: #25D366;
  animation: pulseWhatsapp 1.5s infinite;
}

/* Top */
.top-float {
  background: #222;
}

/* Hover */
.float-btn:hover {
  transform: scale(1.1);
}

/* Pulse Animations */
@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(255,81,47,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(255,81,47,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,81,47,0); }
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .floating-icons {
    right: 15px;
    bottom: 15px;
  }

  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
/* ===== MODAL CUSTOM STYLE ===== */
.custom-modal {
  background: rgba(15, 32, 39, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Close button */
.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  filter: invert(1);
}

/* Title */
.custom-modal h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

/* Text */
.custom-modal p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Input */
.custom-modal .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid #00c6ff;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
}

.custom-modal .form-control::placeholder {
  color: #666;
}

/* Button */
.custom-modal .enquire-btn {
  background: linear-gradient(45deg, #00e5ff, #00c6ff);
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  padding: 12px;
}

/* Animation */
.modal.fade .modal-dialog {
  transform: scale(0.8);
  transition: 0.3s;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

/* ===== STICKY ENQUIRE BUTTON (LEFT SIDE) ===== */
.sticky-enquire {
  position: fixed;
  top: 50%;
  left: 0; /* changed from right to left */
  transform: translateY(-50%);
  z-index: 9999;
}

/* Button Style */
.sticky-enquire a {
  display: block;
  background: linear-gradient(45deg, #ff512f, #dd2476);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 8px 8px 0; 
  writing-mode: vertical-rl;
  letter-spacing: 1px;
  transition: 0.3s;
}

/* Hover Effect */
.sticky-enquire a:hover {
  background: linear-gradient(45deg, #00e5ff, #00c6ff);
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .sticky-enquire a {
    padding: 10px 14px;
    font-size: 12px;
  }
}