body {
  padding: 0;
  margin: 0;
  font-family: "Jost", sans-serif !important;
  background: #fff !important;
}
section {
  min-height: 100vh; /* always fill at least the full viewport height */
  display: flex; /* optional: center content vertically */
  align-items: center; /* optional: center content vertically */
}
.fixed-top {
  padding: 18px !important;
}
.nav-link {
  position: relative;
  padding-bottom: 8px;
  font-size: 16px !important;
  margin: 0px 8px;
}
/* Fall-down animation */
@keyframes fallDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: translateY(10px);
    opacity: 1;
  }
  80% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.fade-down {
  animation: fallDown 1.2s ease-out forwards;
}

/* Styling for demo */
.headline {
  font-size: 2.5rem;
  font-weight: bold;
}
.highlight {
  color: #007bff;
}
.bookDemo {
  /* background: #007bff; */
  color: white;
  border-radius: 5px;
  text-decoration: none;
}
.StartDemo {
  /* background: #007bff; */
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.tag {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}

/* Border for active nav item */
.nav-link.active {
  font-weight: 600;
  border-bottom: 3px solid #007bff; /* Change color as needed */
}
.custom-shadow {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 16px !important;
}
.feature-section {
  padding: 60px 0;
}
.feature-section img {
  width: 100%;
  border-radius: 8px;
}
.feature-list li {
  margin-bottom: 10px;
  font-size: 16px;
}
#navbarNav .nav-link {
  font-weight: 500;
}
.feature-list i {
  color: green;
  margin-right: 8px;
}
.Laptop-img {
  width: 100%;
  height: 350px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid #d9d9d9;
}
.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #e6f3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.feature-icon img {
  width: 24px;
  height: 24px;
}
.bookDemoBtn {
  /* background: linear-gradient(90deg, #4a00e0, #8e2de2); */
  color: #000;
  /* padding: 8px 18px; */
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
  width: 126px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #bfb194;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 2px solid #f2f4fc;
  z-index: 1030;
}
#navbarNav {
  justify-content: end;
}

/* .bookDemoBtn:hover {
  background-color: rgb(0, 117, 117);
  } */

/* Optional hover effect */
.nav-link:hover {
  border-bottom: 3px solid #007bff;
}
.section-title {
  font-size: 40px;
  font-weight: 600;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background: #fff !important;
  padding: 18px !important;
}

.features-section {
  text-align: center;
  padding: 60px 20px 30px;
}

.features-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #eef2ff, #ffffff);
}

/* Left Section */
.contact-left h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-left a {
  color: #6a11cb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-left a:hover {
  color: #2575fc;
  text-decoration: underline;
}

.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}
.contact-box:hover {
  transform: translateY(-5px);
}
.contact-box h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Right Section */
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

.form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ddd;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus {
  border-color: #6a11cb;
  box-shadow: 0 0 0 0.2rem rgba(106, 17, 203, 0.15);
}

.btn-purple {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 20px;
  border: none;
  transition: transform 0.2s ease, opacity 0.3s ease;
  width: 100%;
}
.btn-purple:hover {
  opacity: 0.9;
  transform: scale(1.02);
}
.contact-section {
  margin-top: 5rem;
}
.contact-leftText {
  width: 70%;
}
.btn-submit {
  background-color: #0d6efd;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 20px;
  width: 100%;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background-color: #084298;
}
.info-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.info-box h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #0d47a1;
}
.info-item {
  margin-bottom: 20px;
}
.info-item i {
  color: #0d6efd;
  margin-right: 10px;
}
.social-links a {
  font-size: 20px;
  margin-right: 15px;
  color: #0d6efd;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #084298;
}
.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
iframe {
  border: 0;
  width: 100%;
  height: 250px;
}
.contact-section {
  padding: 16px;
  border-radius: 20px;
}
.subject-contact {
  padding: 30px !important;
  border-radius: 20px;
}
.form-control {
  height: 45px !important;
}
.contact-form label {
  font-weight: 500;
}
.sendBtn {
  height: 45px;
  margin-top: 30px;
}
.leftSection {
  padding-left: 40px;
  padding-right: 40px;
}
.contact-form h5 {
  font-size: 24px;
}
.leftSection h5 {
  font-size: 24px;
}
.conatactText {
  font-size: 18px;
}
.contact-info p {
  font-size: 16px;
  line-height: 28px;
}
.mapSection {
  border-radius: 20px;
}
.sendBtn {
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  color: #fff;
  font-weight: 600;
}
/* ===== Footer Styles ===== */
.footer {
  background-color: #f9f9f9;
  padding: 40px 20px 20px;
  border-top: 1px solid #e6e6e6;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #0d1b2a;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  color: #5a5a5a;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: #374151 !important;
  margin-bottom: 8px;
  text-decoration: none;
  font-weight: 500;
}

.footer-column a {
  display: block;
  font-size: 15px;
  color: #374151;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-column a:hover {
  color: #2563eb;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  font-size: 18px;
  color: #374151;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #2563eb;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid #e6e6e6;
  margin-top: 20px;
  padding-top: 15px;
}
.contact-section {
  padding: 30px;
}
@media (max-width: 767px) {
  .features-section h2 {
    font-size: 40px;
  }
  .features-section {
    background: #f8fdff;
    padding-top: 80px;
    padding-bottom: 31px;
    text-align: center;
    margin-top: 3rem;
  }
  .leftSection {
    padding: 0;
  }
  .navbar-nav {
    margin-bottom: 20px !important;
  }
  .fixed-top {
    padding: 16px 0px !important;
  }
  .nav-link.active {
    width: fit-content;
  }
  .contact-section {
    margin-top: 4rem;
  }
  .fixed-top img {
    width: 90px !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .nav-link.active {
    width: fit-content;
  }
  .navbar-nav {
    margin-bottom: 20px !important;
  }
  .fixed-top {
    padding: 18px 0px !important;
  }
  .fixed-top img {
    width: 100px !important;
  }
}
