:root {
  --primary-blue: #1e3a8a;
  --light-bg: #f8f9fa;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  width: 100%;
  position: relative;
}
.p-relative {
  position: relative;
}

/* Unified Header Styles */
.unified-header {
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.unified-header .navbar {
  padding: 0;
}

.unified-header .navbar-brand {
  text-decoration: none;
  padding: 0;
  margin-right: 3rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: left;
}

.brand-text {
  font-family: "Figtree", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.brand-text-mini {
  color: #043873;
  font-size: 1rem;
}

/* Navigation Links */
.unified-header .navbar-nav {
  gap: 2.5rem;
}

.unified-header .nav-link {
  font-family: "Figtree", sans-serif;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.unified-header .nav-link:hover {
  color: #ff6600;
}

.unified-header .nav-link.active {
  color: #ff6600;
}

.unified-header .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ff6600;
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}

.flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.language-text {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.language-divider {
  color: #cbd5e1;
  font-weight: 400;
}

.dropdown-icon {
  color: #64748b;
  font-size: 0.75rem;
}

.language-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  max-height: 350px;
  overflow-y: auto;
  z-index: 9999;
  padding: 0;
}

.language-dropdown.show {
  display: block;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f1f5f9;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background-color: #f8fafc;
}

.language-option-text {
  font-weight: 500;
  color: #475569;
  font-size: 0.95rem;
}

/* Contact Button in Navbar */
.btn-contact-nav {
  background-color: #ff6600;
  color: white !important;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-contact-nav:hover {
  background-color: #e55a00;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Mobile Toggle */
.unified-header .navbar-toggler {
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.75rem;
}

.unified-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 41, 59, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  position: relative;
  max-height: 100vh;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    92.75deg,
    #4e657f 8.67%,
    rgba(78, 101, 127, 0.85) 28.33%,
    rgba(78, 101, 127, 0.5) 48.34%,
    rgba(78, 101, 127, 0) 66.54%
  );

  z-index: 2;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}

.hero-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: none;
}

/* Video.js custom styling for hero background */
.hero-video.video-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video.video-js .vjs-tech {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Hide Video.js controls completely for background video */
.hero-video.video-js .vjs-control-bar,
.hero-video.video-js .vjs-big-play-button,
.hero-video.video-js .vjs-loading-spinner {
  display: none !important;
}

.hero-video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/1b1884b2904e2e53d8fa26f6ae7273806b08198f.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-title {
  font-family: "Enriqueta", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.text-blue {
  color: #004d99;
}

.text-orange {
  color: #ffa264;
}

.text-initiative {
  color: white;
}

/* Mobile - Change Initiative to Blue */
@media (max-width: 768px) {
  .text-initiative {
    color: #004d99;
  }
}
.bg-ff6600 {
  background-color: #ff6600;
}

.btn-enroll {
  font-family: "Figtree", sans-serif;
  background-color: #ff6600;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  max-width: 200px;
}

.btn-enroll:hover {
  background-color: #e55a00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.hero-image-container {
  position: relative;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 30%,
    rgba(255, 255, 255, 0) 60%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-image {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Floating Contact Button */
.btn-contact {
  font-family: "Figtree", sans-serif;
  background-color: #004d99;
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 77, 153, 0.3);
  animation: float 3s ease-in-out infinite;
}

.btn-contact:hover {
  background-color: #003d7a;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 77, 153, 0.4);
}

.btn-contact:active {
  transform: translateY(-1px);
}

.btn-contact img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-contact:hover img {
  transform: scale(1.1);
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Pulse animation for attention */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(0, 77, 153, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0, 77, 153, 0.5);
  }
  100% {
    box-shadow: 0 4px 20px rgba(0, 77, 153, 0.3);
  }
}

/* Add pulse animation on page load */
.btn-contact.pulse {
  animation: float 3s ease-in-out infinite, pulse 2s ease-in-out 3;
}

/* Responsive adjustments for floating button */
@media (max-width: 768px) {
  .btn-contact {
    bottom: 20px;
    right: 20px;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .btn-contact span {
    display: none; /* Hide text on mobile, show only icon */
  }

  .btn-contact {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }

  .btn-contact img {
    width: 24px;
    height: 24px;
    margin: 0;
  }
}

/* Optional: Add a tooltip for mobile when text is hidden */
@media (max-width: 768px) {
  .btn-contact::after {
    content: "Contact Us";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
  }

  .btn-contact:hover::after {
    opacity: 1;
    visibility: visible;
  }
}

/* About Section */
.about-section {
  background-color: #f8f9fa;
  padding: 80px 0 80px 0;
}

.about-section .row {
  align-items: stretch;
}

.about-section .col-lg-6 {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-family: "Enriqueta", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #004d99;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #ff6600;
}

.about-text {
  font-family: "Figtree", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #3e3e3e;
  text-align: justify;
  margin-bottom: 1.5rem;
}

.btn-read-more {
  font-family: "Figtree", sans-serif;
  background-color: #ff6600;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-top: 1rem;
  max-width: 150px;
  text-align: center;
}

.btn-read-more:hover {
  background-color: #e55a00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding-right: 0;
  overflow: visible;
  flex: 1;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  min-height: 600px;
  border-radius: 10px;
}

.about-image:hover {
  box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.4);
  transform: translateX(5px);
}

/* Vision Section */
.pl-24px {
  padding-left: 24px;
}

.vision-section {
  background-color: #ffffff;
  padding: 50px 0 90px 0;
  position: relative;
}

.vision-title {
  font-family: "Enriqueta", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #004d99;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.vision-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #ff6600;
  transform: translateX(-50%);
}

.vision-text {
  font-family: "Figtree", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #3e3e3e;
  text-align: justify;
}

.vision-image {
  width: 100%;
  max-width: 225px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.25;
}

/* Key Features Section */
.key-features-section {
  background-color: #f8f9fa;
  padding: 0 0 80px 0;
}

.key-features-title {
  font-family: "Enriqueta", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #004d99;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
}

.key-features-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #ff6600;
  transform: translateX(-50%);
}

.feature-card {
  background-color: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  height: 90%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #fff0e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 32px;
  height: 32px;
}

.feature-card-title {
  font-family: "Enriqueta", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #004d99;
  margin-bottom: 1rem;
}

.feature-card-text {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #3e3e3e;
}

/* Technology Stack Section */
.tech-stack-section {
  background-color: #043873;
  padding: 80px 0;
  color: white;
}

.tech-stack-title {
  font-family: "Enriqueta", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.tech-stack-description {
  font-family: "Figtree", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: white;
  margin-bottom: 2.5rem;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list-item {
  font-family: "Figtree", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: white;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tech-list-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 15px;
}

.tech-item-title {
  font-weight: 700;
}

.tech-stack-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tech-stack-image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Use Cases Section */
.use-cases-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.use-cases-title {
  font-family: "Enriqueta", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #004d99;
  margin-bottom: 3rem;
  text-align: center;
}

.use-case-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

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

.use-case-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.use-case-content {
  padding: 2rem;
  position: relative;
}

.use-case-card-title {
  font-family: "Enriqueta", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  position: absolute;
  top: -48px;
  left: 0;
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  width: auto;
  background: #fff;
  padding: 10px 50px 10px 30px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.use-case-card-text {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #3e3e3e;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev {
  left: -30px;
}

.carousel-control-next {
  right: -30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #004d99;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.carousel-control-prev-icon {
  background-image: url("../svg/arrow-left.svg");
}

.carousel-control-next-icon {
  background-image: url("../svg/arrow-right.svg");
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* Bootstrap Carousel Indicators - Hidden (using Owl Carousel now) */
.carousel-indicators {
  display: none !important;
}

.carousel-indicators [data-bs-target] {
  display: none !important;
}

.carousel-indicators [data-bs-target].active {
  display: none !important;
}

/* Owl Carousel Custom Styling */
.use-cases-carousel {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.use-cases-carousel .owl-stage-outer {
  overflow: hidden;
}

.use-cases-carousel .owl-stage {
  display: flex;
}

.use-cases-carousel .item {
  padding: 0 10px;
  display: block;
}

.use-cases-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.use-cases-carousel .owl-nav button.owl-prev,
.use-cases-carousel .owl-nav button.owl-next {
  width: 60px;
  height: 60px;
  background-color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  pointer-events: all;
  font-size: 24px;
  color: #004d99;
}

.use-cases-carousel .owl-nav button.owl-prev {
  margin-left: -30px;
}

.use-cases-carousel .owl-nav button.owl-next {
  margin-right: -30px;
}

.use-cases-carousel .owl-nav button.owl-prev:hover,
.use-cases-carousel .owl-nav button.owl-next:hover {
  background-color: #004d99 !important;
  color: white;
  transform: scale(1.05);
}

.use-cases-carousel .owl-nav button.owl-prev i,
.use-cases-carousel .owl-nav button.owl-next i {
  line-height: 1;
}

.use-cases-carousel .owl-dots {
  margin-top: 30px;
  text-align: center;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: #004d99 !important;
  width: 30px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Join the Future Section */
.join-future-section {
  background: #fff;
  padding: 80px 0;
  color: white;
}

.bg-043873 {
  background: #043873;
}

.join-future-title {
  font-family: "Enriqueta", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.join-future-text {
  font-family: "Figtree", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: white;
  margin-bottom: 1.5rem;
}

.join-future-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-developer {
  font-family: "Figtree", sans-serif;
  background-color: transparent;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #3678de;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-developer:hover {
  background-color: white;
  color: #004d99;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-apply {
  font-family: "Figtree", sans-serif;
  background-color: #5b93ff;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-apply:hover {
  background-color: #4a82ee;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 147, 255, 0.4);
}

.join-future-download {
  margin-top: 1rem;
}

.btn-whitepaper {
  font-family: "Figtree", sans-serif;
  background-color: #ff6600;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whitepaper:hover {
  background-color: #e55a00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.join-future-image-container {
  position: relative;
  width: 100%;
  max-width: 675px;
  margin: 0 auto;
}

.join-future-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: Lighten;
  border-radius: 8px;
  z-index: 1;
}

.join-future-image {
  width: 600px;
  height: 420px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  position: relative;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 1;
}

/* Footer Info Section */
.footer-info-section {
  background-color: #f6f6f6;
  padding: 80px 0;
}

.footer-seal-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-seal-image {
  width: 150px;
  height: 150px;
  display: block;
}

.footer-info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-info-title {
  font-family: "Enriqueta", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
  line-height: 1.4;
  flex: 1;
}

.footer-info-subtitle {
  font-family: "Figtree", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #3e3e3e;
  margin-left: 2rem;
  text-align: right;
}

.footer-copyright {
  font-family: "Figtree", sans-serif;
  font-size: 0.95rem;
  color: #3e3e3e;
  margin-bottom: 0;
  text-align: center;
  padding-top: 1.5rem;
}

/* ========================================
   RESPONSIVE STYLES - MOBILE OPTIMIZED
   ======================================== */

/* Tablet Landscape & Small Desktop (max-width: 991px) */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.75rem;
    line-height: 1.25;
  }

  .hero-content {
    min-height: 100vh;
  }

  .hero-section {
    min-height: 85vh;
    padding: 100px 0 60px;
  }

  .btn-enroll {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    max-width: 250px;
  }

  /* Reverse order for better mobile UX */
  .tech-stack-section .row {
    flex-direction: column-reverse;
  }

  .tech-stack-image {
    margin-bottom: 2rem;
  }

  .join-future-section .row.align-items-center {
    flex-direction: column-reverse;
  }

  .join-future-image-container {
    margin-bottom: 2rem;
    margin-top: 0;
  }

  /* Improve section spacing for tablets */
  .about-section,
  .vision-section,
  .key-features-section,
  .tech-stack-section,
  .use-cases-section,
  .join-future-section {
    padding: 70px 0;
  }

  .about-title,
  .vision-title,
  .key-features-title,
  .tech-stack-title,
  .use-cases-title,
  .join-future-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }

  .about-text,
  .vision-text,
  .tech-stack-description,
  .join-future-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  /* About Section Responsive for Tablet */
  .about-image-container {
    min-height: 450px;
    margin-top: 2rem;
  }

  .about-image {
    min-height: 450px;
    clip-path: none;
    border-radius: 12px;
  }

  .about-section .col-lg-6 {
    margin-bottom: 1.5rem;
  }
}

/* iPad Mini & Tablets (769px - 820px) - Optimal Tablet Experience */
@media (min-width: 769px) and (max-width: 820px) {
  .hero-section {
    min-height: 60vh;
    padding: 60px 0 40px;
  }

  .hero-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
  }

  .btn-enroll {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    max-width: 240px;
  }

  .hero-image-container {
    min-height: 450px;
  }

  /* Better overlay for tablet viewing */
  .hero-section::before {
    background: linear-gradient(
      89.04deg,
      #ffffff 25%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 75%
    );
  }

  /* Section improvements */
  .about-section {
    padding: 60px 0;
  }

  .about-title,
  .vision-title,
  .key-features-title {
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
  }

  .about-text,
  .vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .feature-card {
    padding: 2.25rem 1.75rem;
    margin-bottom: 1.75rem;
  }

  .vision-image {
    /* max-width: 380px; */
  }

  /* About Section for iPad */
  .about-section .row {
    flex-direction: column;
    display: flex;
  }

  /* Text column - show second */
  .about-section .col-lg-6:first-child {
    order: 2;
  }

  /* Image column - show first */
  .about-section .col-lg-6:last-child {
    order: 1;
    width: 100%;
  }

  .about-image-container {
    min-height: 400px;
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .about-image {
    min-height: 400px;
    clip-path: none;
    border-radius: 12px;
  }

  .btn-read-more {
    max-width: 200px;
  }
}

/* Tablet & Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
  }

  .container,
  .container-fluid {
    overflow-x: hidden;
    max-width: 100%;
  }

  /* ===== UNIFIED HEADER ===== */
  .unified-header {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
  }

  .brand-text {
    font-size: 1rem;
    letter-spacing: -0.3px;
  }

  .logo-circle {
    width: 40px;
    height: 40px;
  }

  /* Language Selector - Compact */
  .language-selector {
    padding: 6px 10px;
    margin-top: 1rem;
    width: fit-content;
    justify-content: flex-start;
  }

  .language-text {
    font-size: 0.75rem;
  }

  .flag-icon {
    width: 18px;
    height: 18px;
  }

  .dropdown-icon {
    font-size: 0.65rem;
  }

  .language-dropdown {
    min-width: 160px;
    left: 0;
    right: auto;
  }

  .language-option {
    padding: 10px 14px;
  }

  .language-option-text {
    font-size: 0.9rem;
  }

  /* ===== NAVIGATION ===== */
  .unified-header .navbar-collapse {
    background: #ffffff;
    padding: 1rem;
    margin: 0.5rem -1rem -0.75rem -1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  }

  .unified-header .navbar-nav {
    gap: 0;
    margin-top: 0;
  }

  .unified-header .nav-link {
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.85rem;
  }

  .unified-header .nav-link.active::after {
    display: none;
  }

  .unified-header .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  /* Contact Button in Mobile */
  .btn-contact-nav {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
  }

  /* ===== HERO SECTION ===== */
  .hero-section {
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    margin-top: 0;
  }

  .hero-section .container {
    width: 100%;
  }

  .hero-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-left-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-align: center;
  }

  .btn-enroll {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    max-width: 100%;
    width: auto;
  }

  /* Stronger overlay for better text readability on mobile */
  /* .hero-section::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0.75) 100%
    );
  } */

  /* ===== ABOUT SECTION ===== */
  .about-section {
    padding: 50px 0;
    overflow-x: hidden;
  }

  .about-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  .about-section .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .about-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .about-title::after {
    width: 60px;
    height: 3px;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 1.25rem;
  }

  .btn-read-more {
    padding: 0.65rem 1.75rem;
    font-size: 0.95rem;
    margin-top: 0.75rem;
  }

  .about-section .row {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }

  .about-section .col-lg-6 {
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Text column - show second */
  .about-section .col-lg-6:first-child {
    order: 2;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Image column - show first */
  .about-section .col-lg-6:last-child {
    order: 1;
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-image-container {
    justify-content: center;
    padding-right: 0;
    overflow: hidden;
    height: auto;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .about-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    clip-path: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
  }

  .about-image:hover {
    transform: translateX(3px);
  }

  .btn-read-more {
    width: 100%;
  }

  /* ===== VISION SECTION ===== */
  .vision-section {
    padding: 0 0 50px 0;
    overflow-x: hidden;
  }

  .vision-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .vision-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  .vision-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .vision-title::after {
    width: 60px;
    height: 3px;
  }

  .vision-text {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 2rem;
  }

  .vision-image {
    /* max-width: 300px; */
    margin-top: 1rem;
  }

  /* ===== KEY FEATURES SECTION ===== */
  .key-features-section {
    padding: 0 0 50px 0;
    overflow-x: hidden;
  }

  .key-features-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .key-features-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  .key-features-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .key-features-title::after {
    width: 60px;
    height: 3px;
  }

  .feature-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.25rem;
  }

  .feature-icon img {
    width: 28px;
    height: 28px;
  }

  .feature-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.875rem;
  }

  .feature-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* ===== TECHNOLOGY STACK SECTION ===== */
  .tech-stack-section {
    padding: 50px 0;
    overflow-x: hidden;
  }

  .tech-stack-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tech-stack-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  .tech-stack-section [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tech-stack-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .tech-stack-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .tech-list-item {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    gap: 0.75rem;
  }

  .tech-list-item img {
    width: 28px;
    height: 28px;
  }

  .tech-stack-image {
    margin-top: 2rem;
    height: auto;
  }

  .tech-stack-image-wrapper {
    height: auto;
  }

  /* ===== USE CASES SECTION ===== */
  .use-cases-section {
    padding: 50px 0;
    overflow-x: hidden;
    width: 100%;
  }

  .use-cases-section .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .use-cases-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding: 0 15px;
  }

  .use-cases-carousel {
    margin: 0 15px;
  }

  .use-case-image {
    height: 200px;
  }

  .use-case-content {
    padding: 1.5rem;
  }

  .use-case-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    top: -40px;
  }

  .use-case-card-text {
    font-size: 0.95rem;
  }

  /* Carousel Controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }

  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }

  .carousel-indicators {
    margin-bottom: -2.5rem;
  }

  .carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
  }

  /* Owl Carousel Mobile Responsive */
  .use-cases-carousel {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .use-cases-carousel .owl-stage-outer {
    overflow: hidden !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .use-cases-carousel .owl-stage {
    display: flex !important;
    padding-left: 0 !important;
    transform: translate3d(0px, 0px, 0px) !important;
  }

  .use-cases-carousel .owl-item {
    width: 100% !important;
    padding: 0 10px !important;
    float: none !important;
  }

  .use-cases-carousel .owl-item.active {
    display: block !important;
  }

  .use-cases-carousel .owl-item:not(.active) {
    display: none !important;
  }

  .use-cases-carousel .owl-nav button.owl-prev,
  .use-cases-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .use-cases-carousel .owl-nav button.owl-prev {
    margin-left: 10px;
  }

  .use-cases-carousel .owl-nav button.owl-next {
    margin-right: 20px;
  }

  .use-cases-carousel .item {
    padding: 0;
    width: 100% !important;
    display: block;
  }

  .use-case-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }

  .use-cases-carousel .owl-dots {
    margin-top: 1.5rem;
  }

  .use-cases-carousel .owl-dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }

  .use-cases-carousel .owl-dot.active {
    width: 24px;
  }

  /* ===== JOIN THE FUTURE SECTION ===== */
  .join-future-section {
    padding: 50px 0;
    overflow-x: hidden;
  }

  .join-future-section .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .join-future-section .bg-043873 {
    padding: 2.5rem 0;
  }

  .join-future-section .row.align-items-center {
    padding: 0 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .join-future-section .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .join-future-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .join-future-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .join-future-buttons {
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .btn-developer,
  .btn-apply {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-whitepaper {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  .join-future-image-container {
    margin-top: 2rem;
    max-width: 100%;
  }

  .join-future-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  /* ===== FOOTER INFO SECTION ===== */
  .footer-info-section {
    padding: 50px 0;
    overflow-x: hidden;
  }

  .footer-info-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-info-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-seal-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
  }

  .footer-seal-container {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .footer-info-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .footer-info-title {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.5;
  }

  .footer-info-subtitle {
    font-size: 0.75rem;
    margin-left: 0;
    margin-top: 0.875rem;
    text-align: center;
  }

  .footer-copyright {
    font-size: 0.8rem;
    padding-top: 1.25rem;
  }

  /* ===== FLOATING CONTACT BUTTON ===== */
  .btn-contact {
    bottom: 25px;
    right: 25px;
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .btn-contact span {
    display: none;
  }

  .btn-contact img {
    width: 24px;
    height: 24px;
    margin: 0;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  /* Extra protection against horizontal scroll */
  * {
    max-width: 100vw;
  }

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Use Cases fixes for small mobile */
  .use-cases-section {
    padding: 40px 0;
  }

  .use-cases-carousel {
    padding: 0 !important;
    margin: 0 10px !important;
  }

  .use-cases-carousel .owl-stage-outer {
    padding: 0 !important;
    width: 100% !important;
  }

  .use-cases-carousel .owl-item {
    width: 100% !important;
    padding: 0 5px !important;
  }

  .use-cases-carousel .owl-item:not(.active) {
    display: none !important;
  }

  .use-case-card {
    margin: 0 !important;
    width: 100% !important;
  }

  .use-cases-carousel .owl-nav button.owl-prev {
    margin-left: 5px;
  }

  .use-cases-carousel .owl-nav button.owl-next {
    margin-right: 20px !important;
  }

  .unified-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .logo-circle {
    width: 32px;
    height: 32px;
  }

  /* Language Selector - Extra Compact for Small Mobile */
  .language-selector {
    padding: 5px 8px;
  }

  .language-text {
    font-size: 0.7rem;
  }

  .flag-icon {
    width: 16px;
    height: 16px;
  }

  .dropdown-icon {
    font-size: 0.6rem;
  }

  .language-dropdown {
    min-width: 140px;
  }

  .language-option {
    padding: 8px 12px;
  }

  .language-option .flag-icon {
    width: 18px;
    height: 18px;
  }

  .language-option-text {
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-section {
    min-height: 100vh;
    padding: 0;
  }

  .hero-content {
    /* padding-top: 80px; */
  }

  /* Reduce all section titles */
  .about-title,
  .vision-title,
  .key-features-title,
  .tech-stack-title,
  .use-cases-title,
  .join-future-title {
    font-size: 1.5rem;
  }

  /* Reduce text size */
  .about-text,
  .vision-text,
  .tech-stack-description,
  .join-future-text {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .feature-card-title,
  .use-case-card-title {
    font-size: 1.1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 0;
  }

  .carousel-control-next {
    right: 0;
  }

  .btn-contact {
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    z-index: 999;
  }

  .btn-contact img {
    width: 22px;
    height: 22px;
  }

  .footer-info-title {
    font-size: 0.85rem;
  }

  .footer-info-subtitle {
    font-size: 0.7rem;
  }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 40px 0;
  }

  .hero-content {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 1.75rem;
  }
}

/* Content Page Styles */
section.content {
  background-color: #ffffff;
  min-height: 100vh;
}

/* Navbar for content pages - solid background */
body:has(section.content) .unified-header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

/* title, subtitle, content */

h1.title-content {
  color: #212529;
  font-weight: 700;
  font-size: 30px;
}
h2.sub-title-content {
  color: #212529;
  font-weight: 500;
  font-size: 24px;
}
p.content {
  color: #212529;
  font-weight: 400;
  font-size: 18px;
}

button.download-document {
  background-color: #043873;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* FAQ Accordion Styling */
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 16px;
  background: #f6f6f6;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 61, 130, 0.12);
  transform: translateY(-2px);
}

.faq-item .accordion-button {
  background: #f6f6f6;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  padding: 24px 30px;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-item .accordion-button:not(.collapsed) {
  background: #ffffff;
  color: #003d82;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-item .accordion-button::after {
  background-image: url("../svg/si_arrow-left-fill.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.faq-item .accordion-button:hover::after {
  transform: rotate(5deg) scale(1.1);
}

.faq-item .accordion-button:not(.collapsed)::after {
  background-image: url("../svg/si_arrow-left-fill_down.svg");
  transform: rotate(90deg) scale(1.15);
  opacity: 1;
}

.faq-item .accordion-button:not(.collapsed):hover::after {
  transform: rotate(95deg) scale(1.2);
}

.faq-number {
  font-size: 28px;
  font-weight: 700;
  color: #003d82;
  min-width: 50px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item .accordion-button:hover .faq-number {
  transform: scale(1.1);
  color: #043873;
}

.faq-item .accordion-button:not(.collapsed) .faq-number {
  color: #043873;
}

.faq-question {
  flex: 1;
  text-align: left;
  color: #003d82;
  transition: color 0.3s ease;
}

.faq-item .accordion-button:hover .faq-question {
  color: #043873;
}

.faq-item .accordion-button:not(.collapsed) .faq-question {
  color: #003d82;
}

.faq-item .accordion-collapse {
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item .accordion-body {
  padding: 30px;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  color: #212529;
  animation: fadeInContent 0.5s ease-in-out;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item .accordion-body p {
  margin-bottom: 15px;
}

.faq-item .accordion-body p:last-child {
  margin-bottom: 0;
}

/* Responsive FAQs */
@media (max-width: 991px) {
  .faq-header h1 {
    font-size: 36px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-item .accordion-button {
    padding: 20px 24px;
    font-size: 15px;
  }

  .faq-number {
    font-size: 24px;
    min-width: 45px;
  }

  .faq-item .accordion-body {
    padding: 24px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq-header h1 {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-item .accordion-button {
    padding: 16px 20px;
    font-size: 14px;
    gap: 12px;
  }

  .faq-number {
    font-size: 20px;
    min-width: 35px;
  }

  .faq-item .accordion-body {
    padding: 20px;
    font-size: 14px;
  }

  .faq-item .accordion-button::after {
    width: 36px;
    height: 36px;
  }
}

/* Contact Us Page Styles */

.contact-info-item {
  margin-bottom: 40px;
}

.contact-info-item h5 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.contact-info-item p {
  color: #212529;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 5px;
}

.contact-info-item a {
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-info-item a:hover {
  color: #4f9cf9;
}

.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-form-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.contact-form-wrapper .form-label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.contact-form-wrapper .form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  border-color: #4f9cf9;
  box-shadow: 0 0 0 0.2rem rgba(79, 156, 249, 0.15);
  outline: none;
}

.contact-form-wrapper .form-control::placeholder {
  color: #aaa;
  font-size: 14px;
}

.contact-form-wrapper .btn-dark {
  background-color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form-wrapper .btn-dark:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Icons Styling */
.contact-icon .rounded-circle {
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon .rounded-circle {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(79, 156, 249, 0.3);
}

/* Responsive Content Section & Contact Page */
@media (max-width: 991px) {
  #content h1 {
    font-size: 36px;
  }

  #content h5 {
    font-size: 18px;
  }

  #content p {
    font-size: 15px;
  }

  #pdf-document iframe {
    height: 600px !important;
  }

  .contact-info-item {
    margin-bottom: 30px;
  }

  .contact-form-wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  #content h1 {
    font-size: 28px;
  }

  #content h5 {
    font-size: 16px;
  }

  #content p {
    font-size: 14px;
  }

  #pdf-document iframe {
    height: 500px !important;
  }

  .contact-info-item h5 {
    font-size: 18px;
  }

  .contact-info-item p,
  .contact-info-item a {
    font-size: 14px;
  }

  .contact-form-wrapper {
    padding: 20px !important;
  }

  .contact-form-wrapper h3 {
    font-size: 20px;
  }

  .contact-icon .rounded-circle {
    width: 40px !important;
    height: 40px !important;
  }

  .contact-icon .rounded-circle svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 575px) {
  .mission-card-icon {
    margin: 0 auto;
  }
}
.btn-primary {
  background-color: #043873;
  border-color: #043873;
}

/* Footer Section Styles */
.footer-section {
  background: #f2f2f2;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo-section {
  flex-shrink: 0;
}

.footer-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.footer-text-section {
  text-align: left;
  max-width: 600px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.footer-subtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-text-section {
    text-align: center;
  }

  .footer-logo {
    width: 100px;
    height: 100px;
  }

  .footer-section {
    padding: 2rem 0 1.5rem;
    margin-top: 3rem;
  }
}
