* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  overflow: hidden;
  overflow-y: auto;
}
body {
  font-family: "poppins", sans-serif;
  background-color: #f8fafc;
  overflow: hidden;
  overflow-y: auto;
}
 

.demo-button {
  background-color: #1a5cff;
  color: #fff;
  padding: 12px 28px;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
/* Hero Section */
.hero {
  height: fit-content;
  background-color: #f8fafc;
  margin-top: 40px;
  background-image: url(images/Bg.jpg);
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: overlay;
  background-repeat: repeat;
}

.hero .hero-container {
  margin-top: 40px;
  padding-top: 0;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: flex-start;
}

.hero-content {
  padding-top: 0;
  /* max-width: 600px; */
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  width: 40%;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  color: #1e293b !important;
  line-height: 48px;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-title .highlight {
  color: #eff0f1;
  background: linear-gradient(135deg, #3b82f6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* .india-text {
  font-size: 44px;
  font-weight: bold;
  font-family: "poppins", sans-serif;
  display: flex;
  gap: 4px;
} */
.header-section {
  display: flex;
  justify-content: space-between;
}
.letter {
  display: inline-block;
}

.saffron {
  color: #f78b77;
  /* Indian saffron */
}

.green {
  color: #45c4a0;
  /* Dark green */
}

.white-bordered {
  color: white;
  /* padding: 0 10px; */
  box-sizing: border-box;
  border-radius: 4px;
  /* text */
}

.info-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #333;
  /* line-height: 1.6; */
  margin-bottom: 10px;
}

.highlight {
  color: #007bff;
  /* Bootstrap-like blue */
  font-weight: 600;
}

strong {
  font-weight: 700;
  color: #000;
}

.features-list {
  /* width: 500px; */
  margin-bottom: 2rem;
  background-color: white;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

.feature-item span {
  font-size: 18px;
  font-family: inter, sans-serif;
  text-align: left;
}

.feature-item:nth-child(1) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.checkmark {
  width: 24px;
  height: 24px;
  /* background: #10b981; */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.feature-highlight {
  color: #3b82f6;
  font-weight: 900;
  font-size: 18px;
  font-family: inter, sans-serif;
}

.hero-description {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.primary-button {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.primary-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.secondary-button {
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

.secondary-button:hover {
  background: #10b981;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.trust-indicators-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 16px;
  margin-bottom: 20px;
  justify-content: center;
}

.trust-item-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  font-family: "Inter";
  color: #66a5ec;
  border-radius: 4px;
  background-color: #ffffff;
}

.trust-icon-mobile {
  width: 14px;
  height: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.trust-item {
  gap: 0.75rem;
  color: #64748b;
  background-color: white;
  font-size: 0.875rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.trust-item:nth-child(1) {
  animation-delay: 0.8s;
}

.trust-item:nth-child(2) {
  animation-delay: 1s;
}

.trust-item:nth-child(3) {
  animation-delay: 1.2s;
}

.trust-icon {
  color: #3b82f6;
  font-size: 1rem;
}

.trust-icon {
  color: #3b82f6;
  font-size: 1rem;
}

/* Dashboard Mockup */
.dashboard-mockup {
  width: 60%;
  background: rgb(220, 231, 244);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  /* height: 215px; */
}

.dashboard-container {
  background-color: white;
  border-radius: 8px;
}

.dashboard-header {
  /* margin-bottom: 1.5rem; */
  position: relative;
  border-radius: 30px;
}

.dashboard-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.dashboard-subtitle {
  font-family: "Inter", sans-serif;
  color: #64748b;
  font-size: 0.875rem;
  /* margin-bottom: 1rem; */
}

.live-badge {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.25rem;
  color: #10b981;
  font-weight: 500;
  font-size: 0.625rem;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

/* NAAC Ready Popup */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* .naac-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
} */

/* .naac-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: blink 2s infinite;
} */

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0.3;
  }
}

.naac-title {
  font-weight: 600;
  color: #1e293b;
}

.naac-subtitle {
  font-family: "Inter", sans-serif;
  color: #64748b;
  font-size: 0.625rem;
  margin-bottom: 0.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem;
}

.stat-card {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.stat-value.blue {
  color: #3b82f6;
}

.stat-value.green {
  color: #45c4a0;
}

.stat-value.orange {
  color: #f59e0b;
}

.stat-bar {
  height: 4px;
  border-radius: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  animation: fillBar 1s ease 1.5s forwards;
}

@keyframes fillBar {
  to {
    transform: scaleX(1);
  }
}

.stat-bar.blue {
  background: #3b82f6;
}

.stat-bar.green {
  background: #45c4a0;
}

.stat-bar.orange {
  background: #f59e0b;
}

.dashboard-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.section-title {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  margin-left: 1rem;
}

.view-all {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-right: 1rem;
}

.review {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.2s ease;
  margin: auto;
}

.resolve {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.2s ease;
  margin: auto;
}

.app-cards {
  /* min-width: 1200px; */
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* justify-content: space-between; */
  width: auto;
  flex-direction: row;
  gap: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.app-card {
  /* padding: 1rem; */
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  /* width: 100vw; */
  /* width: 270px;
            margin-right: 1rem; */
}

.app-card-security {
  /* padding: 1rem; */
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  /* width: 100vw; */
  /* width: 270px;
            margin-right: 1rem; */
}

.app-header-container {
  display: flex;
  align-items: center;
  /* margin-bottom: 15px; */
  width: 265px;
  padding: 15px;
}

.app-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* margin-bottom: 0.75rem; */
  margin: 20px;
}

.app-icon {
  width: 24px;
  height: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 8px;
}

.app-icon-mobile {
  width: 24px;
  height: 24px;
  /* border-radius: 20px; */
  display: flex;
  align-items: start;
  justify-content: center;
  font-size: 1rem;
  margin-right: 8px;
}

.hr {
  opacity: unset !important;
}

.app-icon.blue {
  background: #dbeafe;
}

.app-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.app-desc {
  font-family: "Inter", sans-serif;
  color: #64748b;
  font-size: 0.75rem;
}

.app-status-list {
  display: flex;
  flex-direction: column;
}

.status-item {
  /* background-color: rgb(138, 138, 138); */
  background-color: rgb(138 138 138 / 7%);
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 0.75rem;
  margin-bottom: 10px;
  border-radius: 4px;
  /* padding-right: 7px; */
  margin: 10px;
}

.status-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-icon {
  font-size: 0.75rem;
}

.status-item.approved .status-icon {
  color: #10b981;
}

.status-item.pending .status-icon {
  color: #3b82f6;
}

.status-item.warning .status-icon {
  color: #f59e0b;
}

.status-item.urgent .status-icon {
  color: #ef4444;
}

.status-text {
  font-family: "Inter", sans-serif;
  color: #64748b;
  /* background:rgb(118, 118, 118) ; */
}

.action-btn {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 1rem;
}

.action-btn:hover {
  transform: translateY(-1px);
}

.security-gate .app-header {
  margin-bottom: 1rem;
}

.security-gate {
  margin-top: 20px;
}

.status-badge {
  font-size: 0.625rem;
  color: #10b981;
  font-weight: 500;
  margin-left: auto;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 20px;
  background-color: rgb(138 138 138 / 7%);
  justify-content: space-between;
}

.user-profile-container {
  display: flex;
  gap: 15px;
  margin: 10px;
  align-items: center;
}

.auth-status-container {
  display: flex;
  /* gap: 2px; */
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 1rem;
}

.user-info {
  flex: 1;
}

.user-name {
  font-weight: 500;
  font-size: 0.875rem;
  color: #1e293b;
  margin-bottom: 0.125rem;
}

.user-details {
  font-size: 0.75rem;
  color: #64748b;
}

.auth-status {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 500;
  margin: 10px;
}

/* Trusted By Section */
.trusted-by-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.trusted-by-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
}

.logo-carousel-container {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  /* max-width: 1200px; */
}

.logo-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  animation: autoScroll 20s linear infinite;
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-carousel:hover {
  animation-play-state: paused;
}

.logo-slide {
  /* background: #fff;*/
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  min-width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-slide img {
  max-height: 60px;
  object-fit: contain;
  max-width: 120px;
}

.logo-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Carousel Dots */
.carousel-dots {
  margin-top: 20px;
}

.carousel-dots .dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background-color: #d3d3d3;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background-color: #3b82f6;
  transform: scale(1.2);
}

/* Problem Statement Section */
.problem-section {
  padding: 20px 20px;
  background-color: #fff;
  text-align: center;
}

.problem-container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

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

.problem-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.problem-title .highlight {
  color: #ef4444;
}

.problem-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #64748b;
  /* max-width: 700px; */
  margin: 0 auto;
  line-height: 1.6;
}

.stats-highlight {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 16px;
  padding: 2rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-highlight {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.sub-title {
  color: #a9a9a9;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  align-items: flex-start;
}

.problem-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 1.5rem; */
  font-size: 1.25rem;
}

.problem-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  /* align-items: flex-start; */
}

.problem-card p {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  background-color: white;
  text-align: center;
}

.testimonials-container {
  /* max-width: 1200px; */
  margin: 0 auto;
}
/* 
.testimonials-header {
  margin: 50px;
} */
.company-logo {
  width: 100px;
}
.testimonials-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.testimonials-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.video-testimonials {
  /* height: 500px; */
  display: flex;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  /* gap: 1rem; */
  margin-bottom: 3rem;
  background: rgb(220, 231, 244);
  padding: 0rem 2rem 0rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.video-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 5px solid #ebeeef;
}

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

.video-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-left: 3px solid whitesmoke;
  border-right: 3px solid whitesmoke;
  border-bottom: 3px solid whitesmoke;
}

/* .play-button {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  background: rgba(14, 102, 210, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
} */

/* .play-button:hover {
  background: white;
  transform: scale(1.1);
} */

.play-icon {
  position: relative;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 20px;
  /* background: #1d3df8; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.video-info {
  padding: 1.5rem;
  text-align: left;
}

.speaker-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.speaker-title {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.speaker-university {
  font-size: 0.75rem;
  color: #3b82f6;
  font-weight: 500;
}

/* Updated Testimonials Section */
.text-testimonials {
  position: relative;
  /* max-width: 1200px; */
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-carousel {
  display: flex;
  gap: 2rem;
  padding: 0 3rem;
  align-items: stretch;
  /* overflow: hidden; */
  /* transition: transform 0.5s ease; */
  /* animation: autoScroll 20s linear infinite; */
}

.testimonial-cards {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 350px;
  margin: 16px;
  /* overflow: hidden; */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  /* animation: autoScroll 20s linear infinite; */
}

.story-container-full {
  background: #fff;
}

.story-container {
  /* max-width: 1200px; */
  margin: 0px auto;
  background: #ecf0f6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.quotaion-founder-top {
  position: relative;
  top: -100px;
  left: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.quotaion-founder-bottom {
  position: relative;
  bottom: -100px;
  right: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.story-title {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

.story-subtitle {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.story-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.founder-image img {
  border-radius: 10px;
  max-width: 200px;
  height: auto;
  border-left: 4px solid #3498db;
  border-top: 4px solid #0dcaf0;
  margin: 20px;
}

.founder-quote {
  flex-grow: 1;
  /* padding-left: 20px; */
  font-style: oblique;
  font-family: kepler-std, serif;
  color: #34495e;
  /* background: #ecf0f1; */
  /* border-left: 4px solid #3498db; */
  padding: 15px;
  border-radius: 5px;
  font-size: 22px;
}

.founder-info {
  margin-top: 10px;
  font-size: 16px;
  color: #000000;
  text-align: left;
}

.founder-info span:first-child {
  display: block;
  font-weight: bold;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .platform-container {
    flex-direction: row;
  }

  .hero-buttons {
    /* flex-direction: column; */
    padding: 0.8px;
  }

  .app-cards {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: repeat(2, 2fr);
    gap: 2rem;
  }

  .company-section {
    grid-column: span 3;
    text-align: center;
    margin-bottom: 2rem;
  }

  .mobile-mockup-display {
    flex: 0 0 100%;
  }

  .phone-frame {
    width: 200px;
    height: 400px;
  }

  .carousel-controls {
    padding: 0 5px;
  }

  .testimonial-cards {
    background-color: #f5f5f5;
    /* Explicitly set to avoid white background */
    max-width: 350px;
    /* Adjust card width for tablet */
    margin: 15px auto;
    /* Center cards */
  }

  .video-container {
    max-width: 100%;
    /* Ensure image scales properly */
  }

  .testimonial-info {
    background-color: transparent;
    /* Prevent text-driven bg changes */
  }
}

.testimonial-cards:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.play-button-video {
  width: 40px;
  height: 40px;
  background-color: #0066ff;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: 20px;
  z-index: 10;
}

.play-button-video::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 0;
  height: 0;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.play-button-video:hover {
  cursor: pointer;
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.testimonial-info-header {
  padding: 10px;
  text-align: start;
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.testimonial-info-header h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #252222;
  font-weight: 600;
}

.testimonial-info-header p {
  font-family: "Inter", sans-serif;
  margin: 0;
  font-size: 1rem;
  color: #2a2626ab;
  line-height: 1.6;
}

.testimonial-info {
  background: #2596be;
  padding: 10px;
  text-align: center;
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-left: 3px solid whitesmoke;
  border-right: 3px solid whitesmoke;
  border-bottom: 3px solid whitesmoke;
  height: auto;
}

.testimonial-info h3 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 5px;
}

.testimonial-info .role {
  font-family: "Inter", sans-serif;
  font-size: 0.8em;
  color: white;
}

.testimonial-info .uni {
  font-family: "Inter", sans-serif;
  font-size: 0.8em;
  color: white;
}

.testimonial-info p {
  margin: 0;
  font-size: 1em;
  color: #34495e;
  line-height: 1.6;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1;
  min-width: 360px;
  position: relative;
  margin-bottom: 20px;
  /* transition: all 0.3s ease; */
  /* animation: autoScroll 20s linear infinite; */
}

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

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

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.testimonial-avatar.blue {
  background: #3b82f6;
}

.testimonial-avatar.green {
  background: #45c4a0;
}

.testimonial-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: #64748b;
}

.testimonial-quote {
  /* font-family: "Inter", sans-serif; */
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.5rem;
  font-style: italic;
  text-align: left;
  width: 300px;
}

/* .testimonial-footer {
  margin-bottom: 2rem;
  display: flex;
  align-items: start;
} */
.testimonial-image {
  display: flex;
  align-items: start;
  position: relative;
  bottom: 0px;
}

.star-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
  font-size: 1rem;
}

.divider-info-green {
  border: 2px solid #07e10f;
  /* margin: 10px 0; */
  position: absolute;
  height: 100px;
  margin-left: 10px;
  opacity: inherit;
  margin-top: -3px;
  margin-right: 10px;
}

.divider-info-blue {
  border: 2px solid #4186f4;
  margin: 10px 0;
  position: absolute;
  height: 80px;
  margin-left: 10px;
  opacity: inherit;
  margin-top: -3px;
}

.divider-info-orange {
  border: 2px solid #fc791d;
  margin: 10px 0;
  position: absolute;
  height: 80px;
  margin-left: 10px;
  opacity: inherit;
  margin-top: -3px;
}

.divider-info-violet {
  border: 2px solid #af5bf5;
  margin: 10px 0;
  position: absolute;
  height: 80px;
  margin-left: 10px;
  opacity: inherit;
  margin-top: -3px;
}

.usage-info {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 10px;
  margin-bottom: 30px;
}

.usage-check {
  width: 16px;
  height: 16px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
  color: #64748b;
  z-index: 10;
}

.carousel-nav:hover {
  background: #f8fafc;
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-50%) scale(1.1);
}

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

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

/* platform-section */
.platform-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
}

.platform-container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* .platform-cta {
  margin-bottom: 2rem;
} */
/* Container for the CTA section */
/* Container for the CTA section */
/* Section container */
.platform-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
  /* Light background for contrast */
  text-align: center;
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* CTA container */
.platform-cta {
  margin-bottom: 20px;
  /* Space between button and subtitle */
}

/* CTA button styling */
.platform-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff !important;
  background-color: #1a5cff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

/* Arrow styling */
.platform-cta-button .arrow {
  margin-left: 10px;
  font-size: 20px;
  transition: transform 0.2s ease;
}

/* Hover effects for button */
.platform-cta-button:hover {
  /* background-color: blue;  */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(64, 54, 137, 0.2);
}

/* Arrow animation on hover */
.platform-cta-button:hover .arrow {
  transform: translateX(5px);
}

/* Focus and active states */
.platform-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(35, 42, 125, 0.3);
}

.platform-cta-button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Subtitle container */
.platform-subtitle-container {
  max-width: 600px;
}

/* Subtitle styling */
.platform-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  /* Dark gray for readability */
  line-height: 1.5;
  margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .platform-section {
    padding: 30px 15px;
  }

  .platform-cta-button {
    padding: 12px 24px;
    font-size: 16px;
  }

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

/* .platform-cta-button {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.platform-cta-button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.platform-cta-button .arrow {
  transition: transform 0.3s ease;
}

.platform-cta-button:hover .arrow {
  transform: translateX(4px);
} */

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

.platform-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.platform-title .highlight {
  color: #3b82f6;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platform-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

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

.feature-column {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateY(30px);
}

.feature-column.animate {
  opacity: 1;
  transform: translateY(0);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 auto 1.5rem; */
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  opacity: 0.1;
  border-radius: inherit;
}

.feature-icon.green {
  background: #45c4a0;
  color: white;
}

.feature-icon.blue {
  background: #3b82f6;
  color: white;
}

.feature-icon.orange {
  background: #f59e0b;
  color: white;
}

.feature-icon.purple {
  background: #8b5cf6;
  color: white;
}

.feature-info {
  margin-bottom: 20px;
}

.feature-title {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  /* margin-left: 10px; */
}

.feature-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.feature-description-info {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  text-align: left;
  margin-left: 30px;
}

/* .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
} */
.feature-header {
  margin-top: 20px;
}

/* .feature-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
} */

.feature-learn-more {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: start;
  gap: 0.5rem;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  margin-top: 35px;
  margin-left: 10px;
}

.feature-learn-more:hover {
  color: #d97706;
  transform: translateX(2px);
}

.feature-learn-more .arrow {
  transition: transform 0.2s ease;
}

.feature-learn-more:hover .arrow {
  transform: translateX(3px);
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.integration-section:not(.hidden-section) {
  display: flex;
}

.integration-section {
  background-color: #e9f2fd;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "poppins", sans-serif;
  flex-wrap: wrap;
  gap: 300px;
}

.integration-content {
  max-width: 500px;
  flex-direction: column;
}

.integration-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #111;
}

.integration-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.integration-features {
  font-family: "Inter", sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
}

.integration-feature {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #222;
  margin-bottom: 12px;
}

/* .btn-check{
  height: 12px;
  width: 12px;
} */
.feature-check {
  color: #257bff;
  margin-right: 10px;
  font-weight: bold;
}

.integration-diagram {
  height: 300px;
  width: 300px;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "poppins", sans-serif;
}

.cta-container {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  /* max-width: 800px; */
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.cta-button-explore {
  font-family: "Inter", sans-serif;
  background-color: #1a73e8;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;

  gap: 6px;
}

.cta-button {
  background-color: #1a73e8;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-button:hover {
  background-color: #1669d2;
}

.cta-subtext {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  /* ensures it's placed on the next line with spacing */
}

/* Custom Built Section */
.custom-built-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.custom-built-container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

.custom-built-header {
  text-align: center;
  margin-bottom: 3rem;
}

.custom-built-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.custom-built-title .highlight {
  color: #3b82f6;
}

.custom-built-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Campus Tabs */
.campus-tabs {
  display: flex;
  justify-content: center;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 8px;
  /* space between icon and text */
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  font-weight: 500;
}

.tab-button:hover {
  background: #f1f5f9;
  color: #3b82f6;
}

.tab-button.active {
  color: #3b82f6;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.tab-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Tab Content */
.tab-content-container {
  position: relative;
  min-height: 400px;
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #dce7f4;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-left {
  max-width: 500px;
}

.content-icon {
  width: 70px;
  height: 70px;
  background: #dbeafe;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.content-description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.perfect-for h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.perfect-for-list {
  list-style: none;
  padding: 0;
}

.perfect-for-list li {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Stats Indicators */
/* .stats-indicators {
  display: flex;
  gap: 2rem;
  justify-content: center;
} */

/* .stat-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #64748b;
} */

.stat-icon {
  font-size: 1rem;
}

/* .comparison-column.before {
  filter: brightness(50px);
} */

/* Testimonial Quote */
.testimonial-quote-section {
  font-family: "Inter", sans-serif;
  text-align: center;
  /* margin-top: 4rem; */
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.scale-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.quote-attribution {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #64748b;
}

.metrics-section {
  width: auto;
  /* margin: auto; */
  padding: 40px 50px;
  text-align: center;
  background: #f8fafc;
}

.metrics-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.metrics-subtext {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
  margin-bottom: 40px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.metric-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
}

.metric-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

.metric-card h2 {
  font-size: 2rem;
  color: #1d6de4;
  margin: 0;
  font-weight: 700;
}

.metric-card p {
  font-family: "Inter", sans-serif;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.demo-button-wrapper {
  text-align: -webkit-center;
}

.test {
  width: -webkit-fill-available;
}

.btns {
  display: flex;
  justify-content: end;
}

.section {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.section img {
  width: 40px;
}

.section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 6px;
}

.section p {
  font-size: 16px;
  color: #555;
}

.comparison {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.column {
  flex: 1 1 500px;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.before {
  background: #fff5f5;
  border: 1px solid #ffebeb;
}

.after {
  background: #f0f9ff;
  border: 1px solid #d6efff;
}

.column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.column li {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.column.before li {
  background: #ffecec;
}

.column.after li {
  background: #e6f5ff;
}

.column li strong {
  display: block;
  font-size: 14.5px;
  color: #111;
  margin-bottom: 4px;
}

.column li span {
  font-size: 13px;
  color: #555;
}

.naac-compliance-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  padding: 40px;
}

.naac-compliance-container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

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

/* .naac-header {
  text-align: center;
  margin-bottom: 4rem;
} */

/* .naac-icon {
  margin-bottom: 1rem;
} */

.shield-icon {
  height: 100px;
  width: 100px;
  font-size: 2rem;
  display: inline-block;
  padding: 1rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  color: white;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.naac-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.naac-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 4rem;
}

.comparison-column {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: relative;
}

.comparison-column.before {
  background-image: url(images/Red-bg.png);
  filter: saturate(0.8);
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: overlay;
}

.comparison-column.after {
  background-image: url(images/Blue-bg.png);
  filter: saturate(0.8);
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: overlay;
}

/* .hero-image {
  background-image: url(images/Bg.jpg);
  filter: saturate(1);
} */
.column-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.status-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
  margin: 10px;
}

.before-icon {
  background: #fee2e2;
  color: #dc2626;
}

.after-icon {
  background: #dcfce7;
  color: #16a34a;
}

.column-title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-item {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.before .comparison-item {
  background: rgba(254, 226, 226, 0.3);
  background-color: #ffffffb5;
}

.after .comparison-item {
  background: rgba(220, 252, 231, 0.3);
  background-color: #ffffffb5;
}

.mobile-mockup-display {
  border: 2px solid #0000000f;
  border-radius: 16px;
  padding: 40px;
}

.item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: #f1f5f9;
}

.item-icon.blue {
  background: #dbeafe;
  color: #3b82f6;
}

.item-icon.orange {
  background: #fed7aa;
  color: #ea580c;
}

.item-icon.green {
  background: #dcfce7;
  color: #45c4a0;
}

.item-icon.purple {
  background: #f3e8ff;
  color: #8b5cf6;
}

.item-icon.pink {
  background: #fce7f3;
  color: #ec4899;
}

.item-content {
  flex: 1;
  font-family: "Inter", sans-serif;
}

.item-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.item-description {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

/* How FretBox Works Section */

.how-it-works-section {
  padding: 50px 20px;
  background-color: #f8f9fa;
}

.how-it-works-container {
  /* max-width: 1200px; */
  margin: 0 auto;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 40px;
}

.how-it-works-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.how-it-works-subtitle {
  font-size: 1.2rem;
  color: #666;
  /* max-width: 600px; */
  margin: 0 auto;
}

.mobile-mockups-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* gap: 20px; */
  width: 100%;
}

.mobile-mockup-display {
  flex: 0 0 calc(100% / 3);
  /* min-width: 33.33%;
   */
  /* Ensures 3 items are shown at a time */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}

.phone-frame {
  width: 250px;
  height: 500px;
  background: #e4e4e4;
  border-radius: 30px;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.leave-request-app img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-info {
  text-align: center;
  max-width: 300px;
  margin-top: 20px;
}

.feature-header {
  display: flex;
  align-items: start;
  /* justify-content: center; */
  gap: 10px;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-title-mobile {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.carousel-controls {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.carousel-button {
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.carousel-button:hover {
  background: #0056b3;
}

.carousel-button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.naac-dashboard {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  /* flex-wrap: wrap; */
  width: 1200px;
}

.sidebar {
  /* width: 200px; */
  background: #e9f0f8;
  padding: 20px;
  border-right: 1px solid #ddd;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  padding: 10px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-radius: 5px;
  color: #007bff;
  cursor: pointer;
  transition: background 0.3s;
}

.sidebar ul li:hover {
  background: #e0e7ff;
}

.naac-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-container-image {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 35px;
}

.naac-header {
  background: #003087;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px 5px 0 0;
  font-size: 1.2em;
  font-weight: 500;
  /* width: 57vw; */
  /* width: 1200px; */
}

.score-section {
  margin: 20px 0;
}

.score-label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 5px;
  margin: 20px;
}

.score-bar {
  /* width: 100%; */
  height: 20px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px;
}

.score {
  height: 100%;
  background: #28a745;
  width: 80%;
  text-align: center;
  color: #fff;
  line-height: 20px;
  font-weight: 600;
}

.charts {
  display: flex;
  justify-content: space-between;
  margin: 50px;
}

.chart-container-container {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-right: 20px;
}

.chart-container:last-child {
  margin-right: 0;
}

.pie-chart {
  width: 150px;
  height: 150px;
  background: conic-gradient(#ff6384 0% 33%, #36a2eb 33% 66%, #ffcd56 66% 100%);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}

.pie-chart::before {
  content: "Complaint Resolution";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.9em;
  font-weight: 500;
}

.bar-chart {
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  margin-top: 10px;
}

.bar {
  width: 20px;
  background: #36a2eb;
  margin: 0 2px;
}

.bar:nth-child(1) {
  height: 60px;
}

.bar:nth-child(2) {
  height: 90px;
}

.bar:nth-child(3) {
  height: 70px;
}

.bar:nth-child(4) {
  height: 110px;
}

.chart-label {
  margin-top: 10px;
  color: #6c757d;
  font-weight: 500;
}

.testimonial {
  background: #e9ecef;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  font-style: italic;
  color: #495057;
  position: relative;
}

.testimonial::before {
  content: "“";
  color: #007bff;
  font-size: 1.5em;
  position: absolute;
  left: 10px;
  top: 5px;
}

.testimonial::after {
  content: "”";
  color: #007bff;
  font-size: 1.5em;
  position: absolute;
  right: 10px;
  bottom: 5px;
}

.buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.btn-chart {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s;
}

/* .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s;
} */

/* .btn-blue {
  background: #007bff;
  color: #fff;
}

.btn-blue:hover {
  transform: translateY(-2px);
}

.btn-green {
  background: #28a745;
  color: #fff;
}

.btn-green:hover {
  transform: translateY(-2px);
} */

@media (min-width: 768px) and (max-width: 1024px) {
  .integration-section {
    gap: 10px;
  }

  .dashboard-mockup {
    height: auto;
  }

  section {
    background-color: #f5f5f5;
    /* Prevent white background */
  }

  .naac-header {
    font-size: 1.6rem;
  }

  .naac-dashboard {
    flex-direction: column;

    gap: 10px;
  }

  .score-section {
    flex: 0 0 200px;
    /* Fixed sidebar width */
  }

  .charts-section {
    flex: 1;
    background-color: #fff;
    min-width: 45%;
  }

  .score-bar {
    max-width: 250px;
  }

  .charts {
    /* max-width: 250px; */
    width: 50%;
    flex-direction: column;
    gap: 15px;
  }

  .chart-container {
    min-width: 135%;
    /* max-width: 45%; */
  }

  .pie-chart {
    max-width: 135px;
  }

  .bar-chart {
    height: 120px;
  }

  .testimonial {
    font-size: 1.05rem;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .testimonial-cards {
    max-width: none;
  }
  .dashboard-mockup {
    width: auto;
  }
  .hero-content {
    width: auto !important;
  }
  .demo-card-container {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
  }

  .user-details {
    display: grid;
  }

  .status-badge {
    text-wrap-mode: nowrap;
  }

  .whatsapp-button {
    text-wrap: nowrap;
  }

  .company-logo {
    width: 125px;
  }

  .quotaion-founder-top {
    position: relative;
    top: 18px;
    left: -247px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .quotaion-founder-bottom {
    position: relative;
    bottom: 47px;
    right: -247px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .story-content {
    flex-direction: column;
  }

  .content-left {
    align-items: center;
  }

  .secondary-button {
    font-size: 15px;
  }

  .primary-button {
    font-size: 15px;
  }

  .demo-button-navbar {
    font-size: 10px;
    text-wrap: nowrap;
  }

  .live-badge {
    display: none;
  }

  .dashboard-title {
    margin-top: 20px;
  }

  /* .logo-img {
    width: 80%;
  } */

  .demo-buttons {
    margin-bottom: 10px;
  }

  .cta-buttons {
    font-size: 34px !important;
    display: grid !important;
    align-items: center !important;
  }

  .mobile-mockup-display {
    /* flex: 0 0 50%; */
    min-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* gap: 20px !important; */
  }

  .video-demo-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    margin: 50px;
  }

  .integration-diagram {
    height: 500px;
    width: 500px;
  }

  .integration-section {
    gap: 10px;
  }

  /* .user-profile {
    display: grid !important;
    grid-template-columns: max-content;
  } */

  .naac-dashboard {
    flex-direction: column;
    width: auto;
  }

  .video-thumbnail-container {
    width: 100%;
  }
  /* 
  .nav-link-navbar {
    padding: 0.5rem 0;
    font-size: 12px;
    text-wrap: nowrap;
  } */

  .navigation {
    display: flex;
    gap: 10px;
    padding: 10px;
  }

  .comparison-grid {
    width: fit-content;
    grid-template-columns: 1fr !important;
  }

  .footer-container {
    grid-template-columns: repeat(2, 2fr) !important;
    gap: 2rem;
  }

  .campus-image {
    width: 80vw;
    height: 80vh;
  }

  .naac-header {
    width: 100vw;
  }

  .header {
    width: auto;
  }

  .app-header-container {
    width: 30vw;
  }

  /* .app-card {
    width: 100vw;
  } */

  .platform-section {
    padding: 60px 15px;
  }

  .platform-title {
    font-size: 2rem;
  }

  .platform-description {
    font-size: 1.125rem;
  }

  .platform-cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .feature-column {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* .mobile-menu-toggle {
    display: block;
  } */

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

  .tagline {
    font-size: 0.5rem;
    margin-left: 2rem;
  }

  .cta-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    /* gap: 2rem; */
    padding: 0 1rem !important;
    display: grid !important ;
  }

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

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .naac-popup {
    position: static;
    margin-bottom: 1rem;
    gap: 1rem;
  }

  .logo-carousel {
    gap: 15px;
  }

  .logo-slide {
    min-width: 120px;
    height: 80px;
    padding: 15px;
  }

  .logo-slide img {
    max-height: 50px;
    max-width: 100px;
  }

  .trusted-by-section {
    padding: 40px 15px;
  }

  .trusted-by-section h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .problem-section {
    padding: 20px 15px;
  }

  .problem-title {
    font-size: 2rem;
  }

  .stats-highlight {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .problem-card {
    padding: 1.5rem;
  }

  .testimonials-section {
    padding: 20px 15px;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .video-testimonials {
    display: flow;
    /* grid-template-columns: 1fr 1fr; */
    padding: 10px 40px 10px 10px;
  }

  .testimonials-carousel {
    padding: 0 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
    width: webkit-fill-available !important;
    /* min-width: auto; */
    width: 475px;
  }
  .testimonial-quote {
    width: auto;
  }

  .custom-built-section {
    padding: 60px 15px;
  }

  .custom-built-title {
    font-size: 2rem;
  }

  .custom-built-subtitle {
    font-size: 1rem;
  }
  .app-cards {
    display: grid;
    grid-template-columns: 1fr;
  }

  .campus-tabs {
    flex-direction: row;
    gap: 0.25rem;
    max-width: 100%;
  }

  .tab-button {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .metrics-section {
    padding: 60px 15px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
  }

  .content-right {
    height: 390px;
  }

  .content-title {
    font-size: 1.5rem;
  }

  .campus-illustration {
    width: 250px;
    height: 150px;
  }

  .building {
    width: 100px;
    height: 80px;
  }

  .building-roof {
    width: 120px;
    left: -10px;
  }

  .building-body {
    width: 100px;
    height: 60px;
  }

  .stats-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .scale-quote {
    font-size: 1.25rem;
  }

  .comparison {
    flex-direction: column;

    .naac-compliance-section {
      padding: 60px 15px;
    }

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

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

    .comparison-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .dashboard-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .naac-cta-buttons {
      flex-direction: column;
      align-items: center;
    }

    .naac-cta-btn {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }

    .comparison-item {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }

    .item-icon {
      align-self: center;
    }

    .help-bar {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }

    .footer-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .company-section {
      grid-column: span 2;
    }

    .bottom-container {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }

    .bottom-links {
      flex-wrap: wrap;
      justify-content: center;
    }

    .video-demo-section {
      padding: 20px 15px;
    }

    .video-demo-container {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
    }

    .video-player {
      height: 300px;
    }

    .play-button {
      width: 60px;
      height: 60px;
    }

    .play-icon {
      border-left: 20px solid white;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
    }

    .demo-card {
      padding: 1.5rem;
    }

    .demo-title {
      font-size: 1.25rem;
    }

    .demo-buttons {
      gap: 0.75rem;
    }

    .demo-button {
      padding: 0.875rem 1.25rem;
      font-size: 0.875rem;
    }
  }

  .feature-info {
    max-width: 100%;
  }

  .carousel-controls {
    top: 40%;
    /* Adjust for smaller screens */
  }

  .phone-frame {
    width: 200px;
    height: 400px;
  }

  .feature-info {
    max-width: 100%;
  }

  .carousel-controls {
    top: 40%;
  }

  .testimonial-quote-icon-bottom {
    position: absolute;
    top: 220px !important;
    left: 418px !important;
    width: 20px !important;
    height: 30px !important;
  }

  .charts-section {
    flex: 1;
    background-color: #fff;
    min-width: 45%;
  }

  .charts {
    /* max-width: 250px; */
    min-width: 50%;
    flex-direction: column;
    gap: 15px;
  }

  .dashboard-container-image {
    display: block;
  }

  .naac-content {
    display: flex;
    flex-direction: column;
  }

  .content-right-image {
    height: 80vh;
  }

  .campus-image {
    height: 80vh !important;
    width: 80vw !important;
  }

  .how-it-works-title {
    font-size: 1.6rem;
  }

  .how-it-works-subtitle {
    font-size: 0.95rem;
  }

  .phone-frame {
    width: 200px;
    height: 400px;
  }

  .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .feature-title-mobile {
    font-size: 1rem;
  }

  .feature-description-mobile {
    font-size: 0.9rem;
  }

  .mobile-mockup-display {
    flex: 0 0 100%;
    /* min-width: 50%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
  }
}

.mockup-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.indicator.active {
  background: #007bff;
}

.content-right-right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f4f8;
  position: relative;
  width: 470px;
}

.perfect-for {
  background-color: #e7f2fb;
  border-radius: 16px;
  padding: 20px;
  border-left: 4px solid #4f84b7;
}

.campus-illustration {
  position: relative;
  text-align: center;
}

.campus-image {
  width: 500px;
  height: 500px;
  background-color: white;
  background-image: url("images/bg-campus.svg");
  background-repeat: no-repeat;
  background-position: top right;
  /* background-size: 60px; */
}

.stats-indicators {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  /* background-color: rgba(255, 255, 255, 0.8); */
  padding: 5px 10px;
  border-radius: 5px;
}

.stat-icon {
  font-size: 1.2em;
}

.stat-text {
  font-family: Arial, sans-serif;
  font-size: 1em;
  color: #333;
}

.bottom-left-stats {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.bottom-right-stats {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 20px;
  /* box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); */
}

.feature-card {
  background-color: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgb(59 130 246 / 32%);
  padding: 20px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #3ef63b 0%, #25eb2c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;

  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.feature-title {
  /* font-size: 1.25rem; */
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  margin-left: 30px;
  text-align: start;
}

.feature-description-mobile {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  text-align: left;
  /* margin-left: 20px; */
}

.vertical-line {
  border-left: 1px solid #e2e8f0;
  height: 100%;
  margin: 0 20px;
}

/* Mockup Indicators */
.mockup-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #3b82f6;
  transform: scale(1.2);
}

/* Video Demo Section */
.video-demo-section {
  padding: 20px 20px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  position: relative;
}

.video-demo-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* gap: 4rem; */
  /* align-items: center; */
}

/* Video Player */
.video-player-container {
  position: relative;
  /* opacity: 0; */
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease forwards;
}

.video-player {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-player:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-container {
  /* width: 360px; */
  height: 310px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* .play-button {
  width: 80px;
  height: 80px;
  background: #1d3df8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
} */

/* .play-button:hover {
  background: #2563eb;
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(248, 248, 249, 0.4);
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 25px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 5px;
} */

.security-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  /* background: #3b82f6; */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: white; */
  font-size: 1.25rem;
  /* box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3); */
}

.video-caption {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

/* Demo Card */
.demo-card {
  margin: 25px;
  background: #ebfcff;
  border-radius: 16px;
  /* padding: 2rem; */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.8s ease 0.3s forwards;
  border-left: 4px solid #4f84b7;
  height: 170px;
  width: 350px;
}

.demo-card-header {
  margin-bottom: 1.5rem;
}

.demo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  /* margin-bottom: 0.75rem;
   */
  padding: 10px;
}

.demo-subtitle {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  margin: 10px;
}

.demo-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  margin: 30px 30px;
}

.demo-button {
  /* width: 130px; */
  height: 2.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.demo-button.primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.demo-button.primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.demo-button.secondary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.demo-button.secondary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.button-icon {
  font-size: 1.125rem;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 10;
  transition: all 0.2s ease;
}

.close-button:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Base Structure */
.pricing-section {
  padding: 4rem 2rem;
  background-color: #f9f9fb;
  font-family: "poppins", "sans-serif";
}

.pricing-container {
  /* max-width: 1200px; */
  margin: auto;
}

/* Header */
.pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-title {
  font-size: 2.5rem;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
  font-family: poppins, sans-serif;
}

.pricing-subtitle {
  font-size: 1rem;
  color: #666;
  font-family: "Inter";
}

/* Trust Indicators */
.trust-indicators-top {
  display: grid;
  /* flex-wrap: wrap; */
  justify-content: start;
  gap: 1.5rem;
  margin-bottom: 3rem;
  font-family: Inter, sans-serif;
}

.trust-item-iso {
  background-color: white;
  padding: 4px;
  border-radius: 25px;
  font-size: 1.1em;
  align-items: flex-start;
  display: flex;
}

/* .status-left {
  display: grid;
  grid-template-columns: 1fr;
} */
.trust-item-top {
  background-color: white;
  padding: 4px;
  border-radius: 25px;
  display: flex;
  align-items: flex-start;
  /* max-width: 300px; */
}

.trust-icon-top {
  margin-right: 0.5rem;
  font-weight: bold;
  height: 18px;
  color: #000;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Cards Container */

.pricing-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
}

/* Card Styles */
.pricing-card,
.pricing-container > div > div {
  border-radius: 12px;
  /* padding: 2rem; */
  position: relative;
  max-width: 350px;
}

.plan-header-popular {
  border: 2px solid blue;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0b66d2d4;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Card Header */
.card-header,
.pricing-card > .card-header {
  text-align: center;
  margin-bottom: 1rem;
}

.price-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
}

.plan-header {
  width: 800px;
  text-align: center;
  margin-bottom: 1rem;
  border-color: #0b66d2d4;
  border-radius: 4rem;
  background-color: white;
  border: 2px solid #8b84840f;
  padding: 25px;
}

.plan-header-popular {
  width: 800px;
  text-align: center;
  margin-bottom: 1rem;
  border-radius: 4rem;
  background-color: white;
  border: 2px solid #8b84840f;
  padding: 25px;
  border: 2px solid #0b66d2d4;
}

.plan-name {
  font-size: 1.5rem;
  color: #333;
  font-family: "inter", sans-serif;
}

.plan-description {
  font-size: 1rem;
  color: #777;
  font-family: "inter", sans-serif;
}

.price-container {
  margin-top: 0.75rem;
  font-size: 1.75rem;
  color: #111;
  font-family: "inter", sans-serif;
}

.currency {
  font-size: 1.4rem;
  vertical-align: bottom;
}

.price-period {
  font-size: 0.9rem;
  color: #666;
}

/* Feature List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  font-family: "Inter", sans-serif;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.feature-icon {
  opacity: 0.4;
  filter: grayscale(100%);
  font-weight: normal;
}

.included {
  color: #45c4a0;
}

.excluded {
  color: #bbb;
  /* text-decoration: line-through; */
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button.primary {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 6px 4px rgba(59, 130, 246, 0.4);
}

.cta-button.primary:hover {
  background-color: #0056b3;
}

.cta-button.sales {
  background-color: #000;
  color: #f8fafc !important;
  border-color: #000000ba;
  font-family: "Inter", sans-serif;
  bottom: -25px;
  position: relative;
}

.cta-button.secondary:hover {
  background-color: #e2e2e2;
}

/* What's Included */
.whats-included {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: #007bff;
  cursor: pointer;
}

/* Bottom CTAs */
.bottom-ctas {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.bottom-ctas .talk-sales {
  background-color: #007bff;
  color: #fff !important;
  box-shadow: 0 6px 4px rgba(59, 130, 246, 0.4);
}

.bottom-ctas .brochure {
  /* background-color: green; */
  color: #45c4a0 !important;
  /* color: #fff; */
  border: 1px solid #45c4a0;
  box-shadow: 0 6px 4px rgba(59, 130, 246, 0.4);
}

.bottom-ctas .whatsapp {
  background-color: #15a614c2;
  /* color: green; */
  color: #fff !important;
  border: 1px solid #45c4a0;
  box-shadow: 0 6px 4px rgba(59, 130, 246, 0.4);
}

.bottom-cta-button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  background: #fff;
  color: #007bff;
  font-weight: 600;
  border: 1px solid #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

/* .bottom-cta-button:hover {
  background-color: #007bff;
  color: #fff;
} */
.play-button-container {
  width: 0px;
  height: 0px;
  background-color: #5c86c6;
  /* border-radius: 50%; */
  position: absolute;
  /* top: -20px;
  left: 20px;
  z-index: 10; */
}

.play-button-container:hover {
  background: rgb(255, 255, 255);
  transform: scale(1.1);
}

.play-icon-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* Modal styles */
/* .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;

} */

/* .modal-content {
  height: 100vh !important;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;

  flex-shrink: 0;
} */

/* .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
} */

/* .modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
} */

/* .close-modal {
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
} */

/* Form styles */
/* .modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: auto;

}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1rem;
}

.close-btn,
.submit-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.close-btn {
  background-color: #6c757d;
  color: white;
}

.submit-btn {
  background-color: #007bff;
  color: white;
} */

/* Responsive Design */

/* Animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.play-button {
  animation: pulse 2s infinite;
}

.final-cta-section {
  /* background-color: #ffffff; */
  padding: 30px 20px;
  text-align: center;
  font-family: "poppins", sans-serif;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-header .cta-title {
  font-size: 26px;
  font-weight: 700;
  color: #1b1f24;
  margin-bottom: 10px;
  /* font-family: "Inter", sans-serif; */
}

.cta-subtitle {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
}

.cta-buttons {
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.cta-button {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

.cta-button.primary {
  background-color: #1b73e8;
  color: #fff !important;
  border-color: #1b73e8;
  font-family: "Inter", sans-serif;
}

.cta-button.primary-pro {
  background-color: #1b73e8;
  color: #fff  !important;
  border-color: #1b73e8;
  position: relative;
  bottom: 10px;
  font-family: "Inter", sans-serif;
}

.trial-button.disabled {
  text-decoration: none;
  background-color: #e0e0e0;
  color: #999999;
  opacity: 0.6;
  border: 1px solid #ccc;
  cursor: not-allowed;
  pointer-events: none;
  height: 46px;
  /* display: list-item; */
  display: flex;
  margin: 10px;
}

/* Default button style (optional) */
.trial-button {
  /* text-decoration: none; */
  height: 200px;
  background-color: #bd1919;
  color: #000000;
  /* Dark text */
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  bottom: 10px;
  font-family: "Inter", sans-serif;
}

.disable {
  height: 200px;
  width: 200px;
}

.cta-button.secondary {
  background-color: #e8f5e9;
  color: #46b54e !important;
  border-color: #33c13e;
  font-family: "Inter", sans-serif;
}

.cta-button.whatsapp {
  background-color: #ffffff;
  color: #6a1b9a !important;
  border-color: #b39ddb;
  box-shadow: 0 6px 4px rgba(59, 130, 246, 0.4);
  font-family: "Inter", sans-serif;
  text-wrap-mode: nowrap;
}

.cta-button:hover {
  opacity: 0.9;
}

/* .made-in-india {
  width: 80px;
  height: 25px;
  font-size: 0.6rem;
  font-weight: 100;
  cursor: pointer;
  margin-left: 900px;

  color: #f8fafc;
  background: #413e46a1;
  margin-right: 10px;
  font-family: "Inter sans-serif";
  text-decoration: none;
  border: none; */
/* padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    
    border-radius: 20px;
    background-color: #413e46a1;
    color: #333;
    cursor: pointer;
    margin-left: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease; */
/* } */

/* .startup-in-india {
  width: 80px;
  height: 25px;
  font-size: 0.6rem;
  font-weight: 100;
  cursor: pointer;

  color: #f8fafc;
  background: #413e46a1;
  margin-right: 10px;
  font-family: "Inter sans-serif";
  border: none;
} */

.trust-indicators {
  display: flex;
  /* justify-content: center; */
  flex-wrap: wrap;
  gap: 15px;
  color: #4caf50;
  font-size: 14px;
  font-weight: 500;
}

.trust-item::before {
  color: #4caf50;
  font-weight: bold;
}

.trust-indicators-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  color: #4caf50;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.trust-item-bottom::before {
  color: #4caf50;
  font-weight: bold;
}

.wrapper {
  width: 1200px;
  background-color: #f5faff;
  padding: 20px;
  border-radius: 10px;
  /* max-width: 1200px; */
  height: 100vh;
  font-family: Arial, sans-serif;
  color: #1a1a1a;
}

.title-section {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}

.subtitle-section {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.photo-frame {
  float: left;
  margin-right: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.photo-frame img {
  width: 120px;
  height: auto;
  display: block;
}

.text-block {
  overflow: hidden;
}

.saying {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
}

.saying::before {
  content: "„";
  font-size: 40px;
  color: #ccc;
  position: absolute;
  left: -20px;
  top: -10px;
}

.creator {
  font-size: 14px;
  font-style: italic;
  text-align: right;
}

.highlight-boxes {
  margin: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  box-shadow: 1px 1px;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
  font-family: "Inter", sans-serif;
}

.highlight-box-blue {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  border-top: 4px solid #3b82f6;
  font-family: "Inter", sans-serif;
  font-family: 400;
}

.highlight-box-green {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  border-top: 4px solid #3ef63b;
  font-family: "Inter", sans-serif;
}

.highlight-box-violet {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  border-top: 4px solid #8b5cf6;
  font-family: "Inter", sans-serif;
}

.highlight-box h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
}

.highlight-box p {
  font-size: 0.9rem;
  color: #555;
  font-family: "Inter", sans-serif;
}

.highlight-icon {
  font-size: 1.2rem;
  color: #007bff;
}

.highlight-image {
  height: 50px;
  width: 50px;
}

/* Main Footer */

/* Responsive Design */

@media (max-width: 480px) {
  .charts {
    display: flex !important;
    flex-direction: column;
  }
  .chart-container {
    margin-bottom: 20px !important;
    width: 100% !important;
  }
  .made-in-india {
    border: none !important;
  }
  .start-up-in-india {
    border: none;
  }
  .buttons {
    font-size: 12px !important;
  }
  .help-bar {
    display: grid !important;
    /* grid-template-columns: 1fr !important; */
  }
  .trust-indicators-bottom {
    justify-content: left !important;
  }
  .story-subtitle {
    font-weight: 600;
  }
  .trust-indicators-mobile {
    justify-content: left !important;
  }
  .campus-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    font-size: 1px;
  }
  .features-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .testimonial-card {
    width: 100% !important;
  }

  .charts {
    background-color: #fff;
    width: 45%;
    display: grid;
    margin-top: 30px;
  }

  .charts-section {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .naac-dashboard {
    display: block;
    width: auto;
  }

  .dashboard-container-image {
    display: block;
  }

  .logo-img {
    width: 75px !important;
  }

  .demo-button {
    text-wrap-mode: nowrap !important;
  }

  .stat-card {
    font-size: 1px;
  }

  .dashboard-title {
    font-size: 15px;
  }

  .bottom-links {
    display: flow;
  }
  .bottom-container {
    display: contents;
  }

  .primary-button {
    font-size: 11px;
  }

  .dashboard-mockup {
    width: auto !important;
    padding: 0.5rem;
  }

  /* .row {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 0px !important;
  } */

  .secondary-button {
    font-size: 11px;
    font-weight: 700;
    /* height: 40px; */
    /* align-items: center; */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trust-indicators-top {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 10px !important;
  }

  .stats-highlight {
    width: 100% !important;
    text-wrap: wrap;
  }

  .stat-description {
    overflow-wrap: break-word;
  }

  .cta-buttons {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .problems-grid {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  /* .campus-tabs {
    display: grid;
    grid-template-columns: 1fr !important;
  } */

  .tab-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .metrics-grid {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .highlight-boxes {
    display: flow;
    margin: 29px;
  }

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

  .demo-card {
    width: 90% !important;
  }

  .video-player-container {
    margin: 10px;
  }

  .video-demo-container {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .comparison-grid {
    width: fit-content;
    grid-template-columns: 1fr !important;
  }

  .nav-link {
    font-size: 14px;
  }

  .video-testimonials {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    flex-wrap: nowrap;
  }

  .hero-content {
    width: min-content;
  }

  .app-card-security {
    direction: column !important;
    display: flow;
  }

  .hero-title {
    font-size: 25px;
    text-wrap-mode: nowrap;
  }

  .info-text {
    text-wrap: auto;
  }

  .app-header {
    width: auto !important;
    /* display: flow; */
  }

  .integration-section {
    gap: 0px !important;
  }

  .user-profile {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .app-header-container {
    width: auto !important;
    /* display: flow; */
  }

  .hero-buttons {
    margin-bottom: 15px;
  }

  .stat-label {
    font-size: 10px;
    text-wrap-mode: nowrap;
  }

  .stat-value {
    font-size: 16px;
  }

  .app-status-list {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .tab-content-container {
    height: 145vh;
  }

  .content-right-image {
    height: 80vh;
    margin-top: 20px;
  }

  .campus-image {
    width: 87vw !important;
    height: 50vh !important;
    background-size: 60px;
  }

  /* .navigation {
    display: none;
  } */

  .mobile-menu-toggle {
    display: block;
    text-align: start;
  }

  .app-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    display: flex !important
;
  }

  .app-card {
    flex: 1 1 calc(50% - 20px);
    max-width: 400px;
  }

  .container {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
  }

  .logo-section {
    align-items: center;
  }

  .tagline {
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .hero-container {
    padding: 1rem !important;
    display: grid !important;
  }

  .logo-carousel {
    gap: 10px;
  }

  .logo-slide {
    min-width: 100px;
    height: 70px;
    padding: 10px;
  }

  .logo-slide img {
    max-height: 40px;
    max-width: 80px;
  }

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

  .stat-number {
    font-size: 1.75rem;
  }

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

  .video-thumbnail {
    height: 160px;
    /* width: 200px; */
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .custom-built-title {
    font-size: 1.75rem;
  }

  .bottom-ctas {
    display: grid;
    grid-template-columns: 1fr !important;
  }
  .quotaion-founder-top {
    position: relative;
    top: 0px;
    left: -155px;
  }

  .quotaion-founder-bottom {
    position: relative;
    top: 0px;
    left: 155px;
  }

  .content-grid {
    padding: 1.5rem;
    display: flow;
    height: 145vh;
  }

  .campus-illustration {
    width: 200px;
    height: 120px;
  }

  .tab-button {
    padding: 0.875rem;
    font-size: 0.8rem;
  }

  .scale-quote {
    font-size: 1.125rem;
  }

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

  .comparison-column {
    padding: 1.5rem;
  }

  .naac-dashboard-preview {
    padding: 1.5rem;
  }

  .dashboard-content {
    gap: 1.5rem;
  }

  .pie-chart {
    width: 100px;
    height: 100px;
  }

  .pie-center {
    width: 70px;
    height: 70px;
  }

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

  .video-player {
    height: 250px;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-icon {
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  .security-badge {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .video-modal-content {
    width: 95%;
  }

  .video-iframe {
    height: 300px;
  }

  .main-footer {
    padding: 40px 15px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .company-section {
    grid-column: span 1;
  }

  /* .social-links {
    justify-content: center;
  } */
}

/* Testimonial Info Styling */
.tsm-info {
  text-align: center;
  padding: 20px;
  max-width: 300px;
  margin: 0 auto;
}

.tsm-play-btn {
  width: 60px;
  height: 60px;
  background: url("https://via.placeholder.com/60?text=Play") no-repeat center;
  background-size: cover;
  cursor: pointer;
  margin: 0 auto 15px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.tsm-play-btn:hover {
  transform: scale(1.1);
}

.tsm-role,
.tsm-uni {
  margin: 5px 0;
  font-size: 16px;
}

.tsm-role {
  color: #555;
}

.tsm-uni {
  font-weight: bold;
  color: #333;
}

/* Modal Styling */
.tsm-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.tsm-modal-content {
  background: black;
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  position: relative;
}

.tsm-close-btn {
  z-index: 10;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  background: #2baae1;
  border-radius: 50px;
  width: 35px;
  height: 35px;
}

.tsm-video-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.tsm-video-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 100%;
}
/* .video-wrapper video{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
} */

a.close-popup {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 30px;
  color: #fff !important;
  text-decoration: none;
  z-index: 999;
  background: #2baae1;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50px;
}

.hidden-section {
  display: none;
}

@media (min-width: 1024px) {
  .container {
    max-width: none !important;
    padding: 20px;
  }
}
