/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Darker Grotesque", sans-serif;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  width: 100%;
  background: white;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.logo {
  height: 60px;
  width: auto;
}

.nav {
  display: flex;
  gap: 3rem;
}

.nav-link {
  font-size: 26px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #249dff;
}

.header-right {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.btn {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(to right, #249dff, #0064b5);
  color: white;
}

.btn-primary:hover {
  box-shadow: 0 10px 20px rgba(36, 157, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: white;
  border: 2px solid #249dff;
  background: linear-gradient(to right, #249dff, #0064b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-outline:hover {
  background: linear-gradient(to right, #249dff, #0064b5);
  -webkit-text-fill-color: white;
  color: white;
}

/* Hero Section */
.hero {
  background: white;
  padding: 4rem 0 0;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  background: #d8edff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: 40px;
  margin-bottom: 2rem;
}

.badge-icon {
  font-size: 28px;
}

.badge-text {
  font-size: 28px;
  font-weight: 600;
  background: linear-gradient(to right, #249dff, #0064b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  max-width: 1400px;
  margin-bottom: 3rem;
}

.gradient-text {
  background: linear-gradient(to right, #249dff, #0f79ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dashboard-preview {
  width: 100%;
  max-width: 1400px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 20px #e7f4ff;
}

.dashboard-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-gradient {
  width: 100%;
  height: 160px;
  margin-top: 0;
}

.hero-gradient img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: #fff;
}

.section-gradient {
  background: linear-gradient(to bottom, #f5faff, white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-left {
  text-align: left;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: #111;
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Styles */
.card {
  background: #f6f6f6;
  border-radius: 24px;
  padding: 2rem;
  height: 240px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.left-card-section {
  width: 100%;
}

.card:hover {
  background: linear-gradient(to bottom, #f5faff, #e7f4ff);
}

.card-highlighted {
  background: linear-gradient(to bottom, #f5faff, #e7f4ff);
  border: 2px solid rgba(36, 157, 255, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.card-icon-white {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-white svg {
  width: 38px;
  height: 40px;
}

.card-icon-blue {
  background: #d8edff;
}

.card-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: black;
}

.small-text {
  font-size: 44px;
  font-weight: 600;
}

/* Stats */
.stat-card {
  background: white;
  border: 2px solid rgba(36, 157, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s;
}

.stat-card:hover {
  box-shadow: 0 10px 30px #e7f4ff;
}

.stat-value {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
}

/* CTA Box */
.cta-box {
  /* <<<<<<< HEAD */
  max-width: 90%;
  margin: 0 auto;
  background-image: url("../home/assets/images/cta-bg.png");
  border-radius: 30px;
  padding: 4rem;
  text-align: center;
}

.cta-title {
  font-size: 48px;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.btn-cta {
  background: white;
  color: #0a4d7a;
  font-size: 28px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-cta:hover {
  transform: scale(1.05);
}
.btn-cta {
  background: white;
  color: #0a4d7a;
  font-size: 28px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  /* >>>>>>> 76c070b (home landing page) */
}

/* Testimonials */
.testimonial-card {
  background: white;
  border: 2px solid rgba(36, 157, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px #e7f4ff;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
}

.testimonial-role {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: black;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 20px;
  height: 20px;
}

.testimonial-quote {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: black;
}

/* FAQ */
.faq-container {
  max-width: 75%;
  margin: 0 auto;
}

.faq-item {
  background: #f5faff;
  border: 2px solid rgba(36, 157, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: transparent;
  border: none;
  font-family: "Darker Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e7f4ff;
}

.faq-icon {
  flex-shrink: 0;
  stroke: #249dff;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: black;
}

/* Footer */
.footer {
  background: linear-gradient(to right, #0d77ce, #0064b5);
  padding: 3rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-text {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.footer-title {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
}
.t-m {
  margin: 0px 50px;
  padding-top: 2rem;
}
.t-m ul li {
  margin-left: 3rem;
  margin-top: 6px;
}
.ag-animate-text-block {
  margin: 50px 0;
}
.ag-toggle_title {
  line-height: 1.2;
  margin: 0 0 50px;

  text-align: center;
  font-weight: bold;
  font-size: 60px;
  color: #fff;
}
.ag-toggle_tagline {
  margin: 0 0 20px;

  text-align: center;
  font-size: 20px;
  color: #fff;
}
.cd-words-wrapper {
  color: #e5e128;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 56px;
  }

  .section-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    font-size: 20px;
    padding: 14px 20px;
  }
}
