@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --primary-color: #000000;
  --secondary-color: #1a1a1a;
  --accent-color: #ffffff;
  --text-dark: #ffffff;
  --text-light: #cccccc;
  --text-muted: #999999;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
  --border-radius: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--primary-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-square {
  width: 16px;
  height: 16px;
  background: var(--black);
  border-radius: 2px;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.logo:hover {
  transform: scale(1.05);
}

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

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
  transition: var(--transition);
  position: relative;
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

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

.cta-button {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.cta-button:hover {
  background: var(--white);
  color: var(--black);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.diagonal-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.line {
  position: absolute;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  height: 1px;
}

.line-1 {
  top: 20%;
  left: -10%;
  width: 60%;
  transform: rotate(15deg);
}

.line-2 {
  top: 30%;
  left: -5%;
  width: 50%;
  transform: rotate(25deg);
}

.glowing-arc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at center bottom, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50% 50% 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-primary {
  display: block;
  color: var(--white);
}

.title-secondary {
  display: block;
  color: var(--text-light);
  font-weight: 400;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2.5rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-primary {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.bottom-elements {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  align-items: center;
}

.element {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.element-icon {
  font-size: 1.2rem;
  opacity: 0.6;
}

/* Enhanced Hero Animations */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.floating-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.floating-icon-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon-2 {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.floating-icon-3 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.floating-icon-4 {
  top: 70%;
  right: 10%;
  animation-delay: 3s;
}

.floating-icon-5 {
  top: 40%;
  left: 20%;
  animation-delay: 4s;
}

.floating-icon-6 {
  top: 50%;
  right: 25%;
  animation-delay: 5s;
}

/* Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle-2 {
  top: 30%;
  left: 80%;
  animation-delay: 1s;
}

.particle-3 {
  top: 60%;
  left: 30%;
  animation-delay: 2s;
}

.particle-4 {
  top: 80%;
  left: 70%;
  animation-delay: 3s;
}

.particle-5 {
  top: 40%;
  left: 50%;
  animation-delay: 4s;
}

.particle-6 {
  top: 70%;
  left: 10%;
  animation-delay: 5s;
}

.particle-7 {
  top: 10%;
  left: 60%;
  animation-delay: 6s;
}

.particle-8 {
  top: 90%;
  left: 40%;
  animation-delay: 7s;
}

/* Pulse Circles */
.pulse-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pulse-circle {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.pulse-circle-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.pulse-circle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 20%;
  animation-delay: 1.5s;
}

.pulse-circle-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 15%;
  animation-delay: 3s;
}

/* Enhanced Buttons */
.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-shine {
  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 ease;
}

.btn-primary:hover .btn-shine,
.btn-secondary:hover .btn-shine {
  left: 100%;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Enhanced Bottom Elements */
.bottom-elements {
  position: absolute;
  bottom: 50px;
  left: 700px;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.element {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.element:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.element-icon {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  transition: var(--transition);
}

.element:hover .element-icon {
  transform: scale(1.1);
}

/* Enhanced Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  }
}

/* Enhanced tag animation */
.hero-tag {
  animation: slideInDown 1s ease-out;
}

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

/* Enhanced title animations */
.title-primary {
  animation: slideInLeft 1s ease-out 0.2s both;
}

.title-secondary {
  animation: slideInRight 1s ease-out 0.4s both;
}

/* Enhanced description animation */
.hero-description {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Enhanced buttons animation */
.hero-buttons {
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* Enhanced stats animation */
.hero-stats {
  animation: fadeInUp 1s ease-out 1s both;
}

/* Enhanced bottom elements animation */
.bottom-elements {
  animation: fadeInUp 1s ease-out 1.2s both;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
  background: var(--primary-color);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--white);
}

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

.course-card {
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--white), var(--text-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.course-card:hover::before {
  transform: scaleX(1);
}

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

.course-icon {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.course-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.course-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.course-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.course-btn {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.course-btn:hover {
  background: var(--text-light);
  transform: translateY(-2px);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideInUp 0.3s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--white);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.modal-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.modal-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-features {
  list-style: none;
  margin-bottom: 2rem;
}

.modal-features li {
  padding: 0.5rem 0;
  color: var(--white);
  position: relative;
  padding-left: 1.5rem;
}

.modal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
}

.modal-btn {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.modal-btn:hover {
  background: var(--text-light);
  transform: translateY(-2px);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
  background: var(--secondary-color);
  color: var(--white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.form-submit:hover {
  background: var(--text-light);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-secondary) 100%);
  color: var(--white);
  padding: 4rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
  pointer-events: none;
}

/* Company Information Section */
.company-info-section {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-header {
  text-align: center;
  margin-bottom: 3rem;
}

.company-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.company-description {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.company-detail-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.company-detail-block:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.company-detail-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.detail-content p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: var(--text-light);
}

.detail-content p strong {
  color: var(--white);
  font-weight: 600;
}

.detail-content p:last-child {
  margin-bottom: 0;
}

/* Traditional Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--accent-color);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

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

  .cta-button {
    display: none;
  }

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

  .hero-description {
    font-size: 1.1rem;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .bottom-elements {
    bottom: 30px;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .element {
    font-size: 0.7rem;
  }

  .element-icon {
    font-size: 1rem;
  }
  
  /* Enhanced Hero Mobile Styles */
  .floating-icon {
    width: 40px;
    height: 40px;
  }
  
  .floating-icon i {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .pulse-circle-1 {
    width: 150px;
    height: 150px;
  }
  
  .pulse-circle-2 {
    width: 100px;
    height: 100px;
  }
  
  .pulse-circle-3 {
    width: 80px;
    height: 80px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 2rem;
    margin: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  /* Footer responsive styles */
  .company-header h2 {
    font-size: 2rem;
  }
  
  .company-description {
    font-size: 1rem;
  }
  
  .company-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .company-detail-block {
    padding: 1.5rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-legal-links {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 2rem 0;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .bottom-elements {
    bottom: 20px;
    gap: 0.5rem;
  }

  .element {
    font-size: 0.6rem;
  }

  .element-icon {
    font-size: 0.9rem;
  }
  
  /* Enhanced Hero Small Mobile Styles */
  .floating-icon {
    width: 35px;
    height: 35px;
  }
  
  .floating-icon i {
    font-size: 0.9rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .pulse-circle-1 {
    width: 120px;
    height: 120px;
  }
  
  .pulse-circle-2 {
    width: 80px;
    height: 80px;
  }
  
  .pulse-circle-3 {
    width: 60px;
    height: 60px;
  }

  .section {
    padding: 3rem 0;
  }

  .course-card {
    padding: 1.5rem;
  }

  .modal-content {
    padding: 1.5rem;
  }
  
  /* Footer mobile styles */
  .company-header h2 {
    font-size: 1.8rem;
  }
  
  .company-detail-block {
    padding: 1rem;
  }
  
  .company-detail-block h3 {
    font-size: 0.9rem;
  }
  
  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-legal-links a {
    font-size: 0.8rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

/* Info Sections Styles */
.info-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.info-section-alt {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.info-content-reverse {
  grid-template-columns: 1fr 1fr;
}

.info-content-reverse .info-image {
  order: -1;
}

.info-text {
  padding: 2rem 0;
}

.info-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

/* Expertise Features */
.expertise-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.feature-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Methodology Steps */
.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Info Images */
.info-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-content {
  text-align: center;
  color: var(--white);
}

.overlay-content h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Info Sections */
@media (max-width: 768px) {
  .info-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .info-content-reverse {
    grid-template-columns: 1fr;
  }
  
  .info-content-reverse .info-image {
    order: 0;
  }
  
  .info-img {
    height: 300px;
  }
  
  .overlay-content h3 {
    font-size: 2rem;
  }
  
  .feature-item,
  .step-item {
    padding: 1rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon i {
    font-size: 1rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
}

/* Policy Pages About Content Styles */
.policy-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="policyGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.01"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.01"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23policyGrain)"/></svg>');
  pointer-events: none;
}

.policy-about-content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.policy-about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

.policy-about-text h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.policy-about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.policy-about-text ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.policy-about-text li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2rem;
  color: var(--text-light);
  line-height: 1.6;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 8px 8px 0;
  transition: var(--transition);
}

.policy-about-text li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--primary-color);
}

.policy-about-text li::before {
  content: '▶';
  position: absolute;
  left: 0.5rem;
  top: 0.8rem;
  color: var(--primary-color);
  font-size: 0.8rem;
}

.policy-about-text strong {
  color: var(--white);
  font-weight: 600;
}

.policy-about-text a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.policy-about-text a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Policy specific styling */
.policy-highlight {
  background: linear-gradient(135deg, rgba(26, 55, 247, 0.1), rgba(15, 36, 65, 0.1));
  border: 1px solid rgba(26, 55, 247, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.policy-highlight h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-contact-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-contact-info h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.policy-contact-info p {
  margin-bottom: 0.5rem;
}

.policy-contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

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

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
  .policy-about-content {
    padding: 2rem 1.5rem;
    border-radius: 15px;
  }
  
  .policy-about-text h2 {
    font-size: 1.5rem;
  }
  
  .policy-about-text p {
    font-size: 1rem;
  }
  
  .policy-about-text li {
    padding: 0.6rem 0 0.6rem 1.5rem;
  }
  
  .policy-highlight,
  .policy-contact-info {
    padding: 1rem;
  }
}

.hidden {
  display: none;
}

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