@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lemon&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rozha+One&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  color: inherit !important;
  text-decoration: none !important;
}

a:hover {
  color: inherit;
}

body {
  box-sizing: border-box;
}

/* NAVBAR */

.header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.container-nav {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.logo-img {
  width: 120px;
}

.logo-section {
  height: 50.73px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
  margin-top: 0.4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

/* Navigation styles */
.navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  text-wrap: nowrap;
  align-items: center;
  height: 70px !important;
  /* margin: auto !important; */
}

.nav-link-navbar {
  color: #000 !important;
  text-decoration: none !important;
  padding: 10px 15px;
  display: block;
  font-size: 16px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.nav-item {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  top: 100%;
  left: 0;
  border: 1px solid #ddd;
}

.dropdown-content a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: #f1f5f9;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.mobile-nav .nav-link {
  padding: 0.75rem;
  border-radius: 8px;
  transition: background 0.2s ease;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.mobile-nav .nav-link:hover {
  background: #f1f5f9;
}

/* Mobile Dropdown */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-content {
  display: none;
  background-color: #f9f9f9;
  padding: 0.5rem 1rem;
  /* margin-left: 1rem; */
}

.mobile-dropdown-content a {
  color: #000;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.mobile-dropdown-content a:hover {
  background-color: #e5e7eb;
}

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

.cta-button-top:hover {
  background-color: #ffffff !important;
  color: #2baae1 !important;
  border: 1px solid #2baae1 !important ;
  transform: none;
}

/* Responsive Styles */
@media (max-width: 480px) {
  .header {
    padding: 0px !important;
  }
  .navigation {
    display: none;
  }

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

  .cta-button-top {
    font-size: 10px;
    padding: 10px;
  }

  .logo-img {
    width: 80px;
  }
  .logo-section {
    margin-bottom: 0px;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .container-nav {
    padding: 0px 1rem !important;
  }
  .header {
    padding: 0px !important;
  }
  .navigation {
    gap: 0px !important;
    padding: 10px;
  }
  .logo-section {
    height: 0px !important;
  }

  .logo-img {
    width: 50px;
  }

  .cta-button-top {
    font-size: 12px;
    padding: 10px 15px;
  }

  .nav-link-navbar {
    font-size: 10px;
    padding: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .navigation {
    gap: 15px;
    padding: 10px;
  }

  .cta-button-top {
    font-size: 14px;
    padding: 12px 20px;
  }

  .nav-link-navbar {
    font-size: 15px;
    padding: 10px;
  }
}

/* INDEX */

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.soft-gradient {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}

.floating-animation-delayed {
  animation: float 6s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from {
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
  }

  to {
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.6);
  }
}

.max-w-7xl {
  max-width: 90rem !important;
}

.problem-gradient {
  background: linear-gradient(135deg, #fef7f0 0%, #fff1f1 50%, #f0f9ff 100%);
}

.pattern-bg {
  background-image: radial-gradient(
      circle at 25px 25px,
      rgba(255, 107, 107, 0.1) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 75px 75px,
      rgba(59, 130, 246, 0.1) 2px,
      transparent 2px
    );
  background-size: 100px 100px;
}

.shake-animation {
  animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-2px);
  }

  75% {
    transform: translateX(2px);
  }
}

.stress-pulse {
  animation: stress-pulse 2s ease-in-out infinite;
}

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

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

.paper-float {
  animation: paper-float 4s ease-in-out infinite;
}

@keyframes paper-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-10px) rotate(2deg);
  }

  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

