:root {
  --primary-gradient: linear-gradient(145deg, #1e3a8a, #2563eb, #3b82f6);
  --secondary-gradient: linear-gradient(145deg, #059669, #10b981, #34d399);
  --accent-gradient: linear-gradient(145deg, #d97706, #f59e0b, #fbbf24);
  --dark-gradient: linear-gradient(135deg, #0b1e33, #1e3a8a);
  --card-shadow:
    0 20px 40px rgba(0, 30, 60, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  --hover-shadow:
    0 30px 60px rgba(30, 58, 138, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
}

.edu-hero {
  background: linear-gradient(135deg, #0b1e33, #1e3a8a, #2563eb);
  padding: 200px 0 150px;
  position: relative;
  overflow: hidden;
  color: white;
}

.edu-hero::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: repeating-linear-gradient(
    45deg,
    rgba(37, 99, 235, 0.03) 0px,
    rgba(37, 99, 235, 0.03) 2px,
    transparent 2px,
    transparent 10px
  );
  animation: moveBg 20s linear infinite;
}

.edu-hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.2) 0%,
    transparent 70%
  );
  animation: pulseGlow 4s ease-in-out infinite;
}

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

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

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

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-floating-icon {
  position: absolute;
  font-size: 2rem;
  color: rgba(37, 99, 235, 0.2);
  animation: float 6s ease-in-out infinite;
}

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

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

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(145deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: "✨";
  position: absolute;
  top: -20px;
  right: -40px;
  font-size: 3rem;
  animation: sparkle 2s ease-in-out infinite;
  -webkit-text-fill-color: initial;
  color: #fbbf24;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2) rotate(10deg);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.9;
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.company-banner {
  background: white;
  padding: 30px 0;
  text-align: center;
  border-bottom: 3px solid #2563eb;
}

.company-name {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.company-sub {
  font-size: 1.8rem;
  color: #059669;
  font-weight: 500;
}

.company-type {
  font-size: 1.2rem;
  color: #6b7280;
  letter-spacing: 2px;
}

.stats-bar {
  padding: 50px 0;
  background: white;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stat-card-modern {
  background: white;
  padding: 30px;
  border-radius: 30px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.4s;
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.stat-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bounce 2s ease-in-out infinite;
}

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

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

.stat-number-modern {
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}

.about-glass {
  padding: 100px 0;
  background: linear-gradient(145deg, #f0f9ff, #eff6ff);
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  padding: 60px;
  box-shadow: 0 30px 60px rgba(30, 58, 138, 0.1);
  transition: all 0.5s ease;
}

.glass-card:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 80px rgba(30, 58, 138, 0.2);
}

.glass-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.glass-title::before {
  content: "“";
  font-size: 8rem;
  position: absolute;
  left: -60px;
  top: -40px;
  opacity: 0.2;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #1e293b;
  margin-bottom: 25px;
  padding-left: 30px;
  border-left: 5px solid #2563eb;
}

.vision-mission-3d {
  padding: 100px 0;
  background: white;
}

.flip-card {
  background-color: transparent;
  height: 400px;
  perspective: 2000px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--card-shadow);
}

.flip-front {
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  color: white;
}

.flip-front i {
  font-size: 5rem;
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
}

.flip-front h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.flip-back {
  background: linear-gradient(145deg, #059669, #10b981);
  color: white;
  transform: rotateY(180deg);
}

.flip-back ul {
  text-align: left;
  list-style: none;
  padding: 0;
}

.flip-back li {
  margin: 20px 0;
  font-size: 1.1rem;
  padding-left: 30px;
  position: relative;
}

.flip-back li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: #fbbf24;
}

.wave-section {
  padding: 100px 0;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  position: relative;
}

.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-repeat: repeat-x;
  background-position: bottom;
  animation: wave 15s linear infinite;
}

@keyframes wave {
  0% {
    background-position: 0 bottom;
  }

  100% {
    background-position: 1440px bottom;
  }
}

.approach-card-wave {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.approach-card-wave:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.wave-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  border-radius: 30px 30px 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transition: all 0.4s;
}

.wave-icon i {
  font-size: 3rem;
  color: white;
  transform: rotate(-45deg);
}

.approach-card-wave:hover .wave-icon {
  border-radius: 0 30px 30px 30px;
  transform: rotate(0deg);
}

.approach-card-wave h4 {
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 15px;
}

.approach-card-wave p {
  color: #4b5563;
}

.cinematic-commitment {
  padding: 150px 0;
  background: linear-gradient(145deg, #0b1e33, #1e3a8a);
  position: relative;
  overflow: hidden;
  color: white;
}

.cinematic-commitment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="10" cy="10" r="2" fill="white"/><circle cx="90" cy="30" r="2" fill="white"/><circle cx="30" cy="80" r="2" fill="white"/><circle cx="70" cy="60" r="2" fill="white"/></svg>');
  animation: stars 20s linear infinite;
}

@keyframes stars {
  from {
    transform: translateY(0);
  }

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

.cinematic-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cinematic-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 5px;
}

.cinematic-text {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 50px;
  padding: 40px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.cinematic-quote {
  font-size: 2rem;
  font-style: italic;
  position: relative;
  padding: 40px;
}

.cinematic-quote::before {
  content: '"';
  font-size: 10rem;
  position: absolute;
  left: -20px;
  top: -50px;
  opacity: 0.2;
  color: #fbbf24;
}

.cinematic-quote::after {
  content: '"';
  font-size: 10rem;
  position: absolute;
  right: -20px;
  bottom: -80px;
  opacity: 0.2;
  color: #2563eb;
}

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

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #0dcaf0;
  transform: translateY(-3px);
}

.newsletter-form {
  margin-top: 20px;
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 15px;
  border: none;
  border-radius: 8px 0 0 8px;
  outline: none;
}

.newsletter-form button {
  padding: 14px 22px;
  border: none;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(135deg, #0dcaf0, #0a58ca);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 202, 240, 0.4);
}

@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

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

  .hero-title::after {
    right: -30px;
    font-size: 2.5rem;
  }

  .glass-card {
    padding: 50px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

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

  .hero-title::after {
    right: -25px;
    font-size: 2rem;
    top: -15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    padding: 15px;
  }

  .company-name {
    font-size: 2.5rem;
  }

  .company-sub {
    font-size: 1.4rem;
  }

  .glass-card {
    padding: 40px;
    border-radius: 40px;
  }

  .glass-title {
    font-size: 2.5rem;
  }

  .glass-title::before {
    font-size: 6rem;
    left: -40px;
    top: -30px;
  }

  .stats-bar .col-md-3 {
    width: 50%;
  }

  .wave-section .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .wave-section .col-md-3 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .flip-card {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

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

  .hero-title::after {
    display: none;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 15px;
    line-height: 1.6;
  }

  .hero-floating-icon {
    font-size: 1.5rem;
  }

  .company-name {
    font-size: 2rem;
  }

  .company-sub {
    font-size: 1.2rem;
  }

  .company-type {
    font-size: 1rem;
  }

  /* Stats - 2 cards per row on mobile */
  .stats-bar {
    margin-top: -30px;
    padding: 30px 0;
  }

  .stat-card-modern {
    padding: 20px;
  }

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

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

  .glass-card {
    padding: 30px;
    border-radius: 30px;
  }

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

  .glass-title::before {
    font-size: 5rem;
    left: -30px;
    top: -25px;
  }

  .glass-text {
    font-size: 1rem;
    padding-left: 20px;
    line-height: 1.7;
  }

  .flip-card {
    height: 350px;
  }

  .flip-front,
  .flip-back {
    padding: 30px;
  }

  .flip-front i {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }

  .flip-front h3 {
    font-size: 2rem;
  }

  .flip-front p {
    font-size: 0.95rem;
  }

  .flip-back li {
    font-size: 0.95rem;
    margin: 12px 0;
  }

  /* Wave section */
  .wave-section {
    padding: 60px 0;
  }

  .wave-section h2 {
    font-size: 2rem !important;
    margin-bottom: 40px !important;
  }

  .approach-card-wave {
    padding: 30px 20px;
  }

  .approach-card-wave h4 {
    font-size: 1.2rem;
  }

  .approach-card-wave p {
    font-size: 0.9rem;
  }

  .wave-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .wave-icon i {
    font-size: 2rem;
  }

  .cinematic-commitment {
    padding: 80px 0;
  }

  .cinematic-title {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .cinematic-text {
    font-size: 1rem;
    padding: 25px;
    line-height: 1.6;
  }

  .cinematic-quote {
    font-size: 1.3rem;
    padding: 20px;
  }

  .cinematic-quote::before,
  .cinematic-quote::after {
    font-size: 5rem;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
    padding: 12px;
  }

  .hero-floating-icon {
    font-size: 1.2rem;
  }

  .company-name {
    font-size: 1.8rem;
  }

  .stats-bar {
    margin-top: -20px;
  }

  .stat-card-modern {
    padding: 15px;
  }

  .glass-card {
    padding: 25px;
  }

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

  .glass-title::before {
    font-size: 4rem;
    left: -20px;
    top: -20px;
  }

  .flip-card {
    height: 320px;
  }

  .flip-front,
  .flip-back {
    padding: 25px;
  }

  .flip-front i {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .flip-front h3 {
    font-size: 1.5rem;
  }

  .flip-front p {
    font-size: 0.85rem;
  }

  .flip-back li {
    font-size: 0.85rem;
    margin: 8px 0;
  }

  .wave-section .row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .approach-card-wave {
    padding: 25px 20px;
  }

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

  .cinematic-quote {
    font-size: 1.1rem;
  }
}

@media (max-width: 426px) {
  .stats-bar .col-6 {
    width: 100%;
  }

  .stat-card-modern {
    max-width: 280px;
    margin: 0 auto;
  }

  .flip-card {
    height: 380px;
  }

  .contact-info li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info li i {
    margin-bottom: 5px;
  }
}
