 html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #B91C1C;    /* deep red */
  --secondary-color: #7F1D1D;  /* darker red hover */
  --accent-color: #2F5BFF;
  --light-color: #ffffff;
  --dark-color: #000000;         /* HTML text BLACK */
  --gray-color: #f5f5f5;
  --highlight-color: #C62828;
  --indicator-bg: #ccc;
}

.contact-section, 
.contact-wrapper, 
.contact-form, 
.contact-info, 
.contact-form form, 
.info-box, 
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: #ffffff; /* 👈 BODY WHITE */
}



/* ========== NAVIGATION ========== */
.navbar {
  background: transparent;
  transition: background 0.3s ease;
  padding: 15px 0;
  z-index: 1030; 
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand img {
  margin-right: 10px;
}
.navbar-brand .brand-text {
  font-weight: bold;
  font-size: 2rem;
}
.navbar-brand .alora {
  color: var(--light-color);
}
.navbar-brand .net {
  color: var(--highlight-color);
}
.nav-link {
  color: var(--light-color);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--highlight-color);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--highlight-color);
}

#mainNavbar {
    background-color: #7C2D12;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}


#mainNavbar.scrolled {
  background-color: rgba(154, 52, 18, 0.97);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}



/* ========== HERO SECTION ========== */
.hero {
  margin-top: 100px;
  min-height: calc(100vh - 90px);

  background:
linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0.55),
  rgba(0, 0, 0, 0.25)
),

    url('MainHeroBG.png') center/cover no-repeat;

  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  max-width: 850px;
  padding: 40px 25px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 1.05rem;
    margin-bottom: 26px;   /* buttons se gap */
  }
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 16px;             /* 👈 clean vertical space */
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;      /* 👈 zyada wide na ho */
    padding: 14px 18px;
    font-size: 0.95rem;
  }
}

/* ========== FEATURES SECTION ========== */
.features {
  padding: 140px;
  background-color: var(--gray-color);
    background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%
  );
  padding: 100px 0;
}
.feature-card {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* ========== SLIDER SECTION ========== */
    .slider{
        background-color: var(--gray-color);
    }
    .slider-wrapper {
      background-color: #f7fffd;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      margin-bottom: 100px;
    }

    .slider-row {
      display: flex;
      flex-wrap: wrap;
    }

    .slider-img {
      flex: 1 1 50%;
      padding: 0;
    }

    .slider-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slider-content {
      flex: 1 1 50%;
      padding: 40px 40px 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .carousel-inner {
      flex-grow: 1;
    }

    .carousel-item h3 {
      font-size: 2rem;
      font-weight: 500;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .carousel-item p {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 40px;
    }
    
    #infoSlider {
  scroll-margin-top: 100px; /* Adjust based on navbar height */
   
   }

    /* Place indicators outside carousel */
    .custom-indicators {
      display: flex;
      justify-content: flex-start;
      padding: 0 40px 30px;
      margin: 0;
    }

    .custom-indicators button {
      background-color: var(--indicator-bg);
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin-right: 10px;
      border: none;
      opacity: 1;
      transition: background-color 0.3s ease;
    }

    .custom-indicators .active {
      background-color: var(--primary-color);
    }

    .carousel-control-prev,
    .carousel-control-next {
      display: none;
    }

/* ================= SERVICES SECTION – UPGRADED ================= */

.services {
  background-color: var(--gray-color);
  padding: 120px 0;
}
/* ================= SERVICE ICON (TOP) ================= */

.service-icon-top {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(47, 91, 255, 0.12),
    rgba(31, 63, 204, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-top i {
  font-size: 28px;
  color: var(--primary-color);
}

/* ================= SERVICE CARD ================= */
.service-card {
  position: relative;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 38px 42px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Top accent line */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.16);
}

/* ================= TITLE ================= */
.service-title {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
  color: #0a2a43;
  margin-bottom: 28px;
  line-height: 1.35;
}

/* ================= PRICE BLOCK ================= */
.service-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
}

.service-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: #0a2540;
  line-height: 1;
}

.service-price .per {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 6px; /* aligns with baseline */
}

/* ================= CTA BUTTON ================= */
.service-cta {
  display: block;
  width: 100%;
  max-width: 210px;
  margin: 20px auto 28px;
  padding: 14px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-cta:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(47, 91, 255, 0.35);
  color: #ffffff;
}

.service-list {
  list-style: none;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 0.97rem;
  color: #374151;
  line-height: 1.55;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-weight: 700;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .service-card {
    padding: 40px 30px 36px;
  }

  .service-price .amount {
    font-size: 2.7rem;
  }
}

@media (max-width: 575px) {
  .service-card {
    padding: 34px 24px 32px;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-price .amount {
    font-size: 2.4rem;
  }
}

/* Develped by Alishba Sehar */

/* ===== CTA CONSULT SECTION ===== */

.cta-consult {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
  border-radius: 18px;
  margin: 80px 40px;
}

.cta-consult .row {
  min-height: 420px;
}

.cta-overlay {
  position: absolute;
  inset: 0;
background: linear-gradient(
  to right,
  rgba(0,0,0,0.55) 40%,
  rgba(0,0,0,0.25) 70%,
  rgba(0,0,0,0.08) 100%
);

  z-index: 1;
}

/* LEFT CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-badge .dot {
  width: 10px;
  height: 10px;
  background: #2ecc71;
  border-radius: 50%;
  margin-right: 8px;
}

.cta-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

/* CALL BUTTON */
.cta-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);   /* deep red */
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-call-btn:hover {
   background: var(--secondary-color); /* darker red hover */
  color: #fff;
}

/* RIGHT IMAGE */
.cta-image {
  background: url('cta-agent.jpg') no-repeat center right / cover;
  min-height: 500px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-consult {
    margin: 60px 20px;
  }

  .cta-content {
    padding: 60px 30px;
    text-align: center;
  }

  .cta-content p {
    margin: 0 auto 30px;
  }

  .cta-image {
    min-height: 300px;
  }
}


/* ========== FOOTER ========== */
footer {
  background-color: #5F1F0E; /* darker than navbar */
  color: var(--light-color);
  padding: 50px 0 20px;
 
}
.footer-links h4 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
}
.footer-links li {
  margin-bottom: 10px;
  
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--light-color);
}

