html {
  scroll-behavior: smooth;
}
:root {
  --NavyBlue: #083563;
  --RoyalBlue: #1877f2;
  --skyblue: #1fa2ff;
  --AquaBlue: #4dd0e1;
  --text: #1c2c3a;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  background: #fafbfc;
  color: var(--text);
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
header {
  background: #1a202c;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffffe0 !important;
  backdrop-filter: blur(12px);
}
.logo {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 2px;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #4299e1;
}
nav .btn-dark {
  background-color: #09386a;
  border-color: #09386a;
}
nav .btn-dark:hover {
  background-color: #0a4b8f;
}

/* Navigation Link Styling */
.navbar-nav .nav-link {
  color: var(--text) !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--RoyalBlue) !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
  color: var(--RoyalBlue) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--RoyalBlue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.navbar-nav .nav-link.active::after {
  width: 80%;
  background: var(--RoyalBlue);
}

/* Modern Logo Styling */
#logo {
  text-decoration: none !important;
  transition: all 0.3s ease;
}

#logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

#logo:hover .logo-icon::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.logo-letter {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
  align-items: flex-start;
}

.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a202c;
  /* letter-spacing: -0.5px; */
  margin-bottom: 2px;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: #4299e1;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Responsive Logo */
@media (max-width: 768px) {
  .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .logo-letter {
    font-size: 1.2rem;
  }

  .logo-name {
    font-size: 1.1rem;
  }

  .logo-tagline {
    font-size: 0.6rem;
  }
}

@media (max-width: 576px) {
  .logo-tagline {
    display: none;
  }
}
/* Hero Banner Styles - Traditional */
.hero-banner {
  background: linear-gradient(135deg, #f1f1f9, #f6f9fb);
  backdrop-filter: blur(6px);
  padding: 80px 0;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  margin: 15px;
  border-radius: 20px;
}
.gradiant_text {
  background: linear-gradient(90deg, #083563, #1877f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.task-image {
  position: absolute;
  top: 46%;
  transform: rotate(-7deg);
  left: 4px;
  z-index: 2;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
  overflow: hidden;
}
.workspace-image {
  position: absolute;
  top: 56%;
  transform: rotate(-7deg);
  right: -14px;
  z-index: 2;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
  overflow: hidden;
}
.kpi-image {
  position: absolute;
  top: 26%;
  transform: rotate(7deg);
  right: -14px;
  z-index: 2;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
  overflow: hidden;
}
.kpi-image img {
  max-width: 200px;
}
.hero-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(ellipse, rgb(21 109 220 / 13%) 0%, #00000000 60%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.hero-banner::after {
  content: "TiTaPro";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(66, 153, 225, 0.2);
  text-stroke: 1px rgba(66, 153, 225, 0.2);
  letter-spacing: -0.05em;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hero-svg {
  position: absolute;
  pointer-events: none;
  opacity: 0.8;
}

.hero-svg-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 10%;
  animation: float-1 8s ease-in-out infinite;
}

.hero-svg-2 {
  width: 60px;
  height: 60px;
  top: 25%;
  right: 15%;
  animation: float-2 12s ease-in-out infinite;
}

.hero-svg-3 {
  width: 70px;
  height: 70px;
  bottom: 30%;
  left: 8%;
  animation: float-3 10s ease-in-out infinite;
}

.hero-svg-4 {
  width: 90px;
  height: 90px;
  top: 10%;
  right: 8%;
  animation: float-4 15s ease-in-out infinite;
}

.hero-svg-5 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 12%;
  animation: float-5 9s ease-in-out infinite;
}

.hero-svg-6 {
  width: 85px;
  height: 85px;
  top: 40%;
  left: 5%;
  animation: float-6 11s ease-in-out infinite;
}

.hero-svg-7 {
  width: 120px;
  height: 120px;
  top: 50%;
  right: 5%;
  animation: float-7 7s ease-in-out infinite;
}

@keyframes float-1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(5deg);
  }
  50% {
    transform: translate(-5px, -10px) rotate(-3deg);
  }
  75% {
    transform: translate(-8px, 5px) rotate(2deg);
  }
}

@keyframes float-2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-12px, 8px) rotate(-4deg);
  }
  66% {
    transform: translate(8px, -12px) rotate(3deg);
  }
}

@keyframes float-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(15px, -20px) scale(1.1);
  }
}

