/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.justifycontent {
  justify-content: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Utility classes */
.flex {
  display: flex;
}

.grid {
  display: grid;
}

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

.justify-between {
  justify-content: space-between;
}

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.text-white {
  color: #fff;
}

.text-red-500 {
  color: #ef4444;
}

.text-red-600 {
  color: #dc2626;
}

.text-red-700 {
  color: #b91c1c;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-gray-900 {
  color: #111827;
}

.bg-white {
  background-color: #fff;
}

.bg-red-50 {
  background-color: #fef2f2;
}

.bg-red-100 {
  background-color: #fee2e2;
}

.bg-red-500 {
  background-color: #ef4444;
}

.bg-red-600 {
  background-color: #dc2626;
}

.bg-red-700 {
  background-color: #b91c1c;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-gray-900 {
  background-color: #111827;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.space-y-8>*+* {
  margin-top: 2rem;
}

.space-x-2>*+* {
  margin-left: 0.5rem;
}

.space-x-4>*+* {
  margin-left: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

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

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

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

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-36 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

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

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-screen-md {
  max-width: 768px;
}

.max-w-screen-lg {
  max-width: 1024px;
}

.max-w-screen-xl {
  max-width: 1280px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

@keyframes bounce {

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

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

@keyframes float {

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

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.5s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

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

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.delay-700 {
  animation-delay: 0.7s;
}

/* Component styles */
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  padding: 1rem 0;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.header.scrolled .logo {
  color: #111827;
  background-image: url(images/logo.webp);

}

.header.scrolled .nav-link {
  color: #374151;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  background-image: url(images/red-white.webp);
  width: 200px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

}

.logo span {
  color: #dc2626;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ef4444;
  transition: width 0.3s ease;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.cta-button:hover {
  transform: translateY(-2px);
}

.header.scrolled .cta-button {
  background-color: #dc2626;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.2);
}

.header:not(.scrolled) .cta-button {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.header:not(.scrolled) .cta-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.menu-button {
  display: none;
  padding: 0.5rem;
  z-index: 60;
}

.mobile-menu {
  position: fixed;
  /* inset: 0; */
  width: 100%;
  padding-bottom: 20px;
  background-color: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(8px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  list-style: none;
}

.mobile-nav-link {
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ef4444;
  transition: width 0.3s ease;
}

.mobile-nav-link:hover::after {
  width: 100%;
}

.mobile-cta-button {
  margin-top: 1.5rem;
  background-color: #dc2626;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* new */

/* Programs Dropdown (Desktop) */
.has-dropdown {
  position: relative;
}
.has-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 260px;
  padding: 10px 0;
  flex-direction: column;
  z-index: 9999;
}
.has-dropdown:hover .dropdown-menu {
  display: flex;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 0.875rem;
  color: #111827;
}
.dropdown-menu li a:hover {
  background-color: #f9f9f9;
}

/* Programs Dropdown (Mobile) */
.mobile-has-dropdown {
  position: relative;
  width: 100%;
}
.mobile-has-dropdown .mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  width: 100%;
 padding-top: 1rem;
}
.mobile-has-dropdown.active .mobile-dropdown-menu {
  display: flex;
  gap: 5px;
    list-style: none;
    text-align: left;
}
.mobile-dropdown-menu li a {
  color: #fff;
  font-size: 1.1rem;
  padding: 0.25rem 0;
  text-align: left !important;
}
.mobile-nav-list {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem;
    list-style: none;
}
.mobile-nav-main{
  width: 100%;
}

.mobile-cta-button {

    margin-left: 1.5rem;
}

.dropdown-menu li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 0.875rem;
  color: #111827;
  text-decoration: none;
}

.dropdown-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 1px;
  background-color: #b91c1c;
  transition: width 0.3s ease;
}

.dropdown-menu li a:hover::after {
  width: 100%;
}




/* End header section */

/* Hero section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #111827;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-position: 50% 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: rgba(220, 38, 38, 0.2);
  color: #ef4444;
  background-color: #e2e2e2;
    color: #404040;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1rem;
  color: #d1d5db;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  background-color: #dc2626;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.2);
  transition: all 0.3s ease;
}

.primary-button:hover {
  background-color: #b91c1c;
  box-shadow: 0 15px 20px -5px rgba(220, 38, 38, 0.3);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid #6b7280;
  color: #e5e7eb;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-image-container {
  position: relative;
}

.hero-image {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  height: 480px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  max-width: 200px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  background-color: #fee2e2;
  padding: 0.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #1f2937;
}

.hero-accent {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background-color: #dc2626;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.scroll-icon-container {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-icon {
  width: 1rem;
  height: 1rem;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
}

/* About Us section */
.about-section {
  padding: 3rem 0 5rem;
  position: relative;
  background-color: white;
  overflow: hidden;
}

.about-bg-element-1 {
  position: absolute;
  left: -5rem;
  top: 5rem;
  width: 16rem;
  height: 16rem;
  background-color: #fee2e2;
  border-radius: 9999px;
  opacity: 0.7;
  transform: translateY(-50%);
  filter: blur(80px);
}

.about-bg-element-2 {
  position: absolute;
  right: -8rem;
  bottom: 0;
  width: 24rem;
  height: 24rem;
  background-color: #f3f4f6;
  border-radius: 9999px;
  opacity: 0.6;
  transform: translateY(33%);
  filter: blur(100px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: #fef2f2;
  background-color: #e2e2e2;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.about-tag-text {
  color: #b91c1c;
  color: #404040;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.about-divider {
  width: 5rem;
  height: 0.25rem;
  background-color: #dc2626;
  border-radius: 9999px;
}

.about-text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.625;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-link {
  display: inline-flex;
  align-items: center;
  color: #dc2626;
  font-weight: 500;
  margin-top: 1rem;
  position: relative;
}

.about-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #dc2626;
  transition: width 0.3s ease;
}

.about-link:hover::after {
  width: 100%;
}

.about-link svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.about-link:hover svg {
  transform: translateX(4px);
}

.about-image-container {
  position: relative;
}

.about-image {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-stat-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  max-width: 20rem;
}

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

.about-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.about-stat-icon {
  background-color: #f0fdf4;
  border-radius: 9999px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}

.about-stat-text {
  color: #4b5563;
}

/* Programs section */
.programs-section {
  padding: 1rem 0 1rem;
  background-color: white;
}

.programs-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: #fef2f2;
  background-color: #e2e2e2;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.programs-tag-text {
  color: #b91c1c;
  color: #404040;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.programs-description {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 4rem;
}

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

.programs-grid1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.program-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.program-card-header {
  position: relative;
  padding: 1.5rem;
  background-color: #f9fafb;
}

.program-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #fee2e2;
  color: #b91c1c;
  background-color: #e2e2e2;
    color: #404040;
  margin-bottom: 0.75rem;
}

.program-card-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.program-card-subtitle {
  color: #4b5563;
  margin-top: 0.25rem;
}

.program-card-icon {
  background-color: #fee2e2;
  padding: 0.75rem;
  border-radius: 9999px;
  color: #dc2626;
  height: fit-content;
}

.program-card-content {
  padding: 1.5rem;
}

.program-card-description {
  color: #4b5563;
}

.program-card-footer {
  padding: 1.5rem;
  padding-top: 0;
}

.program-card-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: white;
  color: #dc2626;
  border: 1px solid #fee2e2;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.program-card-button:hover {
  background-color: #fef2f2;
  border-color: #fca5a5;
}

.program-card-button svg {
  transition: transform 0.3s ease;
}

.program-card-button:hover svg {
  transform: translateX(4px);
}

/* Scroll to top button */
.scroll-top-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  padding: 0.75rem;
  background-color: #dc2626;
  color: white;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(2.5rem);
  pointer-events: none;
  transition: all 0.3s ease;
}

.scroll-top-button.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-button:hover {
  background-color: #b91c1c;
  box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.4);
  transform: translateY(-2px) scale(1.1);
}