.footer-links-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
footer {
  background: linear-gradient(
    180deg,
    #6B240F 0%,
    #4A180A 100%
  );
}

footer .container {
  padding-left: 30px;
  padding-right: 30px;
}
#disclaimer {
  background-color: #5F1F0E;
  color: #ffffff;
}


#disclaimer h2 {
  color: #ffffff;
}

#disclaimer p {
  color: rgba(255, 255, 255, 0.9);
}


/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
}
.mobile-menu-btn i {
  color: white;
  font-size: 1.7rem;
}
.mobile-menu-btn.hidden {
  display: none !important;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  transition: right 0.3s ease;
  padding: 20px;
}
.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
}

.mobile-menu.active {
  right: 0;
}
.close-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
}
.mobile-nav {
  list-style: none;
  padding: 0;
}
.mobile-nav li {
  margin-bottom: 15px;
}
.mobile-nav a {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.mobile-nav a:hover {
  color: var(--highlight-color);
  font-weight: 400;
}
.mobile-nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1.05rem;
  }
}
/* ================= WHY CHOOSE US – MODERN CARDS ================= */

/* Why Choose Us heading */
.why-heading {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0a2540;
}

.why-subtext {
  max-width: 820px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
}

/* Card headings bigger */
.feature-card.modern h3 {
  font-size: 1.45rem;
  font-weight: 700;
}

.feature-card.modern {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 44px 26px 28px;   /* ✅ compact but premium */
  min-height: 240px;        /* ✅ content ke hisaab se */
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  overflow: hidden;
    display: flex;
  flex-direction: column;
justify-content: flex-start;


}
.features .row {
  align-items: flex-start;
}
/* top accent */
.feature-card.modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.feature-card.modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.16);
}

/* ICON BADGE */
.feature-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(47,91,255,0.15),
    rgba(31,63,204,0.15)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrap i {
  font-size: 28px;
  color: var(--primary-color);
}

/* TEXT */
.feature-card.modern h3 {
 font-size: 1.35rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 12px;
   color: var(--primary-color);
}

