/* ================= BASE ================= */
.hero-section {
  width: 100%;
  background: linear-gradient(135deg, #0c2d48, #145374);
  color: white;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  overflow: hidden;
}

.hero-left {
  text-align: center;
}

.hero-left h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.2;   /* improved readability */
  margin-bottom: 18px;
}

.hero-left p {
  font-size: 15px;
  line-height: 1.6;   /* improved spacing */
  margin-bottom: 22px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 25px;
}

.features div {
  background: rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.hero-buttons a {
  width: 100%;
  max-width: 340px;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-buttons a:hover {
  transform: translateY(-2px);
}

.btn-primary { 
  background: linear-gradient(135deg, #ff7a00, #ff9500); 
  color: white; 
}

.btn-outline  { 
  border: 2px solid white; 
  color: white; 
}

/* ================= FORM ================= */
.hero-form {
  background: white;
  color: #222;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-form h2 {
  text-align: center;
  color: #0c2d48;
  font-size: 24px;
  margin-bottom: 22px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: #0c2d48;
}

.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.form-row > * {
  flex: 1;
  min-width: 0;
}

.location-row {
  flex-wrap: nowrap;
}

.location-row input {
  flex: 2;
}

.location-row button {
  flex: 1;
  white-space: nowrap;
  padding: 14px 12px;
}

.hero-form textarea {
  height: 100px;
  resize: vertical;
  margin-bottom: 16px;
}

.location-btn,
.submit-btn {
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.location-btn {
  background: #0c2d48;
  color: white;
}

.location-btn:hover {
  opacity: 0.9;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  color: white;
}

.submit-btn:hover {
  opacity: 0.95;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: #555;
  margin-top: 12px;
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 480px) {

  .hero-section {
    padding: 50px 16px;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .form-row,
  .location-row {
    flex-direction: column;
    gap: 0;
  }

  .form-row > *,
  .location-row > * {
    margin-bottom: 14px;
  }

  .location-row button {
    width: 100%;
  }
}

/* ================= TABLET ================= */
@media (min-width: 600px) and (max-width: 899px) {
  .hero-section {
    padding: 70px 5%;
  }

  .hero-left h1 {
    font-size: 34px;
  }
}

/* ================= DESKTOP ================= */
@media (min-width: 900px) {

  .hero-section {
    flex-direction: row;
    padding: 100px 6%;
    align-items: center;
    gap: 70px;
  }

  .hero-left {
    text-align: left;
    max-width: 620px;
  }

  .features {
    justify-content: flex-start;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 20px;
  }

  .hero-buttons a {
    width: auto;
    min-width: 180px;
  }

  .hero-form {
    width: 460px;
    margin: 0;
  }
}

/* ================= LARGE SCREENS ================= */
@media (min-width: 1400px) {
  .hero-section {
    padding: 120px 10%;
  }
}




/* ================= ABOUT SECTION ================= */

#about {
  background-color: #0c2d48;
}

/* Heading */
#about h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
}

/* Lead text */
#about .lead {
  font-size: clamp(16px, 2vw, 22px);
}

/* Paragraph */
#about p {
  line-height: 1.7;
}

/* Stats Cards */
#about .shadow-sm {
  transition: 0.3s ease;
}

#about .shadow-sm:hover {
  transform: translateY(-5px);
}

/* Feature list spacing */
#about .d-flex {
  align-items: flex-start;
}

/* CTA Button */
#about .btn-lg {
  transition: 0.3s ease;
}

#about .btn-lg:hover {
  transform: translateY(-3px);
}

/* Image container fix */
#about .image-container {
  width: 100%;
  max-width: 100%;
}

#about .image-container img {
  object-fit: cover;
  height: 100%;
  max-height: 480px;
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 576px) {

  #about {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  #about h2 {
    text-align: center;
  }

  #about .lead {
    text-align: center;
  }

  #about .row.g-3.mb-4 {
    text-align: center;
  }

  #about .image-container {
    max-height: 350px;
  }

  #about .image-container img {
    height: 350px;
  }

  #about .btn-lg {
    font-size: 15px;
    padding: 14px;
  }

}

/* ================= TABLET OPTIMIZATION ================= */
@media (min-width: 577px) and (max-width: 991px) {

  #about .image-container {
    max-height: 420px;
  }

  #about .image-container img {
    height: 420px;
  }

}

/* ================= LARGE DESKTOP ================= */
@media (min-width: 1200px) {

  #about {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  #about .image-container {
    max-height: 520px;
  }

  #about .image-container img {
    height: 520px;
  }

}

/* Smooth animation helpers */
.shadow-xl { 
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); 
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}



/* Service */

.services-section {
  padding: 100px 6%;
  background: #0f172a;
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  color: #94a3b8;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #1e293b;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-img {
  background: #f8fafc;
  padding: 25px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
}

.card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #38bdf8;
}

.price span {
  font-size: 14px;
  color: #94a3b8;
}

.card-content p {
  font-size: 14px;
  color: #cbd5e1;
  flex: 1;
}

.service-btn {
  margin-top: 20px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #38bdf8;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.service-btn:hover {
  background: #0ea5e9;
  color: #fff;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }
}

/* Four Section  */


.ac-pro-section {
  padding: 80px 8%;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.ac-pro-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT SIDE */
.ac-pro-left h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ac-subtext {
  color: #d1eaff;
  margin-bottom: 35px;
  font-size: 16px;
  line-height: 1.6;
}

.ac-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.ac-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.ac-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.ac-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #0c2d48;
}

.ac-card p {
  font-size: 14px;
  color: #444;
}

