:root {
  --primary-bg: #0c084b;
  --accent-yellow: #ffca28;
  --soft-white: #f5f5f7;
  --text-dark: #111;
  --cta-hover: #0077cc;
}

/* 🌍 Base Reset */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right,  #f5f5f7, #f8f9fb);
  color: var(--text-dark);
}

/* 🧭 NAVBAR */
.navbar {
  background: linear-gradient(to right, #0a0a0a, #080808);
  color: #fff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.logo-img {
  height: 40px !important;
  width: 40px !important;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 5px rgba(255, 202, 40, 0.3);
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
  color: var(--accent-yellow);
}

/* 🎠 HERO */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #fffdf9, #ffffff);
}

.hero-img {
  height: 500px;
  object-fit: cover;
  filter: brightness(0.95);
}

/* ℹ️ INFO */
.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  gap: 40px;
  background: #fffdf9;
}

.info-text h2 {
  font-size: 32px;
  color: var(--text-dark);
}

.info-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #121213;
}

.info-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 🛠️ SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 50px 10%;
  background: linear-gradient(to right, #f8f9fb, #fffde7);
}

.service-box {
  background: var(--primary-bg);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 0.9s ease both;
  cursor: pointer;
  color: var(--soft-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-box:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 12px 30px rgba(255, 202, 40, 0.3);
}

.service-box.clicked {
  box-shadow: 0 0 25px 4px var(--accent-yellow), 0 0 40px 12px rgba(255, 208, 0, 0.3);
  transform: scale(1.03);
}

.service-box .card-body {
  padding: 20px;
}

.service-box .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-bottom: 10px;
}

.service-box .card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.card-footer {
  padding: 16px;
  background: transparent;
  border-top: none;
}

.card-footer a.btn {
  background-color: var(--accent-yellow);
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.card-footer a.btn:hover {
  background-color: var(--primary-bg);
  color: var(--accent-yellow);
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--accent-yellow), 0 0 18px rgba(255, 202, 40, 0.4);
}

/* ➕ MORE SERVICES */
.more-services {
  background: linear-gradient(to right, var(--primary-bg), #1c1c3a);
  padding: 40px 0;
  text-align: center;
}

.more-services a {
  background: var(--accent-yellow);
  color: #111;
  font-weight: bold;
  border-radius: 8px;
  padding: 14px 30px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.more-services a:hover {
  background: #fff;
  color: var(--primary-bg);
  box-shadow: 0 0 10px var(--accent-yellow), 0 0 15px rgba(255, 202, 40, 0.4);
}

/* 🔻 Footer Vibe Overhaul */
.footer-section {
  background: linear-gradient(to right, #0a0a0a, #1c1c1c);
  color: #f1f1f1;
  font-family: 'Poppins', sans-serif;
  padding-top: 60px;
  border-top: 4px solid var(--accent-yellow);
}

.footer-section h4 {
  color: var(--accent-yellow);
  font-weight: 600;
}

.footer-section p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.footer-section .footer-link {
  color: #ffd54f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section .footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* 🧾 Contact Form Styling */
.footer-section .contact-box input,
.footer-section .contact-box textarea {
  border: 1px solid #444;
  background: #1c1c1c;
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section .contact-box input:focus,
.footer-section .contact-box textarea:focus {
  border-color: var(--accent-yellow);
  outline: none;
  background-color: #2b2b2b;
}

/* ✨ Counter Section */
.footer-section .row.text-center .col-md-3 h3 {
  font-size: 28px;
  font-weight: 700;
}

.footer-section .row.text-center .col-md-3 p {
  font-size: 13px;
  color: #aaa;
}

/* ⚠️ Send Button Styling */
.footer-section .btn-warning {
  background-color: var(--accent-yellow);
  color: #111;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.footer-section .btn-warning:hover {
  background-color: #fff;
  color: var(--primary-bg);
  box-shadow: 0 0 10px var(--accent-yellow), 0 0 20px rgba(255, 202, 40, 0.5);
}

/* ⚓ Bottom Text */
.footer-section .text-muted {
  font-size: 13px;
  color: #777 !important;
}


/* 💡 Fix contact form inside footer */
.footer-section .contact-box {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-section .contact-box input,
.footer-section .contact-box textarea {
  background: #1c1c1c;
  color: #fff;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
}

.footer-section .contact-box input::placeholder,
.footer-section .contact-box textarea::placeholder {
  color: #aaa;
}

.footer-section .contact-box input:focus,
.footer-section .contact-box textarea:focus {
  background-color: #2b2b2b;
  border-color: var(--accent-yellow);
  outline: none;
}

.footer-section .contact-box button {
  background-color: var(--accent-yellow);
  color: #111;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  padding: 12px;
  transition: all 0.3s ease;
}

.footer-section .contact-box button:hover {
  background-color: #fff;
  color: var(--primary-bg);
  box-shadow: 0 0 10px var(--accent-yellow), 0 0 20px rgba(255, 202, 40, 0.5);
}

/* 🌍 MAP */
.map-container {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 🔝 BANNER */
.page-banner {
  width: 100%;
  text-align: center;
  background: #fffdf9;
}

.banner-top-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner-title h1 {
  font-size: 48px;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 20px;
}

/* 🔄 Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🌟 CTA Glow */
@keyframes glowPulse {
  from {
    box-shadow: 0 0 10px var(--accent-yellow), 0 0 20px rgba(255, 202, 40, 0.5);
  }
  to {
    box-shadow: 0 0 15px var(--accent-yellow), 0 0 30px rgba(255, 202, 40, 0.8);
  }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-img {
    height: 250px;
  }

  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .banner-top-img {
    height: 180px;
  }

  .banner-title h1 {
    font-size: 32px;
  }
}