.feature-card.modern p {
 font-size: 0.98rem;
  color: #4b5563;
 min-height: auto;   /* default */
}

/* hover icon pop */
.feature-card.modern:hover .feature-icon-wrap {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}



/* ========== SCROLL REVEAL ANIMATION ========== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Develped by Alishba Sehar */
/* ========== Contact page  ========== */
/* Hero Banner */
.contact-hero {
min-height: 260px;              /* proper hero height */
  padding: 80px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3)
  ),
   url('Services.png') no-repeat center/cover;
     color: #fff;
  margin-top: 90px; /* navbar fix */
    background-size: cover;
  background-position: center;

}

.contact-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.contact-hero p a {
  color: var(--highlight-color);
  text-decoration: none;
}
.contact-hero p {
font-size: 0.95rem;
  opacity: 0.9;
}


.contact-hero p a {
  color: var(--highlight-color);
  text-decoration: none;
}
.contactus-hero {
min-height: 260px;              /* proper hero height */
  padding: 80px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3)
  ),
  url('Contactus.png') no-repeat center / cover;

  color: #fff;
  margin-top: 90px; /* navbar fix */
    background-size: cover;
  background-position: center;
}


.contactus-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.contactus-hero p {
font-size: 0.95rem;
  opacity: 0.9;
}


.contactus-hero p a {
  color: var(--highlight-color);
  text-decoration: none;
}

.nav-divider {
  color: rgba(255,255,255,0.4);
  margin: 0 8px;
  font-size: 18px;
}

.nav-link.small-link {
  font-size: 0.85rem;
  opacity: 0.85;
}

.nav-link.small-link:hover {
  opacity: 1;
}

/* Contact Section */
.contact-section {
  padding: 90px 20px;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    var(--gray-color) 100%
  );
}


.contact-wrapper {
  background: transparent;
  display: flex;                 /* ✅ ADD */
  justify-content: center;       /* ✅ ADD */
  gap: 50px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}



.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px; /* 👈 spacing between cards */
  max-width: 460px;
}


.info-box {
  padding: 18px 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-left: 5px solid var(--primary-color);
  align-items: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.info-box i {
  font-size: 1.6rem;
  color: var(--primary-color);
  flex-shrink: 0;
}
.info-box .info-text {
  max-width: 420px;
}

.info-box {
  background-image: linear-gradient(
    to right,
    rgba(0,0,0,0.03),
    transparent 40%
  );
}

.info-box .info-text {
  display: flex;
  flex-direction: column;
}


.info-box .info-text h4 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.info-box .info-text p {
  margin: 5px 0 0;
  color: #333;
}
.info-box .info-text p {
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-form {
  width: 100%;
  max-width: 980px;     /* 🔥 PEHLE 700 tha */
  margin: 0 auto;
  position: relative;
}


.contact-form form {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f9fbff 100%
  );
  padding: 55px 60px;        /* 🔥 zyada spacious */
  border-radius: 22px;
  box-shadow:
    0 30px 70px rgba(47, 91, 255, 0.18),
    0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
}

.contact-form form {
  position: relative;
}

.contact-form form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(47,91,255,0.08),
    transparent 40%
  );
  pointer-events: none;
}
.contact-form form::after {
  content: "✔ Free consultation  •  ✔ No obligation  •  ✔ Response within 24 hours";
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 25px;
}
.form-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0a2540;
  text-align: center;
  margin-bottom: 35px;
}

/* ===== Contact Form Select (Dropdown) Fix ===== */
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 25px;
  background-color: #f9fafb;
  transition: all 0.25s ease;
  color: #333;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* custom arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23008080' d='M5.5 7l4.5 5 4.5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
}

/* Focus same as inputs */
.contact-form select:focus {
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(47, 91, 255, 0.15);
  border-color: var(--primary-color);
}


.btn-primary {
  background: var(--primary-color);   /* deep red */
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  background: var(--secondary-color); /* darker red */
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(47, 91, 255, 0.35);
  color: #fff;
}


