/* ===== ROOT VARIABLES ===== */
:root {
  /* Color Palette */
  --color-primary: #3a6ea5;
  --color-primary-dark: #255085;
  --color-primary-light: #5082b9;
  --color-secondary: #6c3483;
  --color-secondary-dark: #522663;
  --color-secondary-light: #8653a1;
  --color-accent: #2ecc71;
  --color-accent-dark: #25a55b;
  --color-accent-light: #54d98c;
  
  /* Neutral Colors */
  --color-dark: #202530;
  --color-dark-2: #2d3748;
  --color-gray-1: #4a5568;
  --color-gray-2: #718096;
  --color-gray-3: #a0aec0;
  --color-gray-4: #cbd5e0;
  --color-gray-5: #e2e8f0;
  --color-light: #f7fafc;
  
  /* Background Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  
  /* Fonts */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  
  /* Sizes */
  --header-height: 80px;
  --container-max-width: 1280px;
  --container-padding: 20px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-indices */
  --z-index-header: 1000;
  --z-index-modal: 1100;
  --z-index-tooltip: 1200;
  --z-index-particles: 50;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-gray-1);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

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

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--color-dark);
  font-weight: 800;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--color-gray-2);
  font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
}

.btn-accent {
  background-color: var(--color-accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  z-index: var(--z-index-header);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: block;
}
.logo img{
  width: 60px;
}
.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-list li a {
  color: var(--color-dark);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-list li a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-list li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-medium);
}

.nav-list li a:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-dark);
  border-radius: 10px;
  transition: all var(--transition-medium);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  color: white;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.stat-widget {
  text-align: center;
  color: white;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Particle Animation */
.particle-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-index-particles);
  pointer-events: none;
}

/* ===== COURSES SECTION ===== */
.courses-section {
  background-color: var(--color-light);
}

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

.card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-content h3 {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.card-content p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-content .btn {
  align-self: center;
  margin-top: auto;
}

/* ===== ACCOLADES SECTION ===== */
.accolades-section {
  background-color: var(--color-gray-5);
  position: relative;
  overflow: hidden;
}

.accolades-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-color: rgba(46, 204, 113, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.accolades-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: rgba(58, 110, 165, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.accolades-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.accolade-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.accolade-item:hover {
  transform: translateY(-5px);
}

.accolade-icon {
  margin: 0 auto 1.5rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(58, 110, 165, 0.1);
  overflow: hidden;
}

.accolade-icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.animate-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(58, 110, 165, 0.2);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(58, 110, 165, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(58, 110, 165, 0);
  }
}

/* ===== WEBINARS SECTION ===== */
.webinars-section {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.webinars-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.webinar-item {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .webinar-item {
    flex-direction: row;
  }
}

.webinar-image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .webinar-image-container {
    width: 40%;
  }
}

.webinar-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.webinar-item:hover .webinar-image-container img {
  transform: scale(1.05);
}

.webinar-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.webinar-date {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.webinar-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-btn, .next-btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--color-primary-dark);
}

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

.prev-btn::before, .next-btn::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-top: 3px solid white;
  border-left: 3px solid white;
}

.prev-btn::before {
  transform: rotate(-45deg);
}

.next-btn::before {
  transform: rotate(135deg);
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
  background-color: var(--color-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.projects-section .section-title,
.projects-section .section-description {
  color: white;
}

.projects-section .section-description {
  color: var(--color-gray-4);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
}

.projects-section .card {
  background-color: var(--color-dark-2);
  border: 1px solid var(--color-gray-3);
}

.projects-section .card-content h3 {
  color: white;
}

.projects-section .card-content p {
  color: var(--color-gray-4);
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

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

.resource-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.resource-item h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.resource-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-primary);
}

.resource-links {
  list-style-type: none;
  padding: 0;
}

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

.resource-links a {
  display: inline-block;
  color: var(--color-gray-1);
  transition: color var(--transition-fast), transform var(--transition-fast);
  position: relative;
  padding-left: 1.5rem;
}

.resource-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  transition: background-color var(--transition-fast);
}

.resource-links a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.resource-links a:hover::before {
  background-color: var(--color-primary-dark);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background-color: var(--color-gray-5);
  position: relative;
  overflow: hidden;
}

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

.faq-item {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  top: 50%;
  left: 50%;
}

.faq-toggle::before {
  width: 12px;
  height: 2px;
  margin-left: -6px;
  margin-top: -1px;
}

.faq-toggle::after {
  width: 2px;
  height: 12px;
  margin-left: -1px;
  margin-top: -6px;
  transition: transform var(--transition-medium);
}

.faq-item.active .faq-toggle::after {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories-section {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.testimonials-carousel {
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 1rem;
}

@media (min-width: 768px) {
  .testimonial-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.testimonial-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .testimonial-image {
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-position {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-text {
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.5;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  background-color: var(--color-gray-5);
  position: relative;
  overflow: hidden;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.partner-item {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-medium);
}

.partner-item:hover {
  transform: translateY(-5px);
}

.partner-item img {
  width: 200px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.partner-item h3 {
  margin-bottom: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-wrapper {
    flex-direction: row;
  }
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-container {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  background-color: var(--color-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.contact-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-4);
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background-color: var(--color-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(58, 110, 165, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--color-dark);
  color: white;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--color-gray-4);
  margin: 0;
}

.footer-links h3,
.footer-legal h3,
.footer-social h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h3::after,
.footer-legal h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-primary);
}

.footer-links ul,
.footer-legal ul {
  list-style-type: none;
  padding: 0;
}

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

.footer-links a,
.footer-legal a {
  color: var(--color-gray-4);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: white;
  transform: translateX(5px);
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-links a {
  color: var(--color-gray-4);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
}

.social-links a:hover {
  color: white;
  text-decoration: none;
}

.newsletter h3 {
  margin-top: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-3);
  border-radius: var(--border-radius-md);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: background-color var(--transition-fast);
}

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
  color: var(--color-gray-4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--color-gray-4);
  margin: 0;
}

.particles-footer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
}

.success-content h1 {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.success-content p {
  margin-bottom: 2rem;
}

/* ===== PRIVACY AND TERMS PAGES ===== */
.privacy-content,
.terms-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1,
.terms-content h1 {
  margin-bottom: 2rem;
}

.privacy-content h2,
.terms-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.privacy-content p,
.terms-content p,
.privacy-content ul,
.terms-content ul {
  margin-bottom: 1.5rem;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 140px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .stats-container {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .courses-grid,
  .accolades-wrapper,
  .projects-grid,
  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .courses-grid,
  .accolades-wrapper,
  .projects-grid,
  .resources-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-image {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .contact-wrapper {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===== RESPONSIVE STYLES FOR ICONS ===== */
.icon-location::before,
.icon-phone::before,
.icon-email::before,
.icon-clock::before {
  font-family: sans-serif;
  font-size: 1.5rem;
  display: block;
}

.icon-location::before { content: '📍'; }
.icon-phone::before { content: '📞'; }
.icon-email::before { content: '✉️'; }
.icon-clock::before { content: '🕒'; }

.mobile-menu-toggle{
  display: none !important;
}