/* =====================================================
  INDEX
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #000000;
  color: #fff;
  overflow-x: hidden;
}

/* =====================================================
   NAVBAR
===================================================== */
.svc-header {
  background: #000000;
  padding: 18px 20px;
  position: sticky;
  top: 0;
  z-index: 110;
  backdrop-filter: blur(6px);
}

.svc-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.svc-logo {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.svc-logo span {
  color: #D4AF37;
}

.svc-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.svc-nav a {
  color: #ffffff;
  opacity: 0.85;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s;
  font-family: Inter, "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
font-weight: 600;
}

.svc-nav a:hover,
.svc-nav a.active {
  color: #000000;
  background: #D4AF37;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ✅ ✅ ✅ RESPONSIVE DESIGN */

/* 📱 Tablets & Mobile */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-graphics {
    width: 100%;
    height: 250px;
  }
}

/* 📱 Mobile Only */
@media (max-width: 600px) {
  /* Hide desktop menu – hamburger will be added later */
  .svc-nav {
    display: none;
  }

  .svc-logo {
    font-size: 1.4rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .cta-section {
    padding: 50px 20px;
  }
}

/* =====================================================
   HERO SECTION — Upgraded
===================================================== */
.hero {
  height: 85vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  background: radial-gradient(circle at top right, #edf90b22, transparent),
              linear-gradient(135deg, #000000, #000000);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.2;
  color: #fffefe
}

.hero h1 span {
  color: #fcd516;
  text-shadow: 0 0 20px #ffdd0066;
}

.hero p {
  margin: 18px 0 30px;
  font-size: 18px;
  color: #b8b5b5;
}

/* Buttons */
.btn-primary,
.btn-outline {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
  display: inline-block;
}

.btn-primary {
  background: #d9b70d;
  color: #ffffff;
}

.btn-primary:hover {
  background: #ffe100;
}

.btn-outline {
  border: 2px solid #eec00a;
  color: #f6d91b;
}

.btn-outline:hover {
  background: #ffcc02;
  color: #fff;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #efce27, #efce27); /* Gradient background */
  color: #000000;
  text-align: center;
  padding: 60px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin: 40px auto;
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-section a {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.cta-section a:hover {
  background-color: #000000;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-section a {
    padding: 10px 25px;
  }
}

/* Footer */
footer {
  background-color: #000000;
  color: #fff;            
  text-align: center;
  padding: 25px 20px;
  font-size: 0.9rem;
  position: relative;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

footer p {
  margin: 0;
  line-height: 1.5;
  font-family: 'Arial', sans-serif;
}

/* Optional: make links in footer stand out */
footer a {
  color: #ff6600;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffcc33;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  footer {
    font-size: 0.85rem;
    padding: 20px 10px;
  }
}

/* -------------------------
WHY CHOOSE US
------------------------- */
.why-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.why-page {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.svc-header {
  background: #000000;
  padding: 18px 20px;
  position: sticky;
  top: 0;
  z-index: 110;
  backdrop-filter: blur(6px);
}

.svc-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.svc-logo {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.svc-logo span {
  color: #D4AF37;
}

.svc-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.svc-nav a {
  color: #ffffff;
  opacity: 0.85;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s;
  font-family: Inter, "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
font-weight: 600;
}

.svc-nav a:hover,
.svc-nav a.active {
  color: #000000;
  background: #D4AF37;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Responsive for small devices */
@media (max-width: 900px) {
  .svc-navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .svc-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}

.why-logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #222;
  text-decoration: none;
}

.why-nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.why-nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.why-nav-links li a:hover,
.why-nav-links li a.active {
  color: #000000;
}

/* -------------------------
HERO
------------------------- */
.why-hero {
  background: linear-gradient(135deg,#000000, #000000);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

.why-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.why-hero-highlights span {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 20px;
  font-weight: 500;
}

/* -------------------------
FEATURES
------------------------- */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
  padding: 4rem 5%;
}

.why-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* -------------------------
STATS
------------------------- */
.why-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
}

.why-stat {
  font-size: 1.2rem;
  font-weight: 500;
}

.why-stat i {
  font-size: 2rem;
  color: #ffd900;
  display: block;
  margin-bottom: 0.5rem;
}

.why-count {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

/* -------------------------
TESTIMONIALS
------------------------- */
.why-testimonials {
  padding: 4rem 5%;
  text-align: center;
}

.why-testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.why-testimonial {
  min-width: 300px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* -------------------------
CTA
------------------------- */
.why-cta {
  background: #ffc800;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.why-cta h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-btn-cta {
  text-decoration: none;
  background: #ffffff;
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.why-btn-cta:hover {
  background: #ffe6d9;
}

/* -------------------------
FOOTER
------------------------- */
.why-footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 2rem 5%;
}

.why-social-icons a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: 0.3s;
}

.why-social-icons a:hover {
  color: #ffd91d;
}

/* -------------------------
RESPONSIVE
------------------------- */
@media(max-width:768px){
  .why-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .why-hero-highlights span {
    display: block;
    margin: 0.5rem 0;
  }
}

/* CONTACT */
body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #000000;
  margin: 0;
}

/* Navigation */
.contact-navbar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 15px 8%;
  background: #000;
  border-bottom: 1px solid #222;
}

.contact-logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
.contact-logo span {
  color: #d4af37;
}

.contact-nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}
.contact-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: .3s;
}
.contact-nav-links a:hover,
.contact-nav-links a.active {
  color: #ffffff;
}

/* Hero */
.contact-hero {
  text-align: center;
  padding: 50px 10%;
  background: #000000;
}
.contact-hero h1 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Split Wrapper */
.contact-wrapper {
  display: flex;
  gap: 50px;
  padding: 70px 10%;
  align-items: center;
}

/* Contact Info */
.contact-info h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #000000;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 16px;
}
.info-item span {
  color: #000000;
  font-size: 20px;
}
.contact-social a {
  margin-right: 12px;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
}

/* Decorative Image (Coded) */
.contact-image {
  margin-top: 30px;
  width: 250px;
  height: 250px;
  background: url('https://i.postimg.cc/7PtqMsPJ/SAVE-20251105-204957.jpg') no-repeat center/cover;
  border: 2px solid #d4af37;
  border-radius: 20px;
}

/* Contact Form */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #000000;
  padding: 14px;
  color: #000000;
  font-size: 16px;
  border-radius: 8px;
}

/* Button */
.submit-btn {
  background: #000000;
  color: #ffffff;
  font-weight: bold;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: .4s;
}
.submit-btn:hover {
  box-shadow: 0 0 12px #ffffff;
}

/* Contact Social Links */
.contact-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.contact-social a {
  position: relative;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  background-color: #111;
  color: #fff;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-social a span {
  position: relative; /* keep text above animation */
  z-index: 2;
}

/* The continuously moving line */
.contact-social a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%; /* start off left */
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  z-index: 1;

  /* Animation */
  animation: slideLine 3s linear infinite;
}

/* Keyframes for continuous sliding */
@keyframes slideLine {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

/* Optional hover color effect */
.contact-social a:hover {
  color: #ffd900;
  background-color: #222;
  box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .contact-social {
    flex-direction: column;
    gap: 15px;
  }

  .contact-social a {
    width: 100%;
  }
}

/* Map */
.map-section iframe {
  width: 100%;
}

/* Footer */
.contact-footer {
  background: #000;
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 850px) {
  .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .contact-image {
    margin: auto;
  }
}
