:root {
  /* Brand Colors */
  --brand-primary: #6d8cde; /* Bright Tech Blue */
  --brand-secondary: #1e293b; /* Slate Dark */
  --brand-accent: #668ee9; /* Deep Navy */
  --text-main: #334155;
  --bg-light: #f8fafc;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-light);
  overflow-x: hidden;
  color: var(--text-main);
  /* Removed padding-top because sticky-top handles space automatically */
}

/* --- Global Responsive Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-secondary);
}

/* Adjust font sizes for mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem !important;
  }
  h2 {
    font-size: 1.8rem !important;
  }
  h3 {
    font-size: 1.5rem !important;
  }
  p {
    font-size: 0.95rem !important;
  }
  section {
    padding: 60px 0 !important;
  }
}

/* --- Top Bar Styles --- */
.top-bar {
  background-color: var(--brand-accent);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar i {
  color: var(--brand-primary);
  margin-right: 5px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: #ffffff;
}

.top-info-item {
  margin-right: 20px;
  display: inline-block;
}

@media (max-width: 768px) {
  .top-bar {
    text-align: center;
    display: none; /* Optional: Hide on very small screens if too crowded, or keep block */
  }
  .top-info-item {
    margin-right: 0;
    margin-bottom: 5px;
    font-size: 10px;
  }
}

/* Show on mobile but stacked */
@media (max-width: 768px) {
  .top-bar {
    display: block;
  }
}

/* --- Header / Navbar Styles --- */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.3s ease;
  z-index: 1030;
}

/* --- Global Responsive Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-secondary);
}

/* Adjust font sizes for mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem !important;
  }
  h2 {
    font-size: 1.8rem !important;
  }
  h3 {
    font-size: 1.5rem !important;
  }
  p {
    font-size: 0.95rem !important;
  }
  section {
    padding: 60px 0 !important;
  } /* Compact padding on mobile */
}

/* --- Header / Navbar Styles --- */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.3s ease;
  z-index: 1030; /* Ensure it stays on top */
}

.navbar-brand img {
  height: 60px;
}

.navbar-brand span.highlight {
  color: var(--brand-primary);
}
.navbar-brand:hover {
  color: var(--brand-primary);
}

.nav-link {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-primary);
}

/* Underline Hover Effect */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: var(--brand-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-brand {
  background-color: var(--brand-primary);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-brand:hover {
  background-color: transparent;
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.navbar-toggler {
  border: none;
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Offcanvas Mobile Menu */
@media (max-width: 991.98px) {
  .offcanvas-end {
    width: 280px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }
  .offcanvas-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .navbar-nav {
    margin-bottom: 20px;
  }
  .nav-link {
    margin: 5px 0;
    font-size: 1.1rem;
  }
  .nav-link::after {
    display: none;
  }
  .navbar-brand img {
    height: 30px;
  }
}

/* Desktop Reset for Offcanvas */
@media (min-width: 992px) {
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    background-color: transparent;
    border: 0;
    transform: none;
    visibility: visible;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    box-shadow: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-direction: row;
    padding: 0;
    overflow: visible;
    width: auto;
    align-items: center;
  }
}

/* --- Hero Section & Three.js --- */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 85vh;
  min-height: 500px;
  background: linear-gradient(135deg, #fceeff 0%, #d4e8ff 50%, #e3e4ff 100%);
}

#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay-global {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.281);
  mix-blend-mode: overlay;
  z-index: 2;
}

.hero-slider {
  position: relative;
  z-index: 3;
  height: 100%;
}

.hero-slide {
  height: 85vh;
  min-height: 500px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000000;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.hero-title {
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(to right, #000000, #303131);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: #020202;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  padding: 14px 40px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  background: #000000;
  color: white;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
  background: #f1f5f9;
}

/* --- Overlap Section --- */
.overlap-section {
  position: relative;
  z-index: 20;
  margin-top: -80px;
  padding-bottom: 60px;
}

.overlap-box {
  background: linear-gradient(135deg, #6992eb 0%, #597bd8 100%);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.25);
  padding: 40px 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.overlap-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 20%
    );
  pointer-events: none;
}

.overlap-item {
  text-align: center;
  padding: 15px;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.col-lg-3:last-child .overlap-item {
  border-right: none;
}

.overlap-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #93c5fd;
  transition: transform 0.3s ease;
  display: inline-block;
}

.overlap-item:hover .overlap-icon {
  transform: scale(1.1);
  color: #ffffff;
}

.overlap-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}
.overlap-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .overlap-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px 15px;
  }
  .col-lg-3:last-child .overlap-item {
    border-bottom: none;
  }
  .overlap-section {
    margin-top: -40px;
  }
}

@media (max-width: 767px) {
  .overlap-section {
    margin-top: 0;
    padding-top: 40px;
    background: var(--bg-light);
  }
  .overlap-box {
    border-radius: 8px;
    box-shadow: none;
  }
}

/* --- Brand/Intro Section --- */
.intro-logo-section {
  padding: 20px 0 100px 0;
  background-color: var(--bg-light);
}
.intro-heading-col {
  padding-right: 2rem;
}
.intro-heading {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.intro-text {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
}

.brand-logos-row {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid #e2e8f0;
  padding-top: 50px;
}

.brand-logo-item {
  opacity: 0.5;
  transition: all 0.3s ease;
  font-size: 2.5rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-item:hover {
  opacity: 1;
  color: var(--brand-primary);
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .brand-logos-row {
    justify-content: center;
  }
  .intro-heading-col {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

/* --- Services Section --- */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fceeff 0%, #d4e8ff 50%, #e3e4ff 100%);
  position: relative;
  overflow: hidden;
}

.services-bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.section-tag {
  color: #60a5fa;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.section-title-light {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 50px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 20px;
}

.service-card {
  background: rgba(252, 251, 251, 0.452);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-box {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 2rem;
  color: #60a5fa;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: scale(1.1);
}
.service-card-title {
  color: #000000;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-card-text {
  color: #162336;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}
.service-card:hover .service-card-text {
  color: rgba(255, 255, 255, 0.9);
}

.service-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
  background: #ffffff;
  color: var(--brand-primary);
  border-color: #ffffff;
}

/* --- Project Section --- */
.projects-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.project-item {
  margin-bottom: 40px;
}
.project-item:last-child {
  margin-bottom: 0;
}
.project-content {
  padding: 20px;
}

.project-category {
  color: var(--brand-primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.project-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 20px;
}
.project-desc {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.project-tag {
  background: #f1f5f9;
  color: var(--text-main);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.btn-link-custom {
  text-decoration: none;
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-link-custom:hover {
  color: var(--brand-primary);
}
.btn-link-custom:hover i {
  transform: translateX(5px);
}

.project-img-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 10px;
}

.img-main {
  width: 50%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  object-fit: cover;
  height: auto;
}
.img-secondary {
  width: 50%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  object-fit: cover;
  height: auto;
}

.project-item:hover .img-main,
.project-item:hover .img-secondary {
  transform: translateY(-10px) scale(1.05);
}

@media (max-width: 991px) {
  .project-img-wrapper {
    margin-bottom: 30px;
  }
  .project-item .row {
    flex-direction: column-reverse;
  }
  .project-item .row.flex-row-reverse {
    flex-direction: column-reverse !important;
  }
}

/* --- Testimonials --- */
.testimonial-section {
  padding: 100px 0;
  background-color: #f8fafc;
}
.testi-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 15px;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--brand-primary);
}
.testi-quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: rgba(37, 99, 235, 0.1);
}
.testi-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-primary);
}
.testi-info h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.testi-info span {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}
.testi-rating {
  margin-top: 5px;
  color: #f59e0b;
  font-size: 0.8rem;
}

/* --- Achievements --- */
.achievement-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.ach-card-top {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid transparent;
  border: 1px solid #f1f5f9;
}
.ach-card-top:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--brand-primary);
}
.ach-icon-box {
  width: 100%;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-primary);
  font-size: 1.5rem;
  border-radius: 10px;
  margin-bottom: 20px;
}