.warning-glow {
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.solution-gradient {
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 50%, #f0fdf4 100%);
}

.glow-effect {
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
}

.floating-up {
  animation: floating-up 6s ease-in-out infinite;
}

.floating-up-delayed {
  animation: floating-up 6s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes floating-up {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.slide-in-right {
  animation: slide-in-right 1s ease-out;
}

@keyframes slide-in-right {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

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

.checkmark-bounce {
  animation: checkmark-bounce 2s ease-in-out infinite;
}

@keyframes checkmark-bounce {
  0%,
  100% {
    transform: scale(1);
  }

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

.success-glow {
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.trust-badge-glow {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.benefits-gradient {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e0f2fe 100%);
}

.network-pattern {
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(34, 197, 94, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    );
}

.card-hover {
  transition: all 0.3s ease;
}

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

.icon-bounce {
  animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
  0%,
  100% {
    transform: translateY(0px);
  }

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

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-highlight {
  animation: stat-highlight 3s ease-in-out infinite;
}

@keyframes stat-highlight {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.card-glow {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

.features-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f0f9ff 100%);
}

.hostel-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2393c5fd' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.feature-card-hover {
  transition: all 0.3s ease;
}

.feature-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-float {
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.stat-counter {
  animation: stat-counter 2s ease-out;
}

@keyframes stat-counter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.logo-fade {
  animation: logo-fade 4s ease-in-out infinite;
}

@keyframes logo-fade {
  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.testimonial-glow {
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}

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

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

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

.case-study-gradient {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.media-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.cta-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #059669 50%, #0d9488 100%);
}

.campus-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2393c5fd' fill-opacity='0.1'%3E%3Cpath d='M50 50c13.807 0 25-11.193 25-25S63.807 0 50 0 25 11.193 25 25s11.193 25 25 25zm0 25c13.807 0 25-11.193 25-25S63.807 50 50 50s-25 11.193-25 25 11.193 25 25 25z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-highlight {
  animation: stat-highlight 3s ease-in-out infinite;
}

@keyframes stat-highlight {
  0%,
  100% {
    transform: scale(1);
  }

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

.logo-hover {
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.logo-hover:hover {
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.form-float {
  animation: form-float 6s ease-in-out infinite;
}

@keyframes form-float {
  0%,
  100% {
    transform: translateY(0px);
  }

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

.whatsapp-pulse {
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

.cta-glow {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.campus-illustration {
  background: linear-gradient(135deg, #ddd6fe 0%, #c7d2fe 50%, #bfdbfe 100%);
}

.comparison-gradient {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e0f2fe 100%);
}

.university-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2393c5fd' fill-opacity='0.08'%3E%3Cpath d='M40 40c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm20 0c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fretbox-glow {
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
  animation: fretbox-glow 3s ease-in-out infinite;
}

@keyframes fretbox-glow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
  }
}

.checkmark-bounce {
  animation: checkmark-bounce 2s ease-in-out infinite;
}

@keyframes checkmark-bounce {
  0%,
  100% {
    transform: scale(1);
  }

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

.cross-shake {
  animation: cross-shake 3s ease-in-out infinite;
}

@keyframes cross-shake {
  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-2deg);
  }

  75% {
    transform: rotate(2deg);
  }
}

.row-hover {
  transition: all 0.3s ease;
}

.row-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.badge-pulse {
  animation: badge-pulse 2s ease-in-out infinite;
}

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

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

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.via-purple-600 {
  --tw-gradient-stops: #0066ff var(--tw-gradient-from-position),
    #2baae1 var(--tw-gradient-via-position), var(--tw-gradient-to) !important;
}

.to-purple-600 {
  --tw-gradient-to: #2baae1 var(--tw-gradient-to-position) !important;
}

.from-indigo-600 {
  --tw-gradient-from: #046cfc var(--tw-gradient-from-position) !important;
  /* --tw-gradient-to: rgb(79 70 229 / 0) var(--tw-gradient-to-position); */
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.text-indigo-600 {
  color: rgb(7 113 250) !important;
}

.text-purple-600 {
  color: rgb(43 170 225) !important;
}

.text-blue-600 {
  color: rgb(37 99 235 / var(--tw-text-opacity, 1)) !important;
}

.text-pink-600 {
  color: rgb(7 113 250) !important;
}

.text-purple-700 {
  color: rgb(43 170 225) !important;
}

.text-indigo-700 {
  color: rgb(6 112 251) !important;
}

button {
  font-size: 14px !important;
}

.text-my {
  font-size: 0.9rem;
  line-height: 1.5;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee_group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

.marquee-reverse .marquee_group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }

  to {
    transform: translateX(var(--scroll-end));
  }
}

.fa {
  font-size: 70px !important;
}

.marquee .fa {
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 19/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

:root {
  --color-text: #000;
  --colog-bg: #000;
  --color-bg-accent: #ffe018;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.marquee_group img {
  width: auto;
  height: 90px;
  object-fit: cover;
  margin-bottom: 60px;
}

@media (width: 1024px) {
  .lg\:text-6xl {
    font-size: 2.4rem !important;
  }

  button {
    font-size: 12px !important;
  }
}

@media (max-width: 430px) {
  button {
    padding: 1rem 2rem !important;
  }

  .new-media {
    display: block !important;
  }

  .space-y-8 {
    margin-top: 40px;
  }

  .new-inflex {
    display: block !important;
  }

  .left-8 {
    left: 1rem !important;
  }

  .abb {
    left: -1rem !important;
    width: 4rem !important;
  }

  .logo-marquee {
    width: 100% !important;
  }

  .bba {
    right: -1rem !important;
    width: 4rem !important;
  }

  .right-12 {
    right: 1rem !important;
  }

  .only-phone {
    display: flex !important;
  }

  .only-screen {
    display: none !important;
  }

  .flexee {
    display: block !important;
  }

  .t-m {
    margin: 0 !important;
    margin-top: 0 !important;
  }

  .just {
    justify-content: center;
  }

  .founder-info {
    text-align: left;
  }

  .new-nar {
    margin-bottom: 15px;
  }

  .new-wid {
    max-width: 18rem !important;
  }

  .two-part {
    display: none !important;
  }

  .nn {
    justify-self: center;
  }

  .mq-1 {
    position: relative !important;
    display: flex !important;
    height: max-content !important;
    justify-self: center;
  }

  .mq-2 {
    position: relative !important;
    display: flex !important;
    height: max-content !important;
    justify-self: center;
  }

  .logo-marquee {
    width: 100%;
  }

  .logo-marquee img {
    margin: 0 20px !important;
  }

  .grid-new {
    display: grid !important;
    align-content: center !important;
    align-items: center !important;
    justify-content: start !important;
    justify-items: stretch !important;
  }

  .dashboard {
    width: 120px !important;
    height: 80px !important;
    top: 90px !important;
    right: 50px !important;
  }
  .building {
    width: 80px !important;
    height: 120px !important;
    bottom: 40px !important;
    left: 50px !important;
  }

  .smart-building {
    width: 120px !important;
    height: 200px !important;
  }

  .building-base {
    width: 100%;
    height: 120px !important;
  }

  .wave-separator {
    display: none;
  }
}

.grid {
  align-content: center;
  justify-content: center;
}

.mq-1 {
  position: absolute;
  left: 0;
}

.mq-2 {
  position: absolute;
  right: 0;
}

.new-media {
  display: grid;
}

.new-inflex {
  display: inline-flex;
}

.only-phone {
  display: none;
}

.flexee {
  display: flex;
}

.mxx {
  max-width: 90%;
  justify-self: center;
}

.brochure-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.brochure-modal {
  background: #fff;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
}

.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 90%;
  justify-self: center;
  padding: 12px 0;
  /* background: #fff;
            border: 1px solid #ddd; */
  margin: 20px 0;
  position: relative;
}

.logo-track {
  display: inline-flex;
  animation: move-left 20s linear infinite;
}

.logo-marquee.reverse .logo-track {
  animation: move-right 20s linear infinite;
}

.logo-marquee img {
  height: 100px;
  margin: 0 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: inline-block;
  padding: 15px;
}

.mq-1 p,
.mq-2 p,
.mq-3 p {
  font-weight: 600;
}

/* Left to right */
@keyframes move-left {
  0% {
    transform: translateX(0);
  }

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

/* Right to left */
@keyframes move-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.media-slider {
  overflow: hidden;
  white-space: nowrap;
  justify-self: center;
}

.media-track {
  display: flex;
  gap: 40px;
}

.media-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-item img {
  padding: 20px;
  height: 70px;
  width: auto;
  background: #f6f6f6;
  border-radius: 10px;
}

/* Animation applied only if JS adds "scrolling" */
.media-track.scrolling {
  animation: mediaScroll 25s linear infinite;
}

@keyframes mediaScroll {
  from {
    transform: translateX(0);
  }

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

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 25px !important;
}

@media screen and (width: 1024px) {
  .media-item img {
    padding: 15px;
    height: 50px;
  }

  .primary-button {
    padding: 0.5rem 1rem;
  }
}

#scrollTopBtn {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  /* background: rgba(0, 0, 0, 0.7); */
  color: white;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  z-index: 9999;
  pointer-events: none;
}

#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#scrollTopBtn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.25);
}

/* optional: larger screens slightly different */
@media (min-width: 1024px) {
  #scrollTopBtn {
    right: 32px;
    bottom: 32px;
  }
}

.overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.popup-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  overflow-y: auto;
  max-height: 80vh;
}

h2 {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 30px;
}

label {
  display: block;
  color: #34495e;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: left;
}

input,
textarea {
  width: 100% !important;
  padding: 12px !important;
  margin-bottom: 20px !important;
  border: 2px solid #ecf0f1 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s ease !important;
}

input:focus,
textarea:focus {
  border-color: #3498db;
  outline: none;
}

textarea {
  height: 100px;
  resize: vertical;
}

button.main-button {
  background-color: #3498db;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

button.main-button:hover {
  background-color: #2980b9;
}

button.alt-button {
  background-color: #ecf0f1;
  color: #2c3e50;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

button.alt-button:hover {
  background-color: #dcdde1;
}

.exit {
  color: #7f8c8d;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.exit:hover {
  color: #2c3e50;
}

.popup-message {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  padding: 12px 20px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-message.success {
  background-color: #28a745;
  /* Green */
}

.popup-message.error {
  background-color: #dc3545;
  /* Red */
}

.popup-message-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* FEATURE */
.hero-gradient {
  background: linear-gradient(135deg, #f7faff 0%, #ebf4ff 50%, #ffffff 100%);
}

.light-blue-bg {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.section-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3a86ff 0%, #0056d2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

.dashboard-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.metric-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.watermark-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233A86FF' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.divider {
  border: 1px solid #ccc;
  margin: 10px 0;
}

/* footer */
.main-footer {
  background: #041322;
  color: white;
  padding: 20px 20px;
}

.footer-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
}

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

.company-logo img {
  display: flex;
  align-items: center;
  width: 100px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: #3b82f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.company-tagline {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Footer Sections */
.footer-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  text-align: left;
}

.footer-links {
  list-style: none;
  text-align: start;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  color: #d6d6d6;
  font-weight: 500;
}

.footer-links a:hover {
  color: #3b82f6;
}

/* Trust & Compliance */
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: #94a3b8;
}

.trust-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

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

.trust-icons.isos {
  height: 18px;
  margin-right: 10px;
}

.trust-icons.svgs {
  height: 18px;
  margin-right: 10px;
}

.trust-icon.erp {
  background: #dbeafe;
  color: #3b82f6;
}

.trust-icons.ratings {
  height: 18px;
  margin-right: 10px;
  width: auto;
}

.trust-icon.rating {
  background: #fef3c7;
  color: #f59e0b;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

/* Social Media */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  /* background: #ccd8ec; */
  /* color: white; */
  transform: translateY(-2px);
}

/* 
.social-link svg,
.social-link img {
  width: 30px;
  height: 30px;
} */
.trust-item-footer {
  display: flex;
  /* justify-content: center; */
  color: #d6d6d6;
  background-color: #46445870;
  font-size: 0.875rem;
  margin: 16px;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  text-align: left;
}

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

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

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

.testimonial-quote-icon-top {
  color: #4a4a4a;
  position: absolute;
  top: 15px;
  left: 10px;
  width: 20px;
  height: 30px;
}

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

.testimonial-quote-icon-bottom {
  position: absolute;
  top: 270px;
  left: 315px;
  width: 20px;
  height: 30px;
}

/* Contact Info */
.contact-info {
  font-size: 0.875rem;
  color: #d6d6d6;
  line-height: 1.6;
  font-weight: 600;
  text-align: start;
}

.contact-info strong {
  color: white;
  display: block;
  margin-bottom: 8px;
}

.contact-info a {
  color: #2baae1;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.bottom-bar-copy {
  width: 100%;
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

.bottom-bar {
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Arial, sans-serif;
}

.bottom-container {
  /* display: flex; */
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.copyright-copy {
  display: flex;
  justify-content: center;
  font-size: 14px;
}

.copyright {
  font-size: 14px;
  color: #d6d6d6;
  font-weight: 600;
}

.bottom-links {
  display: flex;
  gap: 20px;
  color: #d6d6d6;
  font-weight: 600;
}

.bottom-links a {
  color: #a9a9a9;
  text-decoration: none;
  font-size: 14px;
}

.bottom-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Help Bar */
.help-bar {
  background: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.875rem;
}

.help-text {
  color: #2a69b7;
  font-weight: 600;
}

.help-text a {
  color: #2baae1;
  text-decoration: none;
}

.help-text a:hover {
  text-decoration: underline;
}

.whatsapp-button {
  background: #25d366;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

.footer-section {
  display: block;
  align-items: center;
  color: #d6d6d6;
  font-weight: 600;
}

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

.made-in-india,
.start-up-in-india {
  border: none !important;
  background-color: #3c3b3b;
  color: white;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .bottom-links {
    display: flow;
  }
  .made-in-india,
  .start-up-in-india {
    border: none !important;
    background-color: #3c3b3b;
    color: white;
    padding: 5px 8px;
    font-size: 14px;
    border-radius: 4px;
  }

  section.hero-gradient.watermark-pattern.py-20.lg\:py-32 {
    padding-top: 0 !important;
  }

  .sm-block {
    display: block !important;
  }
  .small-m > div {
    margin: 10px;
  }
}

#scrollTopBtn {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  /* background: rgba(0, 0, 0, 0.7); */
  color: white;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  z-index: 9999;
  pointer-events: none;
}

#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#scrollTopBtn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.25);
}

/* optional: larger screens slightly different */
@media (min-width: 1024px) {
  #scrollTopBtn {
    right: 32px;
    bottom: 32px;
  }
}

.divider {
  border: 1px solid #ccc;
  margin: 10px 0;
}

.py-20 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.new-s {
  font-size: 3rem;
  line-height: 4rem;
}

@media screen and (max-width: 430px) {
  .respo {
    text-align: center;
    margin-left: 0 !important;
    margin-top: 10px;
  }

  .py-20 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .mb-16 {
    margin-bottom: 2rem;
  }

  .flex.flex-wrap.gap-4 {
    justify-content: center;
  }

  .d-s-none {
    display: none !important;
  }

  .bottom-container p {
    font-size: 12px;
    padding-top: 10px;
  }

  .footer-section {
    padding-bottom: 10px;
  }

  .d-g {
    display: grid !important;
  }
}

.d-lg-none {
  display: none;
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1.2 !important;
  }
}

/* ABOUT */

/* Hero Section */
.hero {
  min-height: 100%;
  display: flex;
  align-items: center;
  /* padding: 80px 0; */
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #0056d2 0%, #0041a3 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(0, 86, 210, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 86, 210, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: #0056d2;
  border: 2px solid rgba(0, 86, 210, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #0056d2;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.campus-illustration {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 86, 210, 0.1) 0%,
    rgba(234, 243, 255, 0.8) 100%
  );
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  animation-delay: -2s;
}
.floating-element:nth-child(3) {
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.building {
  width: 200px;
  height: 250px;
  background: linear-gradient(135deg, #0056d2 0%, #0041a3 100%);
  border-radius: 8px 8px 0 0;
  position: absolute;
  align-content: center;
  bottom: 60px;
  left: 50px;
}

.building::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.dashboard {
  width: 250px;
  height: 200px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  position: absolute;
  top: 80px;
  right: 60px;
  padding: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dashboard-bars {
  display: flex;
  gap: 4px;
  height: 100%;
  align-items: end;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, #0056d2, #ffc043);
  border-radius: 2px;
}

.bar:nth-child(1) {
  height: 60%;
}
.bar:nth-child(2) {
  height: 80%;
}
.bar:nth-child(3) {
  height: 40%;
}
.bar:nth-child(4) {
  height: 90%;
}

.shield {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffc043 0%, #ff9500 100%);
  border-radius: 50%;
  position: absolute;
  top: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

/* Wave Separator */
.wave-separator {
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C300,120 900,0 1200,60 L1200,120 L0,120 Z' fill='%23ffffff' fill-opacity='0.3'/%3E%3C/svg%3E")
    repeat-x;
  background-size: 1200px 60px;
}

/* Journey Section */
.journey {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, #0056d2 0%, #ffc043 100%); */
  border-radius: 20px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 86, 210, 0.3);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0056d2;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-desc {
  color: #475569;
  font-size: 0.95rem;
}

/* Philosophy Section */

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 86, 210, 0.15);
}

.philosophy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, #0056d2, #ffc043); */
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
}

.philosophy-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
}

.philosophy-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0b132b;
}

.philosophy-card p {
  color: #475569;
  line-height: 1.6;
}

/* Difference Section */
.difference {
  background: linear-gradient(
    135deg,
    rgba(0, 86, 210, 0.05) 0%,
    rgba(255, 192, 67, 0.05) 100%
  );
}

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

.difference-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.difference-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0056d2, #ffc043);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.difference-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0b132b;
}

.difference-item p {
  color: #475569;
  line-height: 1.7;
}

/* Where We Operate Section */
.operate {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.india-map {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.map-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.map-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 86, 210, 0.15));
}

.city-dot {
  cursor: pointer;
  transition: all 0.3s ease;
}

.city-dot:hover {
  fill: #ffc043;
}

.city-tooltip {
  position: fixed;
  background: rgba(0, 86, 210, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: translateX(-50%);
}

/* Impact Numbers Section */
.impact {
  background: linear-gradient(
    135deg,
    rgba(0, 86, 210, 0.03) 0%,
    rgba(255, 192, 67, 0.03) 100%
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 86, 210, 0.15);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, #0056d2, #ffc043); */
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0056d2;
  display: inline;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a966d;
  display: inline;
}

.stat-label {
  font-size: 0.95rem;
  color: #475569;
  margin-top: 8px;
  line-height: 1.4;
}

/* Vision Section */
.vision {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vision-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0b132b;
}

.vision-text p {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.8;
}

.vision-visual {
  position: relative;
  height: 400px;
}

.future-campus {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 86, 210, 0.1) 0%,
    rgba(234, 243, 255, 0.8) 100%
  );
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.smart-building {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 290px;
}

.building-base {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #0056d2 0%, #0041a3 100%);
  border-radius: 8px 8px 0 0;
  position: relative;
}

.building-windows {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.3) 0px,
      rgba(255, 255, 255, 0.3) 8px,
      transparent 8px,
      transparent 16px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.3) 0px,
      rgba(255, 255, 255, 0.3) 8px,
      transparent 8px,
      transparent 16px
    );
  align-content: center;
}

.smart-indicators {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffc043;
  animation: pulse 2s ease-in-out infinite;
}

.indicator:nth-child(2) {
  animation-delay: 0.5s;
}
.indicator:nth-child(3) {
  animation-delay: 1s;
}

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

.data-streams {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.stream {
  position: absolute;
  width: 2px;
  height: 90px;
  background: linear-gradient(to bottom, #0056d2, transparent);
  animation: stream 3s ease-in-out infinite;
}

.stream-1 {
  left: -30px;
  animation-delay: 0s;
}
.stream-2 {
  left: 0px;
  animation-delay: 1s;
}
.stream-3 {
  left: 30px;
  animation-delay: 2s;
}

@keyframes stream {
  0%,
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px);
  }
}

.safety-shield {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 3rem;
  animation: float 4s ease-in-out infinite;
}

/* Trusted Institutions Section */
.trusted {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.logo-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  /* padding: 40px 20px; */
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 86, 210, 0.1);
  transition: all 0.3s ease;
  height: 110px;
  align-content: center;
  align-content: center;
}

.logo-item img {
  text-align: center;
  height: 80px;
  justify-self: center;
}

.logo-item:hover {
  transform: translateY(-4px);
  border-color: #0056d2;
  box-shadow: 0 12px 40px rgba(0, 86, 210, 0.1);
}

.logo-item:hover .logo-placeholder {
  color: #0056d2;
}

.trusted-tagline {
  text-align: center;
  margin-top: 60px;
}

.trusted-tagline p {
  font-size: 1.2rem;
  color: #475569;
  font-style: italic;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, #eaf3ff 0%, #ffffff 100%);
}

.cta-content {
  text-align: center;
  position: relative;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  /* background: linear-gradient(135deg, #0056d2 0%, #0041a3 100%); */
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
}

.cta-content p {
  font-size: 1.3rem;
  color: #475569;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-final {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

.cta-visual {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.handshake-illustration {
  position: relative;
  width: 200px;
  height: 100px;
}

.network-nodes {
  position: relative;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0056d2, #ffc043);
  animation: nodeGlow 3s ease-in-out infinite;
}

.node-1 {
  top: 20px;
  left: 20px;
}
.node-2 {
  top: 20px;
  right: 20px;
  animation-delay: 1s;
}
.node-3 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2s;
}

@keyframes nodeGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 86, 210, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 192, 67, 0.6);
  }
}

