* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

:root {
  --primary-gradient-techgrow: linear-gradient(
    135deg,
    #26abe3 0%,
    #1c678d 100%
  );
  --primary-gradient-grind: linear-gradient(
    135deg,
    #0a1f0a 0%,
    #1e4d1e 50%,
    #2d5a2d 100%
  );
  --accent-green: #00cc44;
  --accent-yellow-green: #88cc00;
  --accent-lime: #66ff00;
  --accent-forest: #228b22;
  --accent-blue: #00d4ff;
  --techgrow-blue: #26abe3;
  --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  --card-shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.2);
  --text-dark: #2c3e50;
  --text-light: rgba(255, 255, 255, 0.9);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background: #000;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.program-container {
  max-width: 2080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tech Grid Background */
.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 123, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #000 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 123, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 123, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(0, 123, 255, 0.1) 0%,
      transparent 50%
    );
  animation: pulse 4s ease-in-out infinite;
}

/* Navigation Styles */
.hero-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: transparent; /* Always transparent */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  max-width: 100vw;
  overflow-x: hidden;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
}

.hero-nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 0;
  margin: 0;
}

.hero-nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

/* Login Button Styling */
.hero-nav-links .login-btn {
  background: linear-gradient(45deg, #00d4ff, #007bff);
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-nav-links .login-btn::before {
  background: linear-gradient(45deg, #007bff, #00d4ff);
}

.hero-nav-links .login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
  background: linear-gradient(45deg, #007bff, #00d4ff);
}

/* Toggle button */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: #00d4ff;
  cursor: pointer;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid #00d4ff;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-toggle:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

/* Hamburger animation */
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #00d4ff;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.show {
  display: block;
  opacity: 1;
}

/* Demo content */
.demo-content {
  margin-top: 100px;
  text-align: center;
  color: white;
}

.demo-section {
  padding: 4rem 2rem;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .hero-nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    gap: 1rem;
    border-radius: 0 0 0 15px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;

    display: flex; /* always flex */
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .hero-nav-links.show {
    transform: translateX(0);
  }

  .hero-nav-links li {
    width: 100%;
  }

  .hero-nav-links li a {
    font-size: 1.1rem;
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-radius: 8px;
  }

  .hero-nav-links .login-btn {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
  }

  .hero-navbar {
    padding: 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-navbar {
    padding: 0.75rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero-nav-links {
    max-width: 280px;
    padding: 1.5rem;
  }

  .hero-nav-links li a {
    font-size: 1rem;
    padding: 0.875rem;
  }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-nav-links {
    gap: 1.5rem;
  }

  .hero-nav-links li a {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}

/* Large screen optimization */
@media (min-width: 1200px) {
  .hero-nav-links {
    gap: 2.5rem;
  }

  .hero-nav-links li a {
    font-size: 1.1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.hero-nav-links li a:focus,
.nav-toggle:focus,
.login-btn:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  animation: fadeInUp 1.5s ease-out;
}

.dost-logo-container {
  perspective: 1000px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.dost-logo {
  width: 150px;
  height: 150px;
  position: relative;
  transform-style: preserve-3d;
  animation: spinY 8s linear infinite;
  filter: drop-shadow(0 0 30px rgba(0, 123, 255, 0.8));
}

@keyframes spinY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.dost-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dost-logo:hover {
  animation-duration: 2s;
  filter: drop-shadow(0 0 50px rgba(0, 123, 255, 1));
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  /* background: linear-gradient(45deg, #007bff, #00d4ff, #ffffff); */
  /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
  background-clip: text;
  position: relative;
  text-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
}

.hero h1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 123, 255, 0.2),
    transparent
  );
  animation: scanline 2s linear infinite;
}

@keyframes scanline {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.hero .tagline {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #00d4ff;
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
}

.hero .tagline::before,
.hero .tagline::after {
  content: ">";
  color: #007bff;
  font-weight: bold;
  animation: blink 1.5s infinite;
}

.hero .tagline::before {
  margin-right: 10px;
}

.hero .tagline::after {
  margin-left: 10px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  text-decoration: none;
  border: 2px solid #007bff;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover {
  background: linear-gradient(45deg, #0056b3, #007bff);
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
  transform: translateY(-2px);
}

.cta-button:hover::before {
  left: 100%;
}

/* Floating Tech Elements */
.tech-element {
  position: absolute;
  color: rgba(0, 123, 255, 0.3);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.tech-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.tech-element:nth-child(2) {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.tech-element:nth-child(3) {
  bottom: 25%;
  left: 20%;
  animation-delay: 4s;
}

.tech-element:nth-child(4) {
  top: 60%;
  right: 25%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.7;
  }
}

/* Services Section */
.services {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #007bff, transparent);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #007bff;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 123, 255, 0.3);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #007bff;
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
  background: rgba(0, 123, 255, 0.05);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 0rem;
  color: #007bff;
  position: relative;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: #cccccc;
  line-height: 1.8;
}

/* Programs Section */

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Category Filter Buttons */
.category-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 212, 255, 0.3);
  color: #ffffff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  color: #00d4ff;
  transform: translateY(-2px);
}

/* Program Categories */
.program-category {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.category-title {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-title::before {
  content: "";
  width: 4px;
  height: 40px;
  background: linear-gradient(135deg, #00d4ff, #007bff);
  border-radius: 2px;
}

.category-description {
  color: #cccccc;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 800px;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2.5rem;
}

.program-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(0, 123, 255, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.program-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00d4ff, #007bff, #00d4ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.program-card:hover::before {
  opacity: 1;
}

.program-card:hover::after {
  transform: scaleX(1);
}

.program-card:hover {
  transform: translateY(-10px);
  border-color: #00d4ff;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.program-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.program-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  border: 2px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
}

.program-card:hover .program-img {
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  transform: scale(1.05);
}

.program-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

.program-description {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00d4ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.program-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.program-link:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.program-link:hover::after {
  transform: translateX(5px);
}

/* Hide/Show Categories */
.program-category.hidden {
  display: none;
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .program-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .program-card {
    padding: 2rem;
  }

  .program-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .program-img {
    width: 60px;
    height: 60px;
    padding: 6px;
  }

  .program-title {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .category-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .program-card {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
/* end of programs */

/* Tech Stats Section */
.tech-stats {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.9);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #007bff, transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.contact-item {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 123, 255, 0.3);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.contact-item:hover {
  border-color: #007bff;
  background: rgba(0, 123, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
}

.contact-icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1.5rem;
}

.contact-item h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item p {
  color: #cccccc;
  line-height: 1.6;
}

@media (max-width: 908px) {
  .hero .tagline {
    font-size: 20px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
    font-weight: 600;
  }

  .hero .tagline {
    font-size: 15px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .services-grid,
  .program-cards {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
.loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  transform: translateX(-100%);
  animation: loadingBar 2s ease-out;
  z-index: 1000;
}

@keyframes loadingBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.mission-vision {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #000 0%,
    #0a0a0a 25%,
    #1a1a2e 50%,
    #000 100%
  );
  position: relative;
  overflow: hidden;
}

/* Animated background particles */
.mission-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 150, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    );
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(-20px) translateY(-10px);
  }
  66% {
    transform: translateX(20px) translateY(10px);
  }
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00d4ff, #0099cc, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  }
  to {
    text-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
  }
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

.about-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
  position: relative;
  z-index: 2;
}

.mission-vision {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 3.5rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00d4ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #a0a0a0;
  margin-bottom: 4rem;
  font-weight: 300;
}

.about-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Enhanced card design */
.about-card {
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.8),
    rgba(26, 26, 46, 0.6)
  );
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Hover glow effect */
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transition: left 0.8s;
}

.about-card:hover::before {
  left: 100%;
}

.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.about-card h3 {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.about-card h3 img {
  width: 40px !important;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.about-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  border-radius: 2px;
}

.about-card p {
  color: #e0e0e0;
  line-height: 1.8;
  text-align: center;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

.about-card.full {
  width: 100%;
  margin-bottom: 2rem;
}

.about-card.half {
  flex: 1 1 48%;
  min-width: 320px;
}

.technologies h3 {
  text-align: left;
}

.technologies p {
  text-align: left;
}

/* Enhanced mandate card */
.mandate-card {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(0, 0, 0, 0.8)
  );
  border: 2px solid rgba(0, 212, 255, 0.4);
}

/* Core Values Enhancement */
.core-values {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.core-values li {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(0, 0, 0, 0.6)
  );
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.core-values li::before {
  content: "✦";
  color: #00d4ff;
  font-size: 1.2rem;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.core-values li:hover {
  transform: translateY(-5px);
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.2),
    rgba(0, 0, 0, 0.8)
  );
  border-color: rgba(0, 212, 255, 0.8);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.core-values li:hover::before {
  color: #ffffff;
  transform: scale(1.2) rotate(360deg);
}

/* Floating animation for cards */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-card:nth-child(odd) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}

.about-card:nth-child(even) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}

/* Animation for scroll effects */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .about-row {
    flex-direction: column;
  }

  .about-card.half {
    width: 100%;
  }

  .about-card {
    padding: 2rem;
  }

  .core-values {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .about-card {
    padding: 1.5rem;
  }

  .core-values {
    grid-template-columns: 1fr 1fr;
  }
}

/* Scroll animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(
    135deg,
    #000 0%,
    #0a0a0a 25%,
    #1a1a2e 50%,
    #000 100%
  );
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 150, 255, 0.08) 0%,
      transparent 50%
    );
  animation: footerGlow 15s ease-in-out infinite;
}

@keyframes footerGlow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-main {
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #00d4ff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, transparent);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00d4ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #00d4ff;
  transform: translateX(5px);
}

.footer-links a::before {
  content: "▶";
  font-size: 0.7rem;
  color: #00d4ff;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-info {
  list-style: none;
}

.footer-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
}

.footer-icon {
  width: 20px;
  height: 20px;
  background: rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #00d4ff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding: 10px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
  gap: 0.5rem;
}
.footer-credit {
  color: #cccccc;
  font-size: 0.9rem;
  text-align: center;
}

.footer-credit strong {
  color: #00d4ff;
  font-weight: 600;
}

.footer-date {
  color: #999;
  font-size: 0.85rem;
  font-style: italic;
}

.footer-tech-badge {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(0, 0, 0, 0.6)
  );
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: #00d4ff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-tech-badge::before {
  content: "⚡";
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 30px 0 20px;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
  display: none;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
}

.scroll-to-top.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  margin-top: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: scale(1.01);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.login-btn {
  background: #00d4ff;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background: #00aacc;
  color: #fff;
}

/* Highlights Section */
.highlights {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.highlights::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 150, 255, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(0, 212, 255, 0.04) 0%,
      transparent 50%
    );
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(-20px) translateY(-10px);
  }
  66% {
    transform: translateX(20px) translateY(10px);
  }
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00d4ff, #0099cc, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  }
  to {
    text-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
  }
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.highlight-card {
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.8),
    rgba(26, 26, 46, 0.6)
  );
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.1);
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transition: left 0.8s;
  z-index: 1;
}

.highlight-card:hover::before {
  left: 100%;
}

.highlight-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.3);
}

.video-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #000;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.3s ease;
}

