* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navbar section Styling */
.navbar {
  padding: 10px;
  background-color: #fff;
}

/* keep toggler on top */
.navbar-toggler {
  border: none;
  z-index: 2000;
}

.navbar-brand img {
  height: 60px;
}

.navbar-nav {
  gap: 1rem;
}

/* nav link base */
.navbar-nav .nav-link {
  color: #0084ff !important; /* Dark text for contrast */
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative; /* for underline pseudo element */
}

/* underline effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 3px;
  width: 0;
  background: #0084ff;
  transition: width 0.25s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #0084ff !important;
}

/* custom hamburger icon svg (keeps your style) */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%2817, 17, 17, 0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Home Section */
.home-section {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

.home-title .highlight {
  color: #0084ff;
}

.home-desc {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #555;
  max-width: 600px;
}

/* Demo Button */
.demo-btn {
  background: #0084ff;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}

/* Button hover animation */
.demo-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}

.demo-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: -1;
}

.demo-btn:hover::after {
  left: 0;
}

/* Right Image */
.home-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.home-img:hover {
  transform: scale(1.05);
}

/* ------------------ Animations ------------------ */

/* Heading animation */
.animate-heading {
  animation: fadeInUp 1s ease forwards;
}

/* Description animation */
.animate-desc {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

/* Button animation */
.animate-btn {
  animation: fadeInUp 1s ease forwards, pulse 2s infinite;
  animation-delay: 0.6s;
  opacity: 0;
}

/* Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .home-title {
    font-size: 1.9rem;
    text-align: center;
  }
  .home-desc {
    font-size: 1rem;
    text-align: center;
    margin: auto;
  }
  .demo-btn {
    width: 100%;
    text-align: center;
  }
  .home-img {
    margin-top: 30px;
  }
}

/* About Section */
.about-section {
  background: #f9f9f9;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-top: 15px;
}

/* Cards */
.about-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.about-card .icon-box {
  font-size: 2.2rem;
  color: #0084ff;
}

/* Card titles */
.about-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

/* Card text */
.about-card .card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .section-desc {
    font-size: 1rem;
  }
  .about-card {
    padding: 20px;
  }
}

/* Features Section */
.features-section {
  background: #f8f9fa;
  padding: 80px 0; /* more spacious section */
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px; /* more spacing below title */
  color: #111;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  padding: 40px 28px; /* more spacious inside */
  animation: fadeUp 1s ease forwards;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.6rem; /* bigger */
  color: #0084ff;
  margin-bottom: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: #111;
  transform: scale(1.25);
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111;
}

.feature-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 95%;
}

/* Fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive spacing */
@media (max-width: 992px) {
  .features-section {
    padding: 60px 0;
  }
  .feature-card {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .feature-title {
    font-size: 1.2rem;
  }
  .feature-desc {
    font-size: 1rem;
  }
}

/* Pricing Section */
.pricing-section {
  background: #fff;
}

.section-title {
  font-size: 2.6rem; /* bigger */
  font-weight: 700;
  color: #111;
}

.section-desc {
  font-size: 1.2rem; /* bigger */
  color: #555;
  margin-top: 12px;
  line-height: 1.8;
}

/* Pricing Card */
.pricing-card {
  background: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: zoomFade 1s ease forwards;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}

.pricing-title {
  font-size: 1.6rem; /* bigger */
  font-weight: 600;
  color: #0084ff;
  margin-bottom: 12px;
}

.price {
  font-size: 2.8rem; /* bigger */
  font-weight: 700;
  color: #111;
}

.price span {
  font-size: 1.2rem;
  color: #666;
}

/* Features list */
.pricing-features li {
  font-size: 1.1rem; /* bigger */
  color: #444;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features i {
  color: #0084ff;
  font-size: 1.2rem;
}

/* Add-ons */
.addons-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 14px;
}

.addons li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.addons i {
  color: #ff9800;
  font-size: 1.1rem;
}

/* Button */
.pricing-btn {
  background: #0084ff;
  color: #fff;
  font-weight: 600;
  padding: 14px 32px; /* bigger */
  font-size: 1.15rem;
  border-radius: 40px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.pricing-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Keyframes for zoom fade-in */
@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .section-desc {
    font-size: 1rem;
  }
  .price {
    font-size: 2.2rem;
  }
  .pricing-features li {
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq-section {
  background: #f9f9f9;
  padding-top: 100px;
  padding-bottom: 100px;
}

.faq-desc {
  font-size: 1.2rem;
  line-height: 1.9;
  max-width: 750px;
  margin: auto;
}

.accordion-item {
  border: none;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 20px;
}

.accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  color: #111;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.accordion-button i {
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #0084ff;
  color: #fff;
}

.accordion-button:not(.collapsed) i {
  color: #fff !important;
}

.accordion-body {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  padding: 18px 24px;
}

/* Contact Section */
.contact-section {
  background: #fff;
  padding-top: 90px;
  padding-bottom: 90px;
}

/* Description text */
.contact-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 750px;
  margin: auto;
}

/* Equal height row */
.contact-section .row.equal-height {
  display: flex;
  align-items: stretch;
}

/* Left card (info + map) */
.left-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Contact info */
.contact-info p {
  color: #111;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.contact-info a {
  font-weight: 500;
  text-decoration: none;
  color: #0084ff;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Google Map */
.map-container iframe {
  width: 100%;
  flex-grow: 1;
  min-height: 250px;
  border-radius: 10px;
  border: 0;
}

/* Right card (form) */
.right-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* Inputs */
.custom-input {
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  padding: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.custom-input:focus {
  border-color: #0084ff;
  box-shadow: none;
}

/* Send Button */
.send-btn {
  background: #0084ff;
  color: #fff;
  font-weight: 600;
  padding: 14px;
  font-size: 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.send-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}
.send-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: -1;
}
.send-btn:hover::after {
  left: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section .row.equal-height {
    display: block;
  }
  .left-card,
  .right-card {
    height: auto;
    margin-bottom: 20px;
  }
}

/* -------- Footer Section -------- */
.footer-section {
  background: #333;
  color: #fff;
}

.footer-logo {
  max-height: 55px;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #fff;
  margin-right: 8px;
}

.footer-contact a {
  text-decoration: none;
  color: #fff;
  transition: color 0.2s;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
}

/* Smooth scroll (CSS fallback) */
html {
  scroll-behavior: smooth;
}

/* Prevent content being hidden under sticky header on anchor jump */
section,
[id] {
  scroll-margin-top: 90px; /* approx navbar height */
}