.contact-form input:focus,
.contact-form textarea:focus ,
.contact-form select:focus {
  background-color: #ffffff;
}
.contact-form form {
    background-color: #1e1e2f; /* dark navy base */
    background: linear-gradient(
        180deg,
        #1e1e2f 0%,      /* top */
        #2a2a3d 100%     /* bottom */
    );
    box-shadow: 0 10px 35px rgba(0,0,0,0.5); /* deeper shadow for depth */
    border: 2px solid #3b3b5a; /* subtle dark border */
    color: #f0f0f0; /* light text inside */
}

.contact-form h2 {
    font-size: 2rem; /* Bigger size */
    font-weight: 700; /* Bold */
    color: #1a1a2e; /* Dark navy for contrast */
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1); /* subtle depth */
    letter-spacing: 1px;
}
.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  max-width: 1200px; /* keeps form inside container */
  margin: 0 auto;
  padding: 0 20px;   /* 🔹 important to prevent horizontal overflow */
  box-sizing: border-box;
  flex-wrap: wrap;   /* 🔹 allows stacking on small screens */
}

/*========== FORM SUCCESS MESSAGE ========== */
.formMessage {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.formMessage.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
/* ================= Side text of Contact Us ================= */

.contact-side-text {
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
}

.contact-side-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-side-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Desktop alignment safety */
.contact-info,
.contact-side-text,
.contact-form {
  position: relative;
}

/* ================= Mobile Fix ================= */
@media (max-width: 992px) {

  .contact-side-text {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

  .contact-side-text h3 {
    font-size: 1.75rem;
  }

  .contact-side-text p {
    font-size: 1.05rem;
  }
}
@media (max-width: 768px) {
  .contact-form {
    max-width: 100%;
  }

  .contact-form form {
    padding: 40px 25px;
  }

  .contact-form::before {
    font-size: 1.8rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;   /* buttons upar neeche */
    gap: 18px;                /* 🔥 vertical space */
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;              /* clean mobile look */
    max-width: 320px;
  }
}


/* Develped by Alishba Sehar */
/* ========== ABOUT PAGE STYLES ========== */
    .about-hero {
min-height: 260px;              /* proper hero height */
  padding: 80px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3)
  ),
  url('aboutHero.png') no-repeat center / cover;

  color: #fff;
    background-size: cover;
  background-position: center;
}
.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-box-orient: vertical;
}
.about-hero p a {
  color: var(--highlight-color);
  text-decoration: none;
  font-weight: 500;
}

.about-section {
  background-color: #ffffff;   /* pure white */
  padding: 100px 20px;
  text-align: center;
}

.about-section h4 {
 font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  font-weight: 800;
}

.about-section h4::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 3px;
}

.about-focus-box p.lead {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #374151;
  max-width: 820px;
  margin: 0 auto;
}

.about-section .container {
  max-width: 1000px;
}

.about-focus-box {
  background: #ffffff;
  padding: 60px 60px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary-color);
}

.about-content-section {
  width: 100%;
  background-color: var(--gray-color); /* Full-width grey */
  padding: 80px 20px;
  box-sizing: border-box;

}

.about-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  
   max-width: 1100px;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .about-focus-box {
    padding: 40px 25px;
  }

  .about-focus-box h4 {
    font-size: 1.9rem;
  }

  .about-focus-box p.lead {
    font-size: 1.05rem;
  }
}

/* About Section end */


/* services section */

.services {
  background-color: var(--gray-color);
  padding: 0 0;
  margin-top: 0 !important;
}

.servicepage-items {
  background-color: var(--gray-color);
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.service-details-section {
    background-color: var(--gray-color);
    padding: 50px 0;
  
}
   .service-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-icon {
  margin-right: 15px;
}

.service-icon i {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.service-text h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.service-text p {
  font-size: 1rem;
  color: #333;
}

/* === Privacy Policy Section === */
.privacy-hero {
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.35)
  ),
  url('PrivacyHero.png') no-repeat center/cover;
  color: #fff;
}

.privacy-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.privacy-hero p a {
  color: var(--highlight-color);
  text-decoration: none;
}

.privacy-policy .container-fluid {
 margin: 0 auto;
  padding: 20px 30px;
  background-color: #0F0F0F;
  color: #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.privacy-policy .main-heading {
  font-size: 2rem;
  color: #E11D48; /* red accent */  /* softer brand blue */
  margin-bottom: 30px;
}

