@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;

  font-style: normal;
}

.topbar-wrap-area {
  /* background-color: #f8f9fa; */
  background-color: #fff;
  /* Light background */
}

.topbar-content span {
  font-size: 0.9rem;
  /* Smaller font size */
  color: #333;
  /* Darker text */
}

.topbar-action-list li {
  font-size: 0.9rem;
  color: #555;
}

.topbar-action-list li a {
  color: #007bff;
  /* Bootstrap primary color */
  transition: color 0.3s;
}

.topbar-action-list li a:hover {
  color: #0056b3;
  /* Darker primary color on hover */
  text-decoration: underline;
}

.topbar-action-list i {
  color: #662d91;
  /* Purple for icons */
}

.social-icons a {
  color: #662d91;
  /* Social media icon color */
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #531f6e;
  /* Darker purple on hover */
}

/* nav bar */
.navbar-area {
  background-color: #f8f9fa;
  /* Light background */
  position: sticky;
  top: 0;
  z-index: 1020;
  /* Ensure it stays above other elements */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Optional shadow for distinction */
}

.navbar-brand img {
  max-width: 150px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #531f6e;
  /* Hover color */
}

.dropdown-menu {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 0.5rem;
}

.dropdown-menu .nav-link {
  color: #555;
}

.dropdown-menu .nav-link:hover {
  color: #531f6e;
  /* Hover color */
}

.others-options .btn-primary {
  background-color: #007bff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.others-options .btn-primary:hover {
  background-color: #531f6e;
}

/* ***** */
/* banner */
.ai-main-banner-area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding-top: 100px;
    padding-bottom: 100px; */
  /* padding-top: 50px;
    padding-bottom: 50px; */
  color: #ffffff;
  min-height: 100vh;
}

.ai-main-banner-content {
  /* max-width: 600px; */
  max-width: 800px;
  text-align: center;
}

.ai-main-banner-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.ai-main-banner-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #2596be;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  color: #ffffff;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #1a83ad;
}

/* about */
.ai-about-area {
  padding-bottom: 100px;
  background-color: #f8f9fa;
  /* Light background color for better contrast */
  color: #333;
}

.ai-about-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ai-about-content h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.ai-about-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.about-list {
  padding-left: 0;
}

.about-list li {
  margin-bottom: 15px;
  font-size: 16px;
}

.about-list i {
  color: #2596be;
  margin-right: 10px;
}

.about-btn a.btn-primary {
  background-color: #2596be;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.about-btn a.btn-primary:hover {
  background-color: #1a83ad;
}

/* about end */
/* service start */
.ai-services-area {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 18px;
  margin-bottom: 40px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.image-icon img {
  max-width: 80px;
  margin-bottom: 15px;
}

.card-title a {
  font-size: 20px;
  color: #1a1f56;
  text-decoration: none;
}

.card-text {
  font-size: 16px;
  color: #555;
  text-align: center;
}

.read-btn {
  color: #fff;
  background-color: #1a1f56;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-btn:hover {
  background-color: #0e0f3d;
}

.btn-primary {
  background-color: #2596be;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #1a83ad;
}

/* service end */
/* footer */
.footer-wrap-area {
  background-color: #1a1f56;
  /* Changed background color */
  color: #ffffff;
  /* Text color */
  padding-top: 100px;
}

.footer-wrap-area .logo img {
  max-width: 150px;
}

.footer-wrap-area p {
  font-size: 14px;
  color: #ffffff;
}

.footer-wrap-area ul.social li a {
  color: #ffffff;
  /* Text color for social icons */
  font-size: 20px;
  transition: color 0.3s;
}

.footer-wrap-area ul.social li a:hover {
  color: #7a46a8;
  /* Hover color */
}

.footer-wrap-area h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ffffff;
  /* Heading text color */
}

.footer-wrap-area ul li a {
  text-decoration: none;
  color: #ffffff;
  /* Text color for footer links */
  transition: color 0.3s;
}

.footer-wrap-area ul li a:hover {
  color: #7a46a8;
  /* Hover color */
}

.footer-contact-list span {
  font-weight: 600;
  color: #ffffff;
}

.copyright-area {
  background-color: #1a1f56;
  /* Background color of copyright area */
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #ffffff;
  /* Text color */
}

#scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1a1f56;
  /* Same background as footer */
  color: #ffffff;
  /* Text color */
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
}

#scroll-to-top:hover {
  background: #161c4d;
  /* Slightly different shade on hover */
}