.ach-icon-box img {
  height: 80px;
}
.ach-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.ach-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.counter-row {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid #e2e8f0;
}
.counter-box {
  text-align: center;
  position: relative;
}
.counter-col:not(:last-child) .counter-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #e2e8f0;
}
.counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 5px;
  display: inline-block;
}
.counter-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .counter-col:not(:last-child) .counter-box::after {
    display: none;
  }
  .counter-box {
    margin-bottom: 30px;
  }
  .counter-number {
    font-size: 2.5rem;
  }
}

/* --- Pricing --- */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fceeff 0%, #d4e8ff 50%, #e3e4ff 100%);
}
.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-primary);
}
.pricing-card.popular {
  border: 2px solid var(--brand-primary);
  box-shadow: 0 15px 45px rgba(37, 99, 235, 0.15);
}
.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-primary);
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}
.pricing-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-primary);
  border-radius: 50%;
  font-size: 2rem;
  margin: 0 auto 25px;
}
.pricing-title {
  text-align: center;
  font-size: 16px;
}
.pricing-price {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-accent);
  margin-bottom: 10px;
}
.pricing-price span {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  flex-grow: 1;
}
.pricing-features li {
  margin-bottom: 15px;
  color: #64748b;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li i {
  color: var(--brand-primary);
  font-size: 0.9rem;
}
.pricing-features li.disabled {
  color: #cbd5e1;
  text-decoration: line-through;
}
.pricing-features li.disabled i {
  color: #cbd5e1;
}
.btn-pricing {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-primary);
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn-pricing:hover,
.pricing-card.popular .btn-pricing {
  background: var(--brand-primary);
  color: #ffffff;
}

/* --- Blog --- */
.blog-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  background: #fff;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img {
  transform: scale(1.1);
}
.blog-date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--brand-primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.blog-content {
  padding: 25px;
}
.blog-meta {
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-meta i {
  color: var(--brand-primary);
  margin-right: 5px;
}
.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-title a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color 0.3s;
}
.blog-title a:hover {
  color: var(--brand-primary);
}
.read-more-link {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.read-more-link:hover {
  gap: 10px;
}

/* --- FAQ --- */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}
.faq-img-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.faq-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.faq-img-wrapper:hover .faq-main-img {
  transform: scale(1.05);
}
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  color: var(--brand-secondary);
  background-color: #ffffff;
}
.accordion-button:not(.collapsed) {
  color: var(--brand-primary);
  background-color: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:focus {
  border-color: rgba(37, 99, 235, 0.1);
  box-shadow: none;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563EB'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  padding: 25px;
  color: #64748b;
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #fceeff 0%, #d4e8ff 50%, #e3e4ff 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.cta-banner::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}
.cta-banner::after {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
}
.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: black;
}
.btn-cta-light {
  background: #ffffff;
  color: var(--brand-primary);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-cta-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background: #f8fafc;
  color: var(--brand-secondary);
}

/* --- Footer --- */
.footer {
  background-color: rgb(173, 193, 247);
  color: #000000;
  padding-top: 80px;
  padding-bottom: 30px;
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  color: #000000;
  text-decoration: none;
}
.footer-brand img {
  height: 60px;
}
.footer-text {
  color: #000000;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 30px;
}
.footer h5 {
  color: #000000;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--brand-primary);
  padding-left: 5px;
}
.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #000000;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--brand-primary);
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #000000;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .footer-brand img {
    height: 30px;
  }
}