.highlight-card:hover .video-container iframe {
  transform: scale(1.05);
}

.card-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 1.5rem;
  color: #00d4ff;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.card-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  border-radius: 2px;
}

.card-description {
  color: #cccccc;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.card-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #999;
  font-size: 0.9rem;
}

.meta-icon {
  width: 20px;
  height: 20px;
  background: rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #00d4ff;
}

.social-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.8rem;
  color: #00d4ff;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.facebook-indicator {
  background: rgba(24, 119, 242, 0.2);
  border-color: rgba(24, 119, 242, 0.5);
  color: #1877f2;
}

.youtube-indicator {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
  color: #ff0000;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.play-button:hover {
  background: rgba(0, 212, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.stat-item:hover {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .video-container {
    height: 200px;
  }

  .card-content {
    padding: 1.5rem;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .card-content {
    padding: 1rem;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }
}

/* Animation for cards */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.highlight-card:nth-child(odd) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}

.highlight-card:nth-child(even) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}

/* Scroll animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* LOGIN MODAL */

.loginModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.loginModal-content {
  background-color: #111;
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid #00d4ff;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.modal-content-program {
  background-color: #111;
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid #00d4ff;
  width: 200%;
  max-width: 1000px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.loginModal-content input {
  padding: 0.6rem;
  width: 100%;
  margin-top: 1rem;
  border-radius: 5px;
  border: none;
}

.loginModal-content button {
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background-color: #00d4ff;
  border: none;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border-radius: 5px;
}

.close {
  float: right;
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
}

.testimonial-section {
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #090909 0%, lab(9.61% 5.88 -23.13) 100%);
  border-radius: 12px;
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #007bff;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #555;
}

.testimonial-section h3 {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author {
  font-weight: bold;
  color: #007bff;
}

.application-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.process-step {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #007bff;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.step-title {
  margin-top: 0.5rem;
  color: #333;
  font-weight: bold;
}

.step-description {
  color: #666;
  margin-top: 0.5rem;
}

.faq-section {
  margin: 2rem 0;
}

.faq-item {
  background: white;
  margin: 1rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  margin: 0.5rem 0;
  color: #05044c;
}

.faq-answer.active {
  padding: 1rem 1.5rem;
  max-height: 200px;
}

.faq-toggle {
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.notification-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  margin: 1rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.notification-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
  );
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.notification-content {
  position: relative;
  z-index: 1;
}

.contact-info-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.contact-card {
  background: black;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  color: #007bff;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close:hover {
  color: #000;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #007bff;
}

.btn-submit {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.resource-link {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.resource-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: #007bff;
}

.progress-tracker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.progress-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #dee2e6;
  transform: translateY(-50%);
}

.progress-step:last-child::after {
  display: none;
}

.progress-step.active::after {
  background: #007bff;
}

.progress-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
  background: #007bff;
  color: white;
}

.progress-text {
  color: black;
}

/* ≤ 780px: Two columns, slightly reduced sizes */
@media (max-width: 780px) {
  .progress-tracker {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .progress-step {
    flex: 1 1 45%;
    max-width: 45%;
    margin-bottom: 1rem;
  }

  .progress-step::after {
    display: none;
  }
}

/* ≤ 600px: Stack into full-width rows, smaller elements */
@media (max-width: 600px) {
  .progress-step {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0.5rem;
  }

  .progress-circle {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .progress-text {
    font-size: 0.9rem;
  }
}

/* ≤ 400px: Reduce spacing and font sizes */
@media (max-width: 400px) {
  .progress-step {
    padding: 0.4rem;
  }

  .progress-circle {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .progress-text {
    font-size: 0.85rem;
  }
}

/* ≤ 300px: Ultra-compact view */
@media (max-width: 300px) {
  .progress-tracker {
    padding: 0.5rem 0.2rem;
  }

  .progress-step {
    padding: 0.3rem;
  }

  .progress-circle {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .progress-text {
    font-size: 0.75rem;
  }
}

/* learn more  */

.learn-more-highlight:hover,
.learn-more-highlight:focus {
  transform: scale(1.07);
  box-shadow: 0 0 24px 6px #00d4ffcc, 0 0 0 4px #007bff44;
  animation: pulseGlow 1s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 16px 2px #00d4ff88;
  }
  100% {
    box-shadow: 0 0 32px 8px #00d4ffcc;
  }
}

.video-carousel-section h3 {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-cards-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.video-cards-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.video-cards-section h3 {
  font-size: 1.8rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.video-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.3);
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.video-card video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover video {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 212, 255, 0.2);
  border: 3px solid rgba(0, 212, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  z-index: 10;
}

.video-card:hover .play-button {
  opacity: 1;
}

.play-button:hover {
  background: rgba(0, 212, 255, 0.4);
  border-color: #00d4ff;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid #00d4ff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 3px;
}

.video-info {
  padding: 1.5rem;
  position: relative;
}

.video-title {
  color: #00d4ff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.video-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.video-duration {
  background: rgba(0, 212, 255, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  font-weight: 500;
}

.video-category {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-status {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #00d4ff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .video-card video {
    height: 250px;
  }

  .video-info {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .video-card video {
    height: 200px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button::after {
    border-left: 15px solid #00d4ff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
}

.custom-tabs .nav-link {
  font-weight: bold;
  font-size: 1.05rem;
  color: #00d4ff;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease-in-out;
}

.custom-tabs .nav-link:hover {
  background-color: #e6faff;
  color: #007bff;
  border-color: #00d4ff;
}

.custom-tabs .nav-link.active {
  background: linear-gradient(90deg, #00d4ff, #007bff);
  color: white;
  border-color: #007bff;
  box-shadow: 0 0 10px #00d4ff88;
}

/* techgrow */

.techgrow-hero {
  background: var(--primary-gradient-techgrow);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.techgrow-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, #26abe3 0%, transparent 60%),
    radial-gradient(circle at bottom right, #5bc4f1 0%, transparent 60%),
    radial-gradient(circle at center, #1c678d 0%, transparent 80%);
  pointer-events: none;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  color: var(--text-light);
}

.floating-shape:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  color: var(--text-light);
}

.floating-shape:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
  color: var(--text-light);
}

.container-techgrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-content-techgrow {
  text-align: center;
  padding: 4rem 0;
}

.hero-title-techgrow {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-light);
  text-shadow: 0 0 30px rgb(6, 177, 230);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-subtitle-techgrow {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.2s both;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid-techgrow {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1.2rem;
  margin-top: 2rem;

  padding: 1rem 0;
}

.benefit-card-techgrow {
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid #00d4ff;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.benefit-card-techgrow::before {
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid #00d4ff;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  min-width: 100px;
  max-width: 240px;
  text-align: center;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.benefit-card-techgrow:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.benefit-card-techgrow:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.benefit-title {
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.benefit-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-techgrow {
  padding: 5rem 0;
  position: relative;
}

.about-section-techgrow {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title-techgrow {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--techgrow-blue);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle-techgrow {
  font-size: 1.2rem;
  color: #08aad3;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-content-techgrow {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
}

.about-text-techgrow {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: justify;
  animation: fadeInUp 0.8s ease-out;
}

.images-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fadeInRight 1s ease-out 0.6s both;
}

.image-container {
  position: relative;
}

.about-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.image-container::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.1),
    rgba(37, 99, 235, 0.05)
  );
  border-radius: 15px;
  z-index: 1;
  transition: all 0.3s ease;
}

.image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 212, 255, 0.1) 50%,
    transparent 70%
  );
  border-radius: 15px;
  z-index: 3;
  opacity: 0;
  transition: all 0.5s ease;
  transform: translateX(-100%);
}

.image-container:hover .about-image {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.image-container:hover::before {
  transform: scale(1.02);
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.15),
    rgba(37, 99, 235, 0.1)
  );
}

.image-container:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

/* Animation delays for stacked images */
.image-container:nth-child(1) {
  animation: fadeInRight 1s ease-out 0.6s both;
}

.image-container:nth-child(2) {
  animation: fadeInRight 1s ease-out 0.8s both;
}

.image-container:nth-child(3) {
  animation: fadeInRight 1s ease-out 1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Tablet - Adjust hero layout and font sizes */
@media (max-width: 1024px) {
  .hero-content-techgrow {
    padding: 3rem 1rem;
  }

  .hero-title-techgrow {
    font-size: clamp(2rem, 6vw, 3rem);
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero-subtitle-techgrow {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .benefits-grid-techgrow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* Mobile - Stack content vertically, reduce paddings and font sizes */
@media (max-width: 768px) {
  .techgrow-hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    min-height: auto;
  }

  .hero-title-techgrow {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-subtitle-techgrow {
    font-size: 0.9rem;
  }

  .benefits-grid-techgrow {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .benefit-card-techgrow {
    max-width: 100%;
    width: 100%;
  }
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .images-container {
    order: -1;
    gap: 1.5rem;
  }

  .about-image {
    height: 250px;
  }

  .container-techgrow {
    padding: 0 1rem;
  }
}

/* Extra small devices - reduce more spacing */
@media (max-width: 480px) {
  .hero-content-techgrow {
    padding: 2rem 1rem;
  }

  .hero-title-techgrow {
    font-size: 1.8rem;
  }

  .hero-subtitle-techgrow {
    font-size: 0.85rem;
  }

  .benefit-icon {
    font-size: 2rem;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .benefit-description {
    font-size: 0.85rem;
  }
  .section-techgrow {
    padding: 3rem 0;
  }

  .about-image {
    height: 200px;
  }

  .images-container {
    gap: 1rem;
  }
}

.success-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.programs-techgrow {
  padding: 120px 0;
  background: linear-gradient(135deg, #0899ec 0%, #120461 100%);
  position: relative;
}

.programs-techgrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

/* grind */

.grind-hero {
  background: var(--primary-gradient-grind);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.grind-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 204, 68, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(136, 204, 0, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(102, 255, 0, 0.05) 0%,
      transparent 80%
    );
  pointer-events: none;
}

.container-grind {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-content-grind {
  text-align: center;
  padding: 4rem 0;
}

.hero-title-grind {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-green);
  text-shadow: 0 0 30px rgba(0, 204, 68, 0.4);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-subtitle-grind {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.2s both;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.benefits-grid-grind {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.benefit-card-grind {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.benefit-card-grind::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-green),
    var(--accent-lime),
    var(--accent-yellow-green)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card-grind::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 204, 68, 0.3), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.benefit-card-grind:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 204, 68, 0.3), 0 0 40px rgba(0, 204, 68, 0.2);
  border-color: var(--accent-green);
}

.benefit-card-grind:hover::before {
  transform: scaleX(1);
}

.benefit-card-grind:hover::after {
  width: 300px;
  height: 300px;
}

/* Card glow effect */
.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 204, 68, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.benefit-card-grind:hover .card-glow {
  opacity: 1;
  animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Card shine effect */
.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.8s ease;
  pointer-events: none;
}

.benefit-card-grind:hover .card-shine {
  left: 100%;
}

.benefit-title-grind {
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.benefit-description-grind {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-grind {
  padding: 5rem 0;
  position: relative;
}

.about-section-grind {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title-grind {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-forest);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle-grind {
  font-size: 1.2rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === Background Image Section === */
.about-section-grind-bg {
  position: relative;
  background: url("/assets/images/grind/grind-about.jpg") center/cover no-repeat !important;
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle dark overlay for better contrast */
.about-section-grind-bg .about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 31, 10, 0.7) 0%,
    rgba(30, 77, 30, 0.6) 50%,
    rgba(45, 90, 45, 0.5) 100%
  );
  z-index: 1;
}

.about-content-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* 🎨 Title Styling */
.section-title-grind {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent-green);
  text-align: center;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(0, 204, 68, 0.8), 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 0.8s ease-out;
}

.section-subtitle-grind {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

/* 🎴 Glassmorphism Card Effect */
.about-text-grind {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;

  /* Glass card styling */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);

  border-radius: 24px;
  padding: 3.5rem;

  /* Elevated shadow */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  /* Subtle border */
  border: 1px solid rgba(255, 255, 255, 0.4);

  /* Animation */
  animation: fadeInUp 1s ease-out 0.4s both;

  /* Hover effect */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text-grind:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* 📝 Text Content Styling */
.about-text-grind p {
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
  color: #2c3e50;
  line-height: 1.9;
  text-align: justify;
}

.about-text-grind p:first-of-type {
  font-size: 1.12rem;
  color: #1a252f;
}

.about-text-grind strong {
  color: var(--accent-forest);
  font-weight: 700;
}

.about-text-grind em {
  color: #228b22;
  font-style: italic;
}

/* ✅ Enhanced Bullet Points */
.about-points-grind {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  background: rgba(0, 204, 68, 0.05);
  border-left: 4px solid var(--accent-green);
  border-radius: 12px;
  padding: 1.5rem 2rem;
}

.about-points-grind li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  position: relative;
  padding-left: 2.5rem;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.about-points-grind li:last-child {
  margin-bottom: 0;
}

.about-points-grind li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.3rem;
  width: 28px;
  height: 28px;
  background: rgba(0, 204, 68, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-points-grind li:hover {
  padding-left: 3rem;
  color: var(--accent-forest);
}

.about-points-grind li:hover::before {
  background: var(--accent-green);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 204, 68, 0.5);
}

/* 🎯 Ending Statement */
.about-ending-grind {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-forest);
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(0, 204, 68, 0.08),
    rgba(136, 204, 0, 0.08)
  );
  border-radius: 12px;
  border-left: 4px solid var(--accent-green);
  text-align: center;
}

/* ✨ Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive Design */
@media (max-width: 900px) {
  .about-section-grind-bg {
    padding: 4rem 0;
    min-height: auto;
  }

  .about-text-grind {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    margin: 0 1rem;
  }

  .about-text-grind p {
    text-align: left;
    font-size: 1rem;
  }

  .about-points-grind {
    padding: 1.5rem 1.5rem;
  }

  .about-points-grind li {
    padding-left: 0;
    text-align: center;
  }

  .about-points-grind li::before {
    position: static;
    display: inline-block;
    margin-right: 0.5rem;
  }

  .about-points-grind li:hover {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .about-section-grind-bg {
    padding: 3rem 0;
  }

  .about-text-grind {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .section-title-grind {
    font-size: 1.8rem;
  }

  .section-subtitle-grind {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .about-text-grind p {
    font-size: 0.95rem;
  }

  .about-points-grind {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .about-points-grind li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .about-ending-grind {
    font-size: 1rem;
    padding: 1rem;
  }
}

/* GRIND Framework Section */
.grind-framework-section {
  background: linear-gradient(135deg, #0a2d0a 0%, #145214 50%, #1e6b1e 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
  min-height: 100vh;
}

.grind-framework-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 255, 102, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(136, 204, 0, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Decorative elements */
.grind-framework-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 102, 0.5),
    transparent
  );
}

.grind-framework-section-bg {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Titles */
.grind-section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #c8ffc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  animation: fadeInDown 1s ease-out;
  text-shadow: 0 0 40px rgba(0, 255, 102, 0.3);
}

.grind-section-title i {
  background: linear-gradient(135deg, #00ff88, #88cc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.section-subtitle {
  color: rgba(223, 255, 230, 0.95);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Framework Grid */
.grind-framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}

/* Connection lines between cards (desktop only) */
@media (min-width: 1200px) {
  .grind-framework-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 255, 102, 0.3) 10%,
      rgba(0, 255, 102, 0.3) 90%,
      transparent 100%
    );
    z-index: 0;
    transform: translateY(-50%);
  }
}

/* Framework Cards */
.grind-framework-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out both;
}

.grind-framework-card:nth-child(1) {
  animation-delay: 0.1s;
}
.grind-framework-card:nth-child(2) {
  animation-delay: 0.2s;
}
.grind-framework-card:nth-child(3) {
  animation-delay: 0.3s;
}
.grind-framework-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Top accent bar with unique colors */
.grind-framework-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--card-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.grind-framework-card:nth-child(1) {
  --card-gradient: linear-gradient(90deg, #00cc66, #00ff88);
}
.grind-framework-card:nth-child(2) {
  --card-gradient: linear-gradient(90deg, #88cc00, #aaff00);
}
.grind-framework-card:nth-child(3) {
  --card-gradient: linear-gradient(90deg, #66ff00, #99ff33);
}
.grind-framework-card:nth-child(4) {
  --card-gradient: linear-gradient(90deg, #228b22, #4db34d);
}

.grind-framework-card:hover::before {
  transform: scaleX(1);
}

/* Hover glow effect */
.grind-framework-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--card-gradient);
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  filter: blur(20px);
  transition: opacity 0.5s ease;
}

.grind-framework-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 255, 102, 0.1);
}

.grind-framework-card:hover::after {
  opacity: 0.15;
}

/* Icons */
.grind-framework-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--card-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 204, 102, 0.25);
  position: relative;
}

.grind-framework-icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: var(--card-gradient);
  border-radius: 23px;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s ease;
}

.grind-framework-card:hover .grind-framework-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 35px rgba(0, 204, 102, 0.4);
}

.grind-framework-card:hover .grind-framework-icon::before {
  opacity: 0.6;
}

.grind-framework-icon i {
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Text */
.grind-framework-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.grind-framework-card:hover .grind-framework-title {
  color: #000;
}

.grind-framework-description {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.grind-framework-card:hover .grind-framework-description {
  color: #333;
}

/* Features List */
.grind-framework-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grind-framework-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.9rem;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.grind-framework-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00cc66;
  font-weight: bold;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.grind-framework-card:hover .grind-framework-features li {
  color: #333;
  padding-left: 2.2rem;
}

.grind-framework-card:hover .grind-framework-features li::before {
  transform: scale(1.2);
}

/* Alignment Badge */
.grind-alignment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(0, 255, 102, 0.3);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  margin-top: 3rem;
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.grind-alignment-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(0, 255, 102, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.grind-alignment-badge i {
  font-size: 1.1rem;
  animation: rotate-icon 3s linear infinite;
}

@keyframes rotate-icon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .grind-framework-section {
    padding: 3rem 1.5rem;
  }

  .grind-section-title {
    margin-bottom: 0.5rem;
  }

  .grind-section-title i {
    display: block;
    margin-bottom: 0.5rem;
  }

  .grind-framework-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grind-framework-card {
    padding: 2rem;
  }

  .grind-framework-icon {
    width: 70px;
    height: 70px;
  }

  .grind-framework-icon i {
    font-size: 1.8rem;
  }

  .grind-framework-title {
    font-size: 1.3rem;
  }

  .grind-alignment-badge {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .grind-framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet landscape and small desktop */
@media (min-width: 1200px) {
  .grind-framework-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* GRIND Target Section */
.grind-target-section {
  background: linear-gradient(135deg, #0a2d0a 0%, #145214 50%, #1e6b1e 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
}

.grind-target-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 255, 102, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(136, 204, 0, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.grind-target-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grind-target-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Titles */
.main-title-grind {
  color: var(--accent-green);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 0 0 30px rgba(0, 204, 68, 0.4);
  animation: fadeInDown 1s ease-out;
  background: linear-gradient(135deg, #ffffff 0%, #c8ffc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.main-title-grind i {
  background: linear-gradient(135deg, #00ff88, #88cc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 0.5rem;
}

.subtitle-grind {
  color: rgba(223, 255, 230, 0.95);
  animation: fadeInUp 1s ease-out 0.2s both;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

/* Grid Layout */
.grind-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Framework Cards with Images */
.framework-card-grind {
  background: white;
  border-radius: 20px;
  border: none;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  animation: fadeInUp 0.8s ease-out both;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.framework-card-grind::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color, var(--accent-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}

.framework-card-grind:hover::before {
  transform: scaleX(1);
}

.framework-card-grind:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 204, 68, 0.15);
}

/* Card Image */
.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.framework-card-grind:hover .card-img-top {
  transform: scale(1.05);
}

/* Image Overlay */
.framework-card-grind::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.framework-card-grind:hover::after {
  opacity: 1;
}

/* Card Content */
.card-content-grind {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Card Title */
.card-title-grind {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  margin-bottom: 0.75rem;
}

.framework-card-grind:hover .card-title-grind {
  color: var(--accent-color, var(--accent-green));
}

/* Card Description */
.card-description-grind {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
  flex: 1;
}

.framework-card-grind:hover .card-description-grind {
  color: #333;
}

/* Program Link */
.program-link-grind {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--accent-green);
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.program-link-grind::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.program-link-grind:hover {
  color: white;
  border-color: var(--accent-green);
  transform: translateX(5px);
}

.program-link-grind:hover::before {
  transform: scaleX(1);
}

.program-link-grind::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.program-link-grind:hover::after {
  transform: translateX(5px);
}

/* Color schemes for each card type */
.learning-grind {
  --accent-color: var(--accent-green);
  --accent-light: #4ddb4d;
  --text-color: #00a83d;
}

/* Staggered animation delays */
.framework-card-grind:nth-child(1) {
  animation-delay: 0.1s;
}
.framework-card-grind:nth-child(2) {
  animation-delay: 0.2s;
}
.framework-card-grind:nth-child(3) {
  animation-delay: 0.3s;
}
.framework-card-grind:nth-child(4) {
  animation-delay: 0.4s;
}
.framework-card-grind:nth-child(5) {
  animation-delay: 0.5s;
}
.framework-card-grind:nth-child(6) {
  animation-delay: 0.6s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .grind-target-section {
    padding: 3rem 1rem;
  }

  .grind-target-container {
    padding: 0 1rem;
  }

  .grind-target-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-img-top {
    height: 180px;
  }

  .framework-card-grind::after {
    height: 180px;
  }

  .card-content-grind {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grind-target-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-img-top {
    height: 200px;
  }

  .framework-card-grind::after {
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .grind-target-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