/* Floating elements */
.floating-element-1 {
  position: fixed;
  top: 15%;
  right: 10%;
  width: 16rem;
  height: 16rem;
  border-radius: 9999px;
  background-color: rgba(239, 68, 68, 0.05);
  filter: blur(3rem);
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
  position: fixed;
  bottom: 20%;
  left: 5%;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background-color: rgba(107, 114, 128, 0.1);
  filter: blur(3rem);
  mix-blend-mode: multiply;
  opacity: 0.2;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

/* Responsive styles */
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

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

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 7fr 5fr;
  }

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

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid1 {
    grid-template-columns: 2fr 3fr;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .programs-grid1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {

  .nav-list,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-image-container {
    display: none;
  }
}

/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Edge Section (Why Choose Us) */
.edge-section {
  padding: 3rem 0;
  background-color: #f9fafb;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: #fef2f2;
  border-radius: 9999px;
  margin-bottom: 1rem;
  color: #b91c1c;
  background-color: #e2e2e2;
    color: #404040;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.section-description {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 4rem;
  /* max-width: 42rem; */
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.advantage-card {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.advantage-card1 {
  flex-direction: column;
}

.alignitem {
  align-items: center;
}

.advantage-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: #fef2f2;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
}

.advantage-content1 {
   display: flex;
   flex-direction: row;
   gap: 20px;
}

.advantage-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.advantage-head {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0px;
}

.advantage-content p {
  color: #4b5563;
}

/* Career Pathways Section */
.careers-section {
  padding: 3rem 0;
  background-color: white;
  position: relative;
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .careers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.careers-content {
  /* max-width: 32rem; */
}

.careers-image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.careers-image {
  width: 100%;
  height: auto;
  display: block;
}

.careers-stats {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  background-color: white;
  /* background: rgba(255, 255, 255, 0.8); */
  /* backdrop-filter: blur(10px); */

  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 280px;
}

.stat-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #4b5563;
  font-size: 0.875rem;
}

/* Banner Section */
.banner-section {
  background-color: #dc2626;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.banner-content {
  max-width: 48rem;
  margin: 0 auto;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.banner-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.banner-button {
  display: inline-flex;
  align-items: center;
  background-color: white;
  color: #dc2626;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
.footer {
  background-color: #111827;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

@media (max-width:600px) {
  .careers-stats {
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    background-color: white;
    /* background: rgba(255, 255, 255, 0.8); */
    /* backdrop-filter: blur(10px); */

    padding: 10px;
    padding-right: 40px;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 280px;
  }

  .stat-item {
    padding: 5px 0;
    border-bottom: 1px solid #e5e7eb;
  }

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

  .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0px;
  }

  .stat-label {
    color: #4b5563;
    font-size: 12px;
  }

  .banner-description {
    font-size: 14px;
  }

  .banner-title {
    font-size: 28px;
  }
}

.cource-image img {
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
}
.cardImageIndustry{
  aspect-ratio: 3/2;
  object-fit: contain;
  object-position: center;
}

.desktopMenuUL li{
  list-style: none;
}


.special {
  width: 100%;
}

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

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

.social-link:hover {
    background-color: hsl(0, 84.2%, 60.2%);
    transform: translateY(-3px);
}