/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
}

.hero .text-primary {
  color: rgb(58, 58, 227) !important;
}

.hero .btn-primary {
  background-color: rgb(58, 58, 227);
  border: none;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.hero .btn-outline-primary {
  border: 1px solid #a8a8e0;
  background-color: #fff;
  transition: 0.3s ease;
}

.hero .btn-outline-primary:hover {
  background-color: #f1f1f1;
}

.hero-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.hero-img:hover {
  transform: scale(1.03);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero {
    text-align: left;
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .btn {
    width: 40%;
  }

  .hero .hero-img {
    margin-top: 2rem;
    max-width: 100%;
  }
}

/* Trusted Companies Section */
.trusted {
  background-color: #f8f9fa;
}

.trusted-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.trusted-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .trusted-logo {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .trusted-logo {
    width: 70px;
    height: 70px;
  }

  .trusted p {
    font-size: 1rem;
  }
}

/* ========== FEATURES SECTION ========== */
.features {
  background-color: #fff;
}

.features .text-secondary {
  color: rgb(101, 100, 100) !important;
}

.features h3 {
  font-size: 1.8rem;
  line-height: 1.3;
}

/* Feature Cards */
.feature-card {
  transition: all 0.3s ease;
  border: none;
}

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

/* Card Background Colors */
.bg-blue {
  background-color: rgb(6, 6, 110);
}

.bg-purple {
  background-color: rgb(108, 3, 108);
}

.bg-green {
  background-color: rgb(73, 121, 0);
}

/* Feature Images */
.feature-img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

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

/* Responsive Tweaks */
@media (max-width: 992px) {
  .features h3 {
    font-size: 1.5rem;
  }

  .feature-img {
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .feature-card {
    text-align: center;
  }

  .feature-img {
    max-width: 60%;
  }
}

/* ========== WHY US SECTION ========== */
.why-us {
  background-color: rgb(239, 244, 255);
}

.why-us .text-secondary {
  color: rgb(101, 100, 100) !important;
}

.why-us h3 {
  font-size: 1.8rem;
  line-height: 1.3;
}

/* Image styling */
.why-us-img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .why-us h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .why-us .small {
    font-size: 13px;
  }

  .why-us-img {
    margin-bottom: 20px;
  }
}

/* ========== AI Assistant Section ========== */
.ai-assistant {
  background-image: linear-gradient(to right, rgb(3, 15, 59), rgb(0, 12, 56));
  color: #fff;
  overflow: hidden;
}

.ai-assistant h2 {
  font-size: 2rem;
}

.ai-assistant p {
  font-size: 0.9rem;
  color: #f7f7f7;
}

.ai-assistant .btn-outline-light {
  border: 1px solid rgb(183, 207, 255);
  background-color: rgb(0, 0, 26);
  transition: all 0.3s ease;
}

.ai-assistant .btn-outline-light:hover {
  background-color: white;
  color: rgb(0, 0, 26);
}

.ai-assistant .ai-img {
  max-width: 400px;
  height: auto;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .ai-assistant h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .ai-assistant p {
    text-align: center;
    font-size: 0.85rem;
  }

  .ai-assistant .btn {
    margin: 0 auto;
    display: block;
  }

  .ai-assistant .ai-img {
    max-width: 300px;
    margin-top: 30px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background-color: #fff;
  color: rgb(34, 34, 34);
}

.footer h6 {
  font-size: 1rem;
}

.footer ul li {
  margin-bottom: 8px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer ul li:hover {
  color: rgb(58, 58, 227);
}

.footer .text-secondary {
  color: rgb(101, 100, 100) !important;
}

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

  .footer p,
  .footer ul {
    text-align: left;
  }

  .footer hr {
    margin-top: 40px;
  }
}
/* ========== FOOTER ========== */
.footer {
  background-color: #fff;
  color: rgb(34, 34, 34);
}

.footer h6 {
  font-size: 1rem;
}

.footer ul li {
  margin-bottom: 8px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer ul li:hover {
  color: rgb(58, 58, 227);
}

.footer .text-secondary {
  color: rgb(101, 100, 100) !important;
}

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

  .footer p,
  .footer ul {
    text-align: left;
  }

  .footer hr {
    margin-top: 40px;
  }
}

/* ========== FOOTER BOTTOM STRIP ========== */
.footer-bottom {
  width: 100%;
  margin-top: 40px;
  padding: 10px 20px;
  background-color: #fff; /* you can change to dark if preferred */
}

.footer-bottom hr {
  width: 100%;
  border: none;
  border-top: 1px solid rgb(200, 200, 200);
  margin: 0;
}

.footer-bottom p {
  font-size: 14px;
  color: rgb(101, 100, 100);
  text-align: right;
  margin-top: 8px;
  margin-bottom: 0;
  padding-right: 20px;
}

/* Responsive tweak for smaller screens */
@media (max-width: 768px) {
  .footer-bottom p {
    text-align: center;
    padding-right: 0;
    font-size: 13px;
  }
}