/* RIGHT SIDE */
.ac-pro-right {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  position: sticky;
  top: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.ac-pro-right h3 {
  margin-bottom: 15px;
  color: #0c2d48;
}

.ac-pro-right ul {
  list-style: none;
  padding: 0;
}

.ac-pro-right ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
}

.collapsed {
  max-height: 110px;
  overflow: hidden;
}

.toggle-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #145374;
  font-weight: 600;
  cursor: pointer;
}

.call-btn,
.mobile-call-btn {
  display: block;
  margin-top: 20px;
  background: linear-gradient(45deg, #ff7a00, #ff3d00);
  color: #fff;
  padding: 14px;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.call-btn:hover,
.mobile-call-btn:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .ac-pro-container {
    grid-template-columns: 1fr;
  }

  .ac-service-grid {
    grid-template-columns: 1fr;
  }

  .ac-pro-right {
    position: static;
  }
}


/*  */

  .ac-problems-section {
  padding: 70px 8%;
  background: #0b1220;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.section-header p {
  color: #fff;
  max-width: 650px;
  margin: auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.problem-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  text-align: left;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.problem-card h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.problem-card p {
  font-size: 14px;
  color: #555;
}

.problem-cta {
  text-align: center;
  margin-top: 50px;
}

.problem-btn {
  background: linear-gradient(135deg, #ff7a00, #ff4d00);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.problem-btn:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }
}





.ac-hero {
  background: linear-gradient(135deg,#0f172a,#1e293b);
  padding: 80px 6%;
  font-family: Arial, sans-serif;
}

.ac-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.ac-left {
  flex: 1;
  min-width: 280px;
  color: #fff;
}

.ac-left h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.ac-left p {
  color: #ddd;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.features div {
  font-size: 12px;
}

/* RIGHT SIDE */
.ac-right {
  flex: 1;
  min-width: 320px;
}

.ac-form {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ac-form h2 {
  flex: 1 1 100%;
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.ac-form input,
.ac-form select {
  flex: 1 1 48%;
  padding: 9px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.location-wrap {
  position: relative;
  flex: 1 1 100%;
}

.location-wrap input {
  width: 100%;
}

.loader {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 14px;
  height: 14px;
  border: 2px solid #ccc;
  border-top: 2px solid #ff6b00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.ac-form button {
  flex: 1 1 100%;
  background: #ff6b00;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.ac-form button:hover {
  background: #e65c00;
}

/* MOBILE */
@media(max-width:768px){
  .ac-container {
    flex-direction: column;
  }
  .ac-form input,
  .ac-form select {
    flex: 1 1 100%;
  }
}



  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(32,33,36,0.18);
  }
  @media (max-width: 768px) {
    .reviews-grid {
      grid-template-columns: 1fr;
    }
    .section-title {
      font-size: 1.8rem;
    }
  }



 
  .why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
    border-color: #1e40af !important;
  }
  @media (max-width: 768px) {
    .section-title { font-size: 2.2rem !important; }
  }




  .contact-box {
    transition: all 0.3s ease;
  }
  .contact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4) !important;
    background: #ffffff33 !important;
  }
  .section-title {
    position: relative;
    display: inline-block;
  }
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #60a5fa;
    border-radius: 2px;
  }
  @media (max-width: 992px) {
    .map-box iframe { height: 400px; }
  }
  @media (max-width: 768px) {
    .map-box iframe { height: 350px; }
    .section-title { font-size: 2rem !important; }
  }




  .footer-links a,
  .social-icons a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
  }
  .footer-links a:hover,
  .social-icons a:hover {
    color: #60a5fa !important;
    transform: translateY(-3px);
  }
  @media (max-width: 768px) {
    .footer-heading { margin-top: 2rem; }
    .social-icons { text-align: center; }
  }



/* FIXED BUTTON CONTAINER */
.fixed-contact-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* COMMON BUTTON STYLE */
.fixed-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Hover Effect for all buttons */
.fixed-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  opacity: 0.95;
}

/* CALL Button */
.call-btn {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
}

/* WHATSAPP Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #20b058);
}

/* BOOK NOW Button */
.book-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5253);
}

/* ICON SIZE & SPIN ANIMATION */
.fixed-btn i {
  font-size: 24px;
  animation: spinIcon 3s linear infinite;
}

@keyframes spinIcon {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Responsive - Mobile pe thoda adjust */
@media (max-width: 576px) {
  .fixed-contact-buttons {
    right: 15px;
    bottom: 20px;
    gap: 12px;
  }
  .fixed-btn {
    padding: 12px 16px;
    font-size: 14px;
    gap: 10px;
  }
  .fixed-btn i {
    font-size: 22px;
  }
}

/* ABout Page */

    body { font-family: 'Poppins', sans-serif; }
    .hero-bg { 
      background-size: cover; background-position: center; color: white; padding: 150px 0 100px;
    }
    .section-padding { padding: 80px 0; }
    .icon-box { font-size: 2.8rem; color: #0d6efd; margin-bottom: 20px; }
    .card { border: none; box-shadow: 0 5px 25px rgba(0,0,0,0.1); }


      .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

html, body {
  overflow-x: hidden;
}
/* .hero-section {
  gap: 50px;
  padding: 60px 20px;
  overflow: hidden;
} */


  .footer-links a:hover,
  .social-icons a:hover {
    color: #60a5fa !important;
    transform: translateY(-3px);
  }
  @media (max-width: 768px) {
    .footer-heading {
      margin-top: 2rem;
    }
    .social-icons {
      text-align: center;
    }
  }