/* Custom CSS */ /* General Styles */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  color: #333;
  padding-top: 76px;
}
a {
  text-decoration: none !important;
  color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.text-primary {
  color: #226198 !important;
}
.text-primary-2 {
  color: #226198 !important;
}
.bg-primary {
  background-color: #226198 !important;
}
.btn-primary {
  background-color: #226198;
  border-color: #226198;
}
.integration-card img {
  transition: transform 0.3s ease, border-radius 0.3s ease; /* Smooth transition */
}
.integrations-section .img-fluid {
  height: 15rem;
}
.integration-card img:hover {
  transform: scale(1.01); /* Slightly enlarge the image */
  /* border-radius: 50%;  */
  /* Make it a circle */
}
.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.btn-outline-primary {
  color: #226198;
  border-color: #226198;
}
.btn-outline-primary:hover {
  background-color: #226198;
  border-color: #226198;
  color: white;
} /* Navbar */
.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.navbar-expand-lg .navbar-nav {
  gap: 1rem;
}
.navbar-brand {
  font-weight: 700;
} /* Hero Section */
.main-text {
  width: 100%;
  font-size: 2rem;
  text-wrap: auto;
}
.hero-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
} /* Dashboard Preview */
.dashboard-preview {
  border: 1px solid #e9ecef;
  overflow: hidden;
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
} /* Features Section */
.features-section .text-primary {
  color: #fff !important;
}
.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
} /* How It Works */
.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
} /* Pricing Cards */
.pricing-card {
  transition: transform 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
} /* Testimonials */
.testimonial-card {
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
} /* Integrations */
.integration-card {
  transition: transform 0.3s ease;
}
.integration-card:hover {
  transform: translateY(-5px);
} /* Resources */
.resource-card {
  transition: transform 0.3s ease;
}
.resource-card:hover {
  transform: translateY(-5px);
} /* Contact Section */
.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .text-primary {
  color: #fff !important;
}
.social-icon {
  width: 40px;
  height: 40px;
  transition: background-color 0.3s ease;
}
.social-icon:hover {
  background-color: #e9ecef;
} /* CTA Section */
.cta-section {
  background-color: #226198;
  background-image: linear-gradient(135deg, #226198 0%, #0a58ca 100%);
} /* Footer */
.footer a:hover {
  color: #fff !important;
}
.footer .text-muted {
  color: #fff !important;
} /* Accordion */
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #226198;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(13, 110, 253, 0.25);
}
/* animation */
/* 
.fade-in {
  opacity: 0;
  transform: translateY(30px); 
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}


.slide-left {
  opacity: 0;
  transform: translateX(-50px); 
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-left.active {
  opacity: 1;
  transform: translateX(0);
}


.fade-out {
  opacity: 1;
  transition: opacity 0.7s ease-out;
}

.fade-out.active {
  opacity: 0;
}


.slide-right {
  opacity: 0;
  transform: translateX(50px); 
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-right.active {
  opacity: 1;
  transform: translateX(0);
} */
/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .hero-section {
    text-align: center;
    padding-top: 0 !important;
  }
  .row {
    gap: 2rem;
  }
  .hero-section .py-5 {
    padding-top: 0 !important;
  }
  .dashboard-preview {
    margin-top: 2rem;
  }
  .main-text {
    font-size: 1.3rem;
  }
} /* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature-card,
.pricing-card,
.testimonial-card,
.resource-card {
  animation: fadeIn 0.5s ease-out forwards;
} /* Modal Styles */
.modal-content {
  border: none;
} /* Form Controls */
.form-control:focus {
  border-color: #226198;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
} /* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
} /* Utility Classes */
.rounded-4 {
  border-radius: 0.5rem;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
} /* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .dark-mode-enabled {
    background-color: #212529;
    color: #f8f9fa;
  }
}
