/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}
a {
  text-decoration: none;
}

/* Utility */
.container, .container-fluid {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.section {
  padding: 80px 0;
}

/* Header */
.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 15px 0;
}
.header .logo img {
  height: 70px;
  border-radius: 28px;
}
.navmenu {
  display: flex;
  align-items: center;
}
.navmenu ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.navmenu ul li a {
  color: #333;
  font-weight: 500;
  padding: 8px 0;
  transition: color .3s;
}
.navmenu ul li a.active,
.navmenu ul li a:hover {
  color: #007bff;
}
.sup-chat a {
  background: #007bff;
  color: #fff !important;
  padding: 8px 8px !important;
  border-radius: 4px;
  transition: background .3s;
}
.sup-chat a:hover {
  background: #0056b3;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: url('assets/images/hero-bg.jfif') center/cover no-repeat;
  position: relative;
  color: #fff;
}
.hero .container {
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}
.btn-get-started {
  display: inline-block;
  background: #28a745;
  padding: 12px 30px;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: background .3s, transform .3s;
}
.btn-get-started:hover {
  background: #218838;
  transform: translateY(-3px);
}

/* Icon Boxes */
.icon-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  border: 1px solid #e4eaf1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.icon-box .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #e9f3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007bff;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
  transition: all 0.3s ease;
}
.icon-box:hover .icon {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.3);
}
.icon-box .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.icon-box .title a {
  text-decoration: none;
  color: inherit;
}
.icon-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

/* About */
.about .who-we-are {
  color: #007bff;
  font-weight: 600;
  margin-bottom: 10px;
}
.about h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about .read-more {
  color: #007bff;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color .3s;
}
.about .read-more:hover {
  color: #0056b3;
}

/* Services */
.services .section-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.services .description-title {
  font-weight: 600;
  color: #007bff;
}
.service-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  transition: transform .3s, box-shadow .3s;
}
.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service-item .icon i {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 15px;
}
.service-item h3 {
  margin-bottom: 15px;
}

/* Features */
.features .section-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .3s;
}
.feature-box:hover {
  background: #f1f5f9;
}
.feature-box i {
  font-size: 1.5rem;
  color: #17a2b8;
}

/* FAQ */
.faq h3 strong {
  color: #007bff;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  transition: background .3s;
}
.faq-item h3:hover {
  background: #f1f5f9;
}
.faq-content {
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #fff;
}

/* Contact Section Styling */
.gradient-contact {
  background: linear-gradient(to right, #f1f5f9, #e3f2fd);
}
.contact .info-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: background 0.3s ease;
}
.contact .info-item:hover {
  background: #f9fbfd;
}
.contact form input,
.contact form textarea {
  border: 1px solid #ced4da;
  padding: 12px 15px;
  font-size: 15px;
  transition: border 0.3s;
}
.contact form input:focus,
.contact form textarea:focus {
  border-color: #007bff;
  outline: none;
}
.contact button[type="submit"] {
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact button[type="submit"]:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #fff;
  color: #555;
}
.footer-newsletter {
  padding: 60px 0;
  background: #f1f5f9;
  text-align: center;
}
.footer-newsletter h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
}
.footer-newsletter p {
  max-width: 600px;
  margin: 0 auto 20px;
}
.btn-chat {
  display: inline-block;
  background: #28a745;
  padding: 10px 25px;
  border-radius: 50px;
  color: #fff;
  transition: background .3s;
}
.btn-chat:hover {
  background: #218838;
}
.footer-top {
  padding: 60px 0;
}
.footer-top .footer-about img {
  height: 90px;
  margin-bottom: 15px;
}
.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #222;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: #555;
  transition: color .3s;
}
.footer-links ul li a:hover {
  color: #007bff;
}
.footer-contact p {
  margin-bottom: 8px;
}
.footer .copyright {
  padding: 20px 0;
  font-size: 0.9rem;
  border-top: 1px solid #e2e8f0;
}

/* Responsive text & spacing */
@media (max-width: 768px) {
  .footer .sitename {
    font-size: 22px;
    margin-left: 10px;
  }
  .footer-contact p,
  .footer ul li {
    font-size: 14px;
  }
  .footer .logo img {
    height: 45px;
  }
  .footer .footer-top .row > div {
    margin-bottom: 30px;
    text-align: center;
  }
  .footer-newsletter .btn-chat {
    margin-top: 15px;
  }
  .footer .footer-about p {
    padding: 0 10px;
  }
}

/* AOS Overrides */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos].aos-animate {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .navmenu {
    width: 100%;
  }

  .navmenu ul {
    display: none;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%; /* ✅ FIXED: replaced 100vw */
    max-width: 100%;
    padding: 20px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    z-index: 999;
  }

  .navmenu ul.open {
    display: flex;
  }

  .navmenu ul li {
    text-align: center;
  }

  .navmenu ul li a {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    padding: 10px;
    display: block;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .col-lg-6.mb-4.mb-lg-0.aos-init.aos-animate {
    text-align: center;
  }
}

.col-lg-5.order-1.order-lg-2 img.img-fluid {
  border-radius: 30px 30px;
}

.fea {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
}

.gradient-bg {
  background: linear-gradient(135deg, #e0f7fa, #e1bee7);
}
.modal-content {
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
 }
 .modal-content {
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
  }