.privacy-policy h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.3rem;
color: #FCA5A5;
}

.privacy-policy p,ul {
  margin-bottom: 15px;
  font-size: 1rem;
    color: #E6E6E6;
  line-height: 1.8;
}


/* Develped by Alishba Sehar */

/* ========== RESPONSIVE QUERIES ========== */

/* Tablets & below */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }

  .about-content-wrapper {
    padding: 0 50px;
  }
  
}

/* Small tablets & phones */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .cta h2 {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .cta p {
    font-size: 1rem;
    padding: 0 10px;
  }

  
  .slider-row {
    flex-direction: column;
      }

  .slider-img,
  .slider-content {
    flex: 1 1 100%;
      }

  .slider-content {
    padding: 30px 20px 20px;
      }

  .carousel-item h2 {
    font-size: 1.6rem;
      }

  .carousel-item p {
    font-size: 1rem;
      }

  .custom-indicators {
    justify-content: center;
    padding: 0 20px 30px;
      }
      .price{
        font-size: 1.5rem;
      }


      /* About page styles */
      .contact-wrapper {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
    }
    .about-section h4 {
    font-size: 1.6rem;
  }

  .about-section p.lead {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px;
  }

    .about-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }
  
   .about-content-wrapper {
    padding: 0 20px;
  }

  /* Services section */

  .service-icon i {
    font-size: 2rem;
  }
  .service-text h4 {
    font-size: 1rem;
  }
  .service-text p {
    font-size: 0.9rem;
  }

  .about-section h4 {
    font-size: 1.6rem;
  }
  .about-section p {
    font-size: 1rem;
  }

  .service-card .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

/*footer styles */
  .footer-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: space-between;
  }
    }
/* Mobile phones */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .mobile-menu {
    width: 250px;
  }
  .cta {
    padding: 60px 15px;
  }

  .cta h2 {
    font-size: 1.6rem;
  }

  .cta p {
    font-size: 0.95rem;
  }

  .navbar-brand .brand-text {
    font-size: 1.3rem;
  }
  .navbar-brand img {
    height: 45px;
    margin-right: 8px;
  }

  .footer-links-group {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-links ul {
    padding-left: 0;
  }

  .footer-links li {
    margin-bottom: 10px;
  }
 
}

@media (max-width: 400px) {
  .navbar-brand .brand-text {
    font-size: 1.1rem;
  }

  .navbar-brand img {
    height: 40px;
    margin-right: 6px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form form,
  .info-box {
    font-size: 0.95rem;
    padding: 20px 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .service-icon i {
    font-size: 1.7rem;
  }
  .service-text h4 {
    font-size: 0.95rem;
  }
  .service-text p {
    font-size: 0.85rem;
  }

  .about-section h4 {
    font-size: 1.4rem;
  }
   
   
}

/* Mobile adjustments for main heading */
@media (max-width: 767px) {
  .main-heading {
    font-size: 20px !important;       /* smaller font size */
    line-height: 1.1;       /* better spacing */     /* center it for mobile */
    padding: 10px;          /* space around */
    word-wrap: break-word;  /* avoid overflow */
  }
  .privacy-policy h2 {
    font-size:  18px !important; /* smaller heading */
  }
  .privacy-policy p, .privacy-policy ul {
    font-size: 0.9rem; /* smaller text */
    line-height: 1.5; /* better readability */
  }
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  .contact-hero p {
    font-size: 1rem !important;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  /* Tablet styles here */
  .price {
    font-size: 1.2rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  .feature-card h3 {
    font-size: 1.2rem;

  }
  .feature-card p {
    font-size: 0.9rem;  }

    .feature-icon{
    font-size: 2rem;
    }

   .footer-links h4 {
    font-size: 0.7rem;
  }
  .footer-group h4 {
    font-size: 1rem;
  }
  .footer-group p{
    font-size: 0.8rem;
  }
  .footer-links ul li{
    font-size: 0.6rem;
  }
  .footer-links i {
    font-size: 0.8rem;
  }
  .copyright {
    font-size: 0.8rem;
  }
}

/* Make container wider on large screens, but with clean padding */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;  /* Wider than default Bootstrap container */
  }
}


