/* ================================
   GLOBAL RESET / IMPROVEMENTS
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================
   FINAL NAVBAR FIX (LINKS VISIBLE)
================================ */
.navbar {
  background-color: #111827 !important;
  padding: 10px 0;
}

.logo-img {
  width: 250px;
  max-width: 100%;
  object-fit: contain;
}

.logo-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.navbar .navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
  transition: 0.3s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover {
  color: #facc15 !important;
}

.navbar .navbar-nav .nav-link.active {
  color: #facc15 !important;
}

.navbar .navbar-brand {
  color: #facc15 !important;
}

.navbar .navbar-brand:hover {
  color: #ffffff !important;
}

/* FIX NAVBAR TOGGLER */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.navbar-toggler-icon {
  filter: brightness(100) !important;
}

/* ================================
   HERO SECTION (VIDEO BACKGROUND)
================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #050914;
  color: #fff;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 0;
  pointer-events: none;
}



/* CONTENT ABOVE */
.hero-section .container {
  position: relative;
  z-index: 5;
}

/* TEXT ENHANCEMENT */
.hero-section h1 {
  text-shadow: 0 0 25px rgba(0, 174, 239, 0.25);
}

/* BADGES */
.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 14px;

  display: flex;
  gap: 8px;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* QUICK CONTACT CARD (make it visible on video) */
.quick-contact-card {
  background: rgba(10, 15, 30, 0.75);
  border-radius: 16px;
  padding: 30px;

  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* BUTTON IMPROVEMENT */
.quick-contact-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00AEEF, #7B2FF7);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-video {
    object-position: center;
  }
}

/* REDUCE DATA (optional performance boost) */
@media (prefers-reduced-data: reduce) {
  .hero-video {
    display: none;
  }
}


/* ================================
   SERVICE SECTION
================================ */
.service-card {
  text-align: center;
  transition: 0.3s ease-in-out;
  padding: 25px;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* SERVICE ICON CENTER FIX */
.service-icon {
  font-size: 45px;
  color: #facc15;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 80px;
  height: 80px;

  margin: 0 auto;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.12);
}

/* ================================
   STATS BOX
================================ */
.stat-box {
  padding: 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

/* ================================
   CONTACT PAGE STYLES
================================ */
.contact-card {
  min-height: 100%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  word-break: break-word;
}

.contact-item i {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ffb703, #ff006e);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-left-card {
  gap: 40px;
}

/* ================================
   FOOTER LINKS
================================ */
.footer-link {
  text-decoration: none;
  color: #d1d5db;
  display: inline-block;
  margin-bottom: 6px;
  transition: 0.3s ease-in-out;
}

.footer-link:hover {
  color: #facc15;
}

.footer-img {
  width: 175px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 5px;
}

.footer-description {
  font-size: 14.5px;
  color: #9ca3af;
  line-height: 1.6;
}

/* ================================
   FLOATING WHATSAPP & CALL BUTTONS
================================ */
.float-btn {
  position: fixed;
  right: 18px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 999;
  color: white;
  text-decoration: none;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.35);
  transition: 0.3s ease-in-out;
}

.float-btn.whatsapp {
  bottom: 90px;
  background: #25d366;
}

.float-btn.call {
  bottom: 20px;
  background: #f59e0b;
}

.float-btn:hover {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

/* ================================
   QUICK CONTACT CARD (HOMEPAGE)
================================ */
.quick-contact-card {
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border-radius: 18px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease-in-out;
}

.quick-contact-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ffb703, #ff006e);
  border-radius: 50%;
  opacity: 0.25;
  z-index: 0;
}

.quick-contact-card::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.quick-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.18);
}

.quick-contact-content {
  position: relative;
  z-index: 2;
}

.quick-contact-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 5px;
  color: #111827;
}

.quick-contact-card p.text-muted {
  font-size: 15px;
  margin-bottom: 18px;
  color: #6b7280 !important;
}

.contact-info {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info i {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ffb703, #ff006e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0px 6px 15px rgba(255, 0, 110, 0.25);
}

/* QUICK CONTACT BUTTON */
.quick-contact-btn {
  background: linear-gradient(135deg, #111827, #374151);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  padding: 12px 15px;
  border-radius: 12px;
  transition: 0.4s ease-in-out;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.quick-contact-btn:hover {
  background: linear-gradient(135deg, #ffb703, #ff006e);
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0px 10px 25px rgba(255, 0, 110, 0.35);
}

/* ================================
   CORE CARD ICON CENTER FIX
================================ */
.core-card {
  text-align: center;
}

.core-card i {
  width: 80px;
  height: 80px;
  background: rgba(250, 204, 21, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-size: 32px !important;
}

/* ================================
   TESTIMONIAL STARS
================================ */
.testimonial-stars i {
  font-size: 16px;
  margin-right: 2px;
}

/* ================================
   RESPONSIVE DESIGN (MOBILE FIRST)
================================ */

/* Small Mobile */
@media (max-width: 576px) {

  .logo-img {
    width: 170px;
  }

  .hero-section {
    padding: 55px 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section p {
    font-size: 15px;
  }

  .hero-badge {
    font-size: 13px;
    padding: 8px 12px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 35px;
  }

  .quick-contact-card {
    padding: 22px;
  }

  .quick-contact-card h3 {
    font-size: 22px;
  }

  .contact-info {
    font-size: 14px;
  }

  .contact-item {
    gap: 14px;
    font-size: 14px;
  }

  .contact-item i {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
    right: 14px;
  }

  .float-btn.whatsapp {
    bottom: 80px;
  }

  .float-btn.call {
    bottom: 18px;
  }

  .footer-img {
    width: 150px;
  }

  .footer-description {
    font-size: 13.5px;
  }
}

/* Tablet */
@media (max-width: 992px) {

  .logo-img {
    width: 200px;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 34px;
  }

  .quick-contact-card {
    padding: 25px;
  }

  .service-icon {
    width: 75px;
    height: 75px;
    font-size: 40px;
  }

  .contact-details {
    gap: 20px;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {

  .hero-section {
    padding: 90px 0;
  }

  .hero-section h1 {
    font-size: 52px;
  }

  .hero-section p {
    font-size: 18px;
  }

  .service-card {
    padding: 30px;
  }
}