@keyframes float-4 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(5px, -8px) rotate(2deg);
  }
  40% {
    transform: translate(-8px, -5px) rotate(-3deg);
  }
  60% {
    transform: translate(-3px, 10px) rotate(1deg);
  }
  80% {
    transform: translate(10px, 3px) rotate(-1deg);
  }
}

@keyframes float-5 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-10px, -8px) rotate(-2deg);
  }
  75% {
    transform: translate(8px, 12px) rotate(3deg);
  }
}

@keyframes float-6 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(12px, -5px);
  }
  70% {
    transform: translate(-8px, 8px);
  }
}

@keyframes float-7 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-15px, 10px) rotate(5deg);
  }
}
.navbar-brand img {
  max-width: 130px;
}
.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 1rem;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, #083563 0%, #1877f2 100%);
  border-color: #083563;
  box-shadow: 0 4px 14px rgba(66, 153, 225, 0.3);
}

.hero-actions .btn-primary:hover {
  background: linear-gradient(135deg, #1877f2 0%, #083563 100%);
  border-color: #3182ce;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
}

.hero-actions .btn-outline-primary {
  color: #083563;
  border-color: #083563;
}

.hero-actions .btn-outline-primary:hover {
  background: #083563;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(66, 153, 225, 0.3);
}

/* Trusted By Section - Traditional */
.trusted-by-section {
  background: #09386a;
  padding: 60px 0;
  border-bottom: 1px solid #e2e8f0;
  margin: 15px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.trusted-by-section::before,
.final-cta-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../img/bg-logostrip.png");
  background-size: cover;
  height: 200px;
  width: 200px;
  opacity: 0.2;
}

.trusted-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #d3d3d3;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.client-logos {
  margin: 0 auto;
  padding: 20px 0;
}

