body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

/* ============================= Nabvar Style =================================================== */
.navbar {
  background: #232326;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 64px;
  position: relative;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo-icon {
  font-size: 2rem;
  margin-right: 8px;
}

.brand {
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.navbar-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.navbar-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.navbar-links li a:hover {
  color: #e3624c;
}

.navbar-right {
  text-align: right;
  margin-left: 32px;
}

.question {
  display: block;
  font-size: 1rem;
}

.phone {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}

.navbar-toggler {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-left: 18px;
}

/* Hide contact info in menu by default */
.menu-contact {
  display: none;
  text-align: left;
}

@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
  }

  .navbar-left .brand {
    font-size: 1.07rem;
  }

  .navbar-right {
    margin-left: 12px;
    font-size: 0.93rem;
  }

  .navbar-links {
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 8px 8px;
    height: auto;
    position: relative;
  }

  .navbar-left {
    margin-bottom: 0;
  }

  .navbar-right {
    display: none;
  }

  .navbar-toggler {
    display: block;
    position: static;
    order: 3;
    margin-left: auto;
  }

  .navbar-links {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 0;
    background: #232326;
    margin-top: 0;
    order: 4;
  }

  .navbar-links.show {
    display: flex;
  }

  .navbar-links li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #2d2d2d;
  }

  .navbar-links li:last-child {
    border-bottom: none;
  }

  .menu-contact {
    display: block;
    padding: 10px 0;
    border-top: 1px solid #2d2d2d;
    border-bottom: none;
  }

  .menu-contact .question,
  .menu-contact .phone {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin: 2px 0;
  }
}

/* =============================================== Home View ++++++++++++++++++++++++++++++++++++++++++ */


.hero {
  height: 100vh;
  width: 100%;
  background-image: url('./img/homeView.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 6%;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  /* lighter overlay for better readability */
}

.content {
  position: relative;
  max-width: 700px;
  z-index: 2;
  animation: fadeIn 1.5s ease-in-out;
}

.top-text {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.85;
  text-transform: uppercase;
  color: #ffd700;
  /* gold accent for visibility */
}

.title {
  font-size: 65px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.subtitle {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  color: #f0f0f0;
}

.call-box {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  /* wrap for smaller screens */
}

.call-icon {
  height: 65px;
  width: 65px;
  background: #ff4c4c;
  /* softer red */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.call-info {
  font-size: 20px;
  line-height: 1.4;
}

.call-info span {
  font-weight: 700;
  font-size: 28px;
  color: #ffd700;
  /* gold accent for phone number */
  display: inline-block;
  margin-top: 5px;
}

a {
  text-decoration: none;
  color: inherit;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media(max-width: 1024px) {
  .title {
    font-size: 50px;
  }

  .call-info span {
    font-size: 26px;
  }

  .call-icon {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

@media(max-width: 768px) {
  .hero {
    padding: 0 4%;
  }

  .title {
    font-size: 38px;
  }

  .subtitle {
    font-size: 16px;
  }

  .call-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .call-info {
    font-size: 18px;
  }

  .call-info span {
    font-size: 24px;
  }

  .call-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media(max-width: 480px) {
  .title {
    font-size: 32px;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 15px;
  }

  .call-info {
    font-size: 16px;
  }

  .call-info span {
    font-size: 22px;
  }

  .call-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}


/* ==================== Stats Section +++++++++++++++++++++++++++ */


/* MAIN WRAPPER */
.stats-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* LEFT SIDE */
.left {
  padding: 80px 70px;
}

.left h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.left p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
}

.link-btn {
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 2px;
  color: #ff3c2e;
  font-weight: 600;
}

/* RIGHT SIDE */
.right {
  background: #f23830;
  padding: 80px 70px;
  color: white;
}

.small-heading {
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 50px;
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
}

.stat-box h2 {
  font-size: 70px;
  font-weight: 700;
}

.stat-box p {
  font-size: 18px;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-section {
    grid-template-columns: 1fr;
  }

  .right,
  .left {
    padding: 50px 30px;
  }

  .stat-box h2 {
    font-size: 50px;
  }
}


/* ============================ Service Cards ================================ */

/* Section */
.services-section {
  padding: 60px 60px;
  text-align: center;
}

.services-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

/* Card */
.service-card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}

/* Image */
.service-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Text */
.service-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}


/* -===============================================Why choose us section style */

/* Background Section */
.why-choose-section {
  position: relative;
  background: url('/mnt/data/whychoose.png') center/cover no-repeat;
  padding: 120px 30px;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* Center content */
.content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Titles */
.small-title {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Grid Box */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: none;
  border-top: none;
}

.feature-box {
  padding: 40px 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Icons */
.feature-icon {
  font-size: 48px;
  color: #ff3d2e;
  margin-bottom: 20px;
}

/* Heading */
.feature-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Paragraph */
.feature-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #d7d7d7;
}

/* Responsive */
@media(max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .main-title {
    font-size: 34px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}



.testimonial-section {
  padding: 70px 80px;
}

.section-title {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 60px;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.testimonial-card {
  max-width: 480px;
  line-height: 1.7;
}

.testimonial-text {
  font-size: 18px;
  margin-bottom: 30px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.reviewer-name {
  margin: 0;
  font-size: 17px;
  letter-spacing: 2px;
}

.reviewer-role {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 1000px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonial-section {
    padding: 60px 20px;
  }
}

/* Contact Section */
.contact-section {
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
}

.contact-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 25px;
}

.contact-subtitle {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.info-box {
  margin-bottom: 28px;
}

.info-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.info-box p {
  font-size: 18px;
  color: #444;
}

.info-box a {
  text-decoration: none;
  color: #d10000;
  font-weight: 600;
}

/* WhatsApp Button */
.whatsapp-btn {
  padding: 8px 18px;
  border: 2px solid #25D366;
  color: #25D366 !important;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #25D366;
  color: #fff !important;
}

/* RIGHT SIDE FORM */
.contact-right {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 6px;
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.contact-submit {
  margin-top: 25px;
  padding: 14px 25px;
  border: 2px solid #d10000;
  background: transparent;
  color: #d10000;
  font-size: 17px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-submit:hover {
  background: #d10000;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
}



/* FOOTER */
.footer {
  background: #1d1f23;
  color: #ddd;
  padding: 70px 0 0 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

/* BRAND COLUMN */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background: #e63946;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.footer-logo h2 {
  font-size: 28px;
  margin: 0;
}

.footer-text {
  margin: 20px 0;
  line-height: 1.7;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.social-icon {
  font-size: 20px;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  background: #2a2c31;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* COLUMNS */
.footer-col h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #fff;
}

/* ADDRESS TEXT */
.footer-col p {
  margin: 8px 0;
  font-size: 17px;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #16181c;
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding-left: 5%;
  padding-right: 5%;
}

.footer-bottom p {
  margin: 0;
  font-size: 16px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 650px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}