.connecting-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #0056d2, #ffc043);
  animation: lineGlow 3s ease-in-out infinite;
}

.line-1 {
  top: 30px;
  left: 40px;
  right: 40px;
}

.line-2 {
  top: 30px;
  left: 30px;
  width: 2px;
  height: 50px;
  transform: rotate(45deg);
  transform-origin: top;
  animation-delay: 1.5s;
}

@keyframes lineGlow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* Footer Section */
.footer {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, #0b132b 0%, #1a2332 100%);
  color: white;
}

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

.footer-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #eaf3ff;
}

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

.footer-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.footer-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.footer-point span:last-child {
  color: #eaf3ff;
  line-height: 1.5;
}

.footer-cta {
  margin-top: 40px;
}

.footer-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #eaf3ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-visual {
    height: 300px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* .timeline {
    grid-template-columns: 1fr;
  } */

  /* .philosophy-grid,
  .difference-grid,
  .stats-grid,
  .logos-grid {
    grid-template-columns: 1fr;
  } */

  .building-base {
    width: 100%;
    height: 120px !important;
  }

  .vision-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .vision-visual {
    height: 300px;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

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

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

@media screen and (width: 768px) {
  .smart-building {
    transform: translateX(-50%);
    width: 350px !important;
    height: 180px !important;
  }
}

.leadership-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-top: 3px solid #0056d2;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 86, 210, 0.12);
}

/* .team-card:nth-child(2) {
  border-top: 3px solid;
  border-image: linear-gradient(90deg, #0056d2, #2563eb) 1;
} */

.team-card:nth-child(3) .profile-image {
  position: relative;
}

/* .team-card:nth-child(3) .profile-image::after {
  content: "⚡";
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #0056d2;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 3px solid white;
} */

.profile-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, #0056d2, #2563eb); */
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: white;
  font-weight: 600;
  /* border: 4px solid rgba(0, 86, 210, 0.1); */
  box-shadow: 0 8px 24px rgba(0, 86, 210, 0.15);
}

.profile-image-ag {
  background: url(../img/ashish.png);
  background-size: cover;
}

.profile-image-pg {
  background: url(../img/pranjali.png);
  background-size: cover;
}

.profile-image-bs {
  background: url(../img/bishno.png);
  background-size: cover;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.member-title {
  font-size: 1rem;
  color: #0056d2;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-description {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 24px;
}

.member-quote {
  font-style: italic;
  color: #2563eb;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding: 0 16px;
}

.member-quote::before,
.member-quote::after {
  content: '"';
  font-size: 1.25rem;
  font-weight: 600;
  color: #0056d2;
}

.closing-section {
  text-align: center;
  position: relative;
}

.closing-tagline {
  font-size: 1.375rem;
  color: #374151;
  font-style: italic;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}

.tagline-underline {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  /* background: linear-gradient(
    90deg,
    transparent,
    #0056d2,
    #2563eb,
    transparent
  ); */
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  border-radius: 2px;
  animation: underlineExpand 2.5s ease-out 0.8s forwards;
}

@keyframes underlineExpand {
  to {
    width: 70%;
  }
}

.wave-divider {
  margin-top: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0056d2, transparent);
  opacity: 0.3;
  border-radius: 1px;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-card {
    padding: 32px 24px;
  }

  .closing-tagline {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .leadership-section {
    padding: 60px 16px;
  }

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

  .profile-image {
    width: 120px;
    height: 120px;
    font-size: 2rem;
  }

  .member-name {
    font-size: 1.25rem;
  }
}