/* Client Logo Styles */
.client-logo-item {
  padding: 7px 20px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.client-logo-item:hover {
  background: #fff;
  border-color: #4299e1;
  box-shadow: 0 2px 8px rgba(66, 153, 225, 0.1);
  transform: translateY(-2px);
}

.client-logo-img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-logo-item:hover .client-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for logos */
@media (max-width: 768px) {
  .client-logo-item {
    height: 60px;
    padding: 15px;
  }

  .client-logo-img {
    /* Responsive styling */
  }

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

  .client-logo-item:nth-child(1) .logo-text {
    font-size: 0.9rem;
  }

  .client-logo-item:nth-child(2) .logo-text {
    font-size: 1rem;
  }

  .client-logo-item:nth-child(3) .logo-text {
    font-size: 0.8rem;
  }

  .client-logo-item:nth-child(4) .logo-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .client-logo-item {
    height: 50px;
    padding: 10px;
  }

  .client-logo-img {
    /* Mobile responsive styling */
  }

  .logo-text {
    font-size: 0.8rem;
  }

  .client-logo-item:nth-child(1) .logo-text {
    font-size: 0.9rem;
  }

  .client-logo-item:nth-child(2) .logo-text {
    font-size: 1rem;
  }

  .client-logo-item:nth-child(3) .logo-text {
    font-size: 0.7rem;
  }

  .client-logo-item:nth-child(4) .logo-text {
    font-size: 0.8rem;
  }
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .client-logo-item {
    height: 60px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-banner {
    padding: 60px 0;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Utility Classes */
.min-vh-75 {
  min-height: 75vh;
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-actions {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.client-logo-item {
  animation: fadeInUp 0.6s ease-out;
}

.client-logo-item:nth-child(1) {
  animation-delay: 0.1s;
}
.client-logo-item:nth-child(2) {
  animation-delay: 0.2s;
}
.client-logo-item:nth-child(3) {
  animation-delay: 0.3s;
}
.client-logo-item:nth-child(4) {
  animation-delay: 0.4s;
}

.features {
  padding: 60px 0;
  background: #fff;
}
.features-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  color: #2d3748;
}
.about {
  padding: 60px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  text-align: center;
}
.contact {
  padding: 60px 0;
  background: #ffffff;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}
.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.contact button {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(66, 153, 225, 0.3);
}
.contact button:hover {
  background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
}
footer {
  background: #222;
  color: #fff;
  padding: 20px 0;
  font-size: 1rem;
}
@media (max-width: 800px) {
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  header .container,
  .hero .container,
  .features .container,
  .about .container,
  .contact .container,
  footer .container {
    width: 95%;
  }
}

/* Section 3: Why Growing Teams Struggle */
.struggle-section {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  padding: 80px 0;
  border: 1px solid #e2e8f0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin: 15px;
  border-radius: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c2c3a;
  margin-bottom: 3rem;
  text-align: center;
}

.struggle-points {
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.struggle-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  animation: slideInLeft 0.6s ease-out;
}

.struggle-item:last-child {
  border-bottom: none;
}

.struggle-item:hover {
  background: #f8f9fa;
  padding-left: 1rem;
  border-radius: 6px;
}

.struggle-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  min-width: 40px;
  text-align: center;
}

.struggle-text {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
  flex: 1;
}

.solution-box {
  background-color: #083563;
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
  animation: slideInUp 0.8s ease-out 0.5s both;
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

/* Animation for struggle items */
.struggle-item:nth-child(1) {
  animation-delay: 0.1s;
}
.struggle-item:nth-child(2) {
  animation-delay: 0.2s;
}
.struggle-item:nth-child(3) {
  animation-delay: 0.3s;
}
.struggle-item:nth-child(4) {
  animation-delay: 0.4s;
}
.struggle-item:nth-child(5) {
  animation-delay: 0.5s;
}

/* Animation keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Section 3 */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .struggle-text {
    font-size: 1rem;
  }

  .solution-title {
    font-size: 1.3rem;
  }

  .struggle-item {
    padding: 0.8rem 0;
  }

  .struggle-icon {
    font-size: 1.3rem;
    min-width: 35px;
  }
}

@media (max-width: 576px) {
  .struggle-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .struggle-points {
    margin-bottom: 2rem;
  }

  .solution-box {
    padding: 1.5rem;
  }

  .solution-title {
    font-size: 1.2rem;
  }
}

/* Section 4: The 4-Part Self-Operating Workforce Framework */
.framework-section {
  padding: 100px 0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

/* Add to your CSS file */
.framework-card {
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
  padding: 2rem 1.5rem;
  position: relative;
}
.framework-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
}
.framework-number {
  font-size: 2.5rem;
  font-weight: bold;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}
.framework-quote {
  background: #f1f5f9;
  border-left: 4px solid #38bdf8;
  padding: 1rem;
  margin-top: 1.5rem;
  font-style: italic;
  color: #334155;
  border-radius: 8px;
}
.framework-icon {
  font-size: 2rem;
  color: #38bdf8;
}

.framework-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 2rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.pain-point {
  background: linear-gradient(135deg, #fef5e7 0%, #fed7aa 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #ed8936;
  position: relative;
  box-shadow: 0 2px 8px rgba(237, 137, 54, 0.1);
}

.pain-point h4 {
  color: #c05621;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pain-point h4::before {
  content: "⚠️";
  font-size: 1rem;
}

.pain-point p {
  color: #7c2d12;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.solution {
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #38a169;
  position: relative;
  box-shadow: 0 2px 8px rgba(56, 161, 105, 0.1);
}

.solution h4 {
  color: #2f855a;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.solution h4::before {
  content: "💡";
  font-size: 1rem;
}

.solution ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.solution li {
  color: #22543d;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.solution li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #38a169;
  font-weight: 700;
  font-size: 1.1rem;
}

.framework-quote {
  background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
  padding: 1.5rem;
  border-radius: 12px;
  font-style: italic;
  color: #2c5282;
  font-weight: 600;
  text-align: center;
  border-left: 4px solid #4299e1;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  box-shadow: 0 2px 8px rgba(66, 153, 225, 0.1);
}

.framework-quote::before {
  content: '"';
  font-size: 2rem;
  color: #4299e1;
  position: absolute;
  top: -5px;
  left: 15px;
  font-family: serif;
}

.framework-quote::after {
  content: '"';
  font-size: 2rem;
  color: #4299e1;
  position: absolute;
  bottom: -15px;
  right: 15px;
  font-family: serif;
}

/* Individual card color variations */
.framework-card:nth-child(1)::before {
  background: linear-gradient(90deg, #4299e1, #3182ce);
}

.framework-card:nth-child(2)::before {
  background: linear-gradient(90deg, #38b2ac, #319795);
}

.framework-card:nth-child(3)::before {
  background: linear-gradient(90deg, #9f7aea, #805ad5);
}

.framework-card:nth-child(4)::before {
  background: linear-gradient(90deg, #ed8936, #dd6b20);
}

/* Card-specific quote styling */
.framework-card:nth-child(2) .framework-quote {
  background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
  border-left-color: #38b2ac;
}

.framework-card:nth-child(2) .framework-quote::before,
.framework-card:nth-child(2) .framework-quote::after {
  color: #38b2ac;
}

.framework-card:nth-child(3) .framework-quote {
  background: linear-gradient(135deg, #faf5ff 0%, #e9d8fd 100%);
  border-left-color: #9f7aea;
}

.framework-card:nth-child(3) .framework-quote::before,
.framework-card:nth-child(3) .framework-quote::after {
  color: #9f7aea;
}

.framework-card:nth-child(4) .framework-quote {
  background: linear-gradient(135deg, #fffaf0 0%, #fbd38d 100%);
  border-left-color: #ed8936;
}

.framework-card:nth-child(4) .framework-quote::before,
.framework-card:nth-child(4) .framework-quote::after {
  color: #ed8936;
}

/* Animation for framework cards */
.framework-card {
  animation: slideInUp 0.6s ease-out;
}

.framework-card:nth-child(1) {
  animation-delay: 0.1s;
}
.framework-card:nth-child(2) {
  animation-delay: 0.2s;
}
.framework-card:nth-child(3) {
  animation-delay: 0.3s;
}
.framework-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsive Design for Section 4 */
@media (max-width: 768px) {
  .framework-section {
    padding: 60px 0;
  }

  .framework-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .framework-title {
    font-size: 1.1rem;
  }

  .framework-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .framework-card {
    padding: 1.2rem;
  }

  .framework-title {
    font-size: 1rem;
  }

  .pain-point,
  .solution,
  .framework-quote {
    padding: 0.8rem;
  }

  .solution ul {
    padding-left: 1rem;
  }
}

/* Section 5: Real Use Cases */
/* Base styles for use case cards */
.usecases-section {
  padding: 80px 0;
}
.usecase-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: left; /* FIX: left-align for better readability */
}
.usecase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e0;
}

/* Benefits inside the cards */
.usecase-benefit {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  color: #083563;
  background: rgba(31, 162, 255, 0.08);
  border-radius: 12px;
  border-left: 3px solid #1fa2ff;
  font-weight: 500;
  transition: all 0.3s ease;
}
.usecase-benefit i {
  color: #1877f2;
  margin-right: 1rem;
  font-size: 1.2rem;
}
.usecase-benefit:hover {
  background: rgba(31, 162, 255, 0.15);
}

/* Tab Navigation Styling */
.custom-tabs .nav-link {
  color: #fff;
  background: #083563;
  border-radius: 30px;
  padding: 10px 20px;
  margin: 0 6px;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 6px;
  transition: all 0.3s ease;
}
.custom-tabs .nav-link:hover,
.custom-tabs .nav-link.active {
  background: linear-gradient(45deg, #1877f2, #1fa2ff, #4dd0e1);
  box-shadow: 0 4px 12px rgba(31, 162, 255, 0.4);
  color: #fff;
}

/* Image inside card */
.usecase-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.result-number {
  font-weight: bold;
  font-size: 20px;
  color: var(--NavyBlue);
}

/* Section 6: Client Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 80px 0;
  border-bottom: 1px solid #dee2e6;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--NavyBlue), var(--RoyalBlue));
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote i {
  color: var(--RoyalBlue);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-quote p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #2d3748;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--RoyalBlue);
}

.testimonial-card:nth-child(2) .testimonial-quote i {
  color: #f093fb;
}

.testimonial-card:nth-child(2) .testimonial-quote p {
  border-left-color: #f093fb;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--NavyBlue), var(--RoyalBlue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  color: #fff;
  font-size: 1.5rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 0.3rem 0;
}

.author-title {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
  font-weight: 500;
}

/* Animation for testimonial cards */
.testimonial-card {
  animation: slideInUp 0.8s ease-out;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

/* Responsive Design for Section 6 */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

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

  .testimonial-quote p {
    font-size: 1.1rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .author-avatar i {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 1.5rem 1rem;
  }

  .testimonial-quote p {
    font-size: 1rem;
    padding-left: 0.8rem;
  }

  .testimonial-quote i {
    font-size: 1.5rem;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-title {
    font-size: 0.85rem;
  }
}

/* Section 7: Pricing */
.pricing-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  border-bottom: 1px solid #dee2e6;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--RoyalBlue);
  box-shadow: 0 12px 40px rgba(66, 153, 225, 0.2);
  padding-top: 3.5rem;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--NavyBlue), var(--RoyalBlue));
  color: #fff;
  padding: 10px 24px 6px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
  z-index: 10;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--skyblue);
}

.amount {
  font-size: 3rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: #718096;
  font-weight: 500;
}

.pricing-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 0.5rem 0;
  color: #2d3748;
}

.feature-item i {
  color: #38a169;
  margin-right: 0.8rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-item span {
  font-weight: 500;
  font-size: 0.95rem;
  text-align: left;
}

.pricing-action {
  margin-top: auto;
}

.pricing-action .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pricing-action .btn-primary {
  background: linear-gradient(135deg, var(--NavyBlue), var(--RoyalBlue));
  border: none;
}

.pricing-action .btn-primary:hover {
  background: linear-gradient(135deg, var(--NavyBlue), var(--RoyalBlue));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.pricing-action .btn-outline-primary {
  color: var(--NavyBlue);
  border-color: var(--NavyBlue);
}

.pricing-action .btn-outline-primary:hover {
  background: var(--NavyBlue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Animation for pricing cards */
.pricing-card {
  animation: slideInUp 0.8s ease-out;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}
.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}
.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Responsive Design for Section 7 */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .plan-name {
    font-size: 1.3rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .currency {
    font-size: 1.3rem;
  }

  .feature-item span {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .pricing-card {
    padding: 1.5rem 1rem;
  }

  .plan-name {
    font-size: 1.2rem;
  }

  .amount {
    font-size: 2rem;
  }

  .currency {
    font-size: 1.1rem;
  }

  .period {
    font-size: 0.9rem;
  }

  .feature-item {
    margin-bottom: 0.8rem;
  }

  .feature-item span {
    font-size: 0.85rem;
  }

  .pricing-action .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Section 8: FAQs */
.faq-section {
  padding: 80px 0;
}

.accordion-item {
  background: #fff;
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.accordion-button {
  background: #fff;
  border: none;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--NavyBlue), var(--RoyalBlue));
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: 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='%232d3748'%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");
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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-button i {
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) i {
  color: #fff;
}

.accordion-body {
  padding: 2rem;
  background: #fff;
}

.faq-answer p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.faq-answer p strong {
  color: #2d3748;
  font-weight: 700;
}

.security-features,
.integration-features,
.trial-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.security-item,
.integration-item,
.trial-item {
  display: flex;
  align-items: center;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.security-item:hover,
.integration-item:hover,
.trial-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.security-item i,
.integration-item i,
.trial-item i {
  color: var(--RoyalBlue);
  margin-right: 0.8rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.security-item span,
.integration-item span,
.trial-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d3748;
}

/* Animation for FAQ items */
.accordion-item {
  animation: slideInUp 0.6s ease-out;
}

.accordion-item:nth-child(1) {
  animation-delay: 0.1s;
}
.accordion-item:nth-child(2) {
  animation-delay: 0.2s;
}
.accordion-item:nth-child(3) {
  animation-delay: 0.3s;
}

/* Responsive Design for Section 8 */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .accordion-button {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .accordion-body {
    padding: 1.5rem;
  }

  .security-features,
  .integration-features,
  .trial-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .security-item,
  .integration-item,
  .trial-item {
    padding: 0.6rem;
  }

  .security-item span,
  .integration-item span,
  .trial-item span {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .accordion-button {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .accordion-button i {
    font-size: 1rem;
    margin-right: 0.8rem;
  }

  .accordion-body {
    padding: 1.2rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .security-item,
  .integration-item,
  .trial-item {
    padding: 0.5rem;
  }

  .security-item i,
  .integration-item i,
  .trial-item i {
    font-size: 0.9rem;
    margin-right: 0.6rem;
  }

  .security-item span,
  .integration-item span,
  .trial-item span {
    font-size: 0.8rem;
  }
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(
    135deg,
    var(--RoyalBlue) 0%,
    var(--NavyBlue) 100%
  );
  padding: 80px 0 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 15px;
  border-radius: 20px;
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.final-cta-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.final-cta-actions {
  margin-top: 2rem;
  margin-bottom: 0;
}

.final-cta-actions .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.final-cta-actions .btn-primary {
  background: #ffffff;
  color: var(--NavyBlue);
  border-color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

.final-cta-actions .btn-primary:hover {
  background: #f7fafc;
  color: var(--RoyalBlue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.final-cta-actions .btn-outline-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.final-cta-actions .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Final CTA */
@media (max-width: 768px) {
  .final-cta-section {
    padding: 60px 0 60px 0;
  }

  .final-cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .final-cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .final-cta-actions .btn {
    padding: 12px 25px;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-actions .btn:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .final-cta-title {
    font-size: 1.8rem;
  }

  .final-cta-subtitle {
    font-size: 1rem;
  }
}

/* Book Demo Page Styles */
.book-demo-section {
  background: linear-gradient(135deg, #fdf5ff 0%, #f2faff 100%);
  padding: 100px 0;
  min-height: 80vh;
}

.demo-header {
  margin-bottom: 3rem;
}

.demo-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.demo-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.demo-form-container {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.form-section-title {
  color: #4299e1;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.form-label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #4299e1;
  box-shadow: 0 0 0 0.2rem rgba(66, 153, 225, 0.25);
}

.demo-benefits-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4299e1, #3182ce);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 1.5rem;
}

.benefit-card h4 {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.alert {
  border-radius: 8px;
  padding: 1rem 1.5rem;
  border: none;
  font-weight: 500;
}

.alert-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

.alert-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #fff;
  padding: 60px 0 30px 0;
  border-top: 1px solid #4a5568;
  margin: 15px;
  border-radius: 20px;
}

.footer-main {
  padding: 60px 0 40px 0;
}

.footer-section {
  margin-bottom: 2rem;
}

/* Footer Logo Container */
.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--NavyBlue) 0%,
    var(--RoyalBlue) 100%
  );
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-logo-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.footer-logo-tagline {
  font-size: 0.8rem;
  color: #a0aec0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}

/* Legacy footer logo (hidden) */
.footer-logo {
  display: none;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a0aec0;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--RoyalBlue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(66, 153, 225, 0.4);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--RoyalBlue);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--RoyalBlue);
  width: 16px;
  text-align: center;
}

.contact-item a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--RoyalBlue);
}

.contact-item span {
  color: #a0aec0;
}

.footer-bottom {
  background: #1a202c;
  padding: 20px 0;
  border-top: 1px solid #4a5568;
}

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

.footer-legal {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-legal a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--RoyalBlue);
}
.framework-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.framework-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.framework-section .rounded-circle {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.bg-NavyBlue {
  background-color: var(--NavyBlue) !important;
}
.bg-RoyalBlue {
  background-color: var(--RoyalBlue) !important;
}
.bg-skyblue {
  background-color: var(--skyblue) !important;
}
.bg-AquaBlue {
  background-color: var(--AquaBlue) !important;
}
.dashboard {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #0c468924;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: -webkit-fill-available;
}
section.our-mission-vision {
  padding-top: 60px;
  position: relative;
}
.our-mission {
  position: sticky;
  top: 100px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
}
.our-mission .info-card {
  background-color: var(--NavyBlue);
  color: #fff;
  padding: 35px;
  height: 100%;
}
.our-mission.vision .info-card {
  overflow: hidden;
}
.our-mission .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-mission .info-icon {
  background-color: var(--skyblue);
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 22px;
}
.our-mission .info-icon img {
  max-width: 50px;
}
.our-mission .info-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.our-mission .info-text {
  font-size: 16px;
}
.our-mission .section-img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 500px;
}
.our-mission .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
.mx-w-800 {
  max-width: 800px;
  margin: 0 auto;
}
.integration-section .card {
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100% !important;
  border: 1px solid #edf0f3 !important;
}
.integration-section .card .btn {
  margin-top: auto;
  background-color: var(--NavyBlue);
  color: #fff;
  border-radius: 8px;
  padding: 6px 20px;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.integration-section .card .btn:hover {
  background-color: var(--RoyalBlue);
}
.integration-section .card:hover {
  transform: translateY(-5px);
}
.dashboard-slider {
  width: 100%;
  height: auto;
  margin-top: 30px;
}
.dashboard-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.dashboard-slider .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.integration-logo {
  height: 60px;
  width: 120px;
  object-fit: contain;
}
/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px 0;
  }

  .footer-section {
    margin-bottom: 2.5rem;
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
    margin-top: 1rem;
    gap: 1.5rem;
  }

  .footer-copyright {
    text-align: left;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    font-size: 1.8rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
    text-align: left;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }
  .navbar-nav .nav-link.active::after{
    content: none;
  }
}
