/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #0f172a;
  color: #e2e8f0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #1e293b;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff6b35;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}
nav ul {
  display: flex;
  gap: 1.5rem;
}
nav a {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
nav a:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}
.nav-actions {
  display: flex;
  gap: 0.8rem;
}

/* Buttons */
button {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #ff6b35;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.btn-primary:hover {
  background: #ff8e53;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid #334155;
  color: #cbd5e1;
}
.btn-outline:hover {
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateY(-2px);
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-size: 3rem;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-text h1 span {
  color: #ff6b35;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}
.hero-text p {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.visitors {
  margin-top: 1.5rem;
  font-weight: bold;
  color: #ff6b35;
  font-size: 1.1rem;
}
.hero-image {
  position: relative;
}
.image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid #334155;
}
.image-box img {
  width: 100%;
  height: 400px;
  
  transition: transform 0.5s ease;
}
.image-box:hover img {
  transform: scale(1.05);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #fff;
  background: rgba(255, 107, 53, 0.9);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.play-btn:hover {
  background: #ff6b35;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

/* Learning Section */
.learning {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  text-align: center;
  position: relative;
}

.learning-header {
  margin-bottom: 4rem;
}

.learning-header h2 {
  font-size: 2.8rem;
  color: #f8fafc;
  margin-bottom: 1.5rem;
}

.learning-header h2 i {
  color: #ff6b35;
  margin-right: 15px;
}

.learning-header p {
  font-size: 1.3rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.learning-header p i {
  color: #ff6b35;
  margin-right: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.stat-item {
  padding: 3rem 2rem;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid #334155;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8e53);
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: #ff6b35;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #ff6b35;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.stat-label {
  font-size: 1.3rem;
  color: #cbd5e1;
  font-weight: 600;
}

.educators-section {
  margin-top: 5rem;
  padding: 4rem 3rem;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  border: 1px solid #334155;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.educators-section h3 {
  font-size: 2.2rem;
  color: #f8fafc;
  margin-bottom: 3rem;
}

.educators-section h3 i {
  color: #ff6b35;
  margin-right: 15px;
}

.educators-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.educator-stat {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 15px;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}

.educator-stat:hover {
  border-color: #ff6b35;
  transform: translateY(-5px);
}

.educator-stat .stat-icon {
  color: #ff6b35;
  font-size: 2.8rem;
}

.educator-stat .stat-number {
  color: #ff6b35;
  font-size: 2.8rem;
}

.educator-stat .stat-label {
  color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .learning-header h2 {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .educators-stats {
    gap: 2rem;
    flex-direction: column;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .learning {
    padding: 4rem 0;
  }
  
  .learning-header h2 {
    font-size: 1.8rem;
  }
  
  .educators-section {
    padding: 2.5rem 1.5rem;
  }
  
  .stat-item {
    padding: 2rem 1.5rem;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }
}
/* Courses Section */
.courses {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2539 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.section-header h2 i {
  color: #ff6b35;
  margin-right: 15px;
}

.section-header p {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.course-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid #334155;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8e53);
}

.course-card:hover {
  transform: translateY(-10px);
  border-color: #ff6b35;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.course-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.course-card h3 {
  font-size: 1.8rem;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.course-card > p {
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.course-features {
  list-style: none;
  margin-bottom: 2rem;
}

.course-features li {
  color: #cbd5e1;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-features i {
  color: #ff6b35;
  font-size: 0.9rem;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b35;
}

.course-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 20px;
  border: 1px solid #334155;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
}

.highlight-item i {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.highlight-item h4 {
  font-size: 1.3rem;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.highlight-item p {
  color: #94a3b8;
  line-height: 1.6;
}

/* Responsive Design for Courses */
@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .course-highlights {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .course-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .courses {
    padding: 4rem 0;
  }
  
  .course-card {
    padding: 2rem 1.5rem;
  }
  
  .course-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}
/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2539 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info h3 {
  font-size: 2rem;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #94a3b8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 15px;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #ff6b35;
  transform: translateX(5px);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.method-details h4 {
  color: #f8fafc;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.method-details p {
  color: #94a3b8;
  line-height: 1.5;
}

.social-links h4 {
  color: #f8fafc;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #334155;
}

.social-link:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-3px);
  border-color: #ff6b35;
}

/* Contact Form */
.contact-form {
  background: rgba(30, 41, 59, 0.8);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #334155;
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: #f8fafc;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 1.2rem 1rem 1.2rem 3rem;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid #334155;
  border-radius: 10px;
  color: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group textarea {
  resize: vertical;
  min-height: 120px;
}

.input-group label {
  position: absolute;
  left: 3rem;
  top: 1.2rem;
  color: #94a3b8;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  transition: all 0.3s ease;
}

.input-group textarea + i {
  top: 1.5rem;
  transform: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #ff6b35;
  outline: none;
}

.input-group input:focus + label,
.input-group select:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group select:not([value=""]) + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 1rem;
  font-size: 0.8rem;
  background: #0f172a;
  padding: 0 0.5rem;
  color: #ff6b35;
}

.input-group input:focus ~ i,
.input-group select:focus ~ i,
.input-group textarea:focus ~ i {
  color: #ff6b35;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Map Section */
.map-section {
  margin-top: 4rem;
}

.map-section h3 {
  font-size: 2rem;
  color: #f8fafc;
  margin-bottom: 2rem;
  text-align: center;
}

.map-section h3 i {
  color: #ff6b35;
  margin-right: 10px;
}

.map-placeholder {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  border: 1px solid #334155;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #1e293b 0%, #334155 100%);
  opacity: 0.8;
}

.map-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.map-content i {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.map-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.map-content p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.map-btn {
  border-color: #ff6b35;
  color: #ff6b35;
}

.map-btn:hover {
  background: #ff6b35;
  color: white;
}

/* Responsive Design for Contact */
@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 4rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
/* About Us Section */
.about-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2539 100%);
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2.2rem;
  color: #f8fafc;
  margin-bottom: 1.5rem;
}

.about-text > p {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  background: rgba(30, 41, 59, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}

.mv-card:hover {
  border-color: #ff6b35;
  transform: translateY(-5px);
}

.mv-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.mv-card h4 {
  color: #f8fafc;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.mv-card p {
  color: #94a3b8;
  line-height: 1.6;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 107, 53, 0.9);
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.years {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Why Choose Us */
.why-choose-us {
  margin-bottom: 5rem;
}

.why-choose-us h3 {
  font-size: 2.2rem;
  color: #f8fafc;
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(30, 41, 59, 0.6);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  border: 1px solid #334155;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8e53);
}

.feature-card:hover {
  border-color: #ff6b35;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ff6b35;
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.feature-card h4 {
  color: #f8fafc;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: #94a3b8;
  line-height: 1.6;
}

/* Statistics Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
  padding: 3rem;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  border: 1px solid #334155;
}

.stats-section .stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stats-section .stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.stats-section .stat-label {
  color: #cbd5e1;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Founder Section */
.founder-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}

.founder-image {
  text-align: center;
  position: relative;
}

.founder-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ff6b35;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.founder-info {
  margin-top: 1.5rem;
}

.founder-info h4 {
  color: #f8fafc;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.founder-info p {
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.founder-info span {
  color: #94a3b8;
  font-size: 0.9rem;
}

.founder-message h3 {
  font-size: 2rem;
  color: #f8fafc;
  margin-bottom: 1.5rem;
}

blockquote {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.7;
  border-left: 4px solid #ff6b35;
  padding-left: 2rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.founder-signature {
  text-align: right;
}

.founder-signature img {
  height: 40px;
  margin-bottom: 0.5rem;
}

.founder-signature p {
  color: #ff6b35;
  font-weight: 600;
}

/* Timeline Section */
.timeline-section {
  margin-bottom: 3rem;
}

.timeline-section h3 {
  font-size: 2.2rem;
  color: #f8fafc;
  text-align: center;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ff6b35;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 3rem;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 3rem;
  margin-right: 0;
}

.timeline-year {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  background: rgba(30, 41, 59, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #334155;
  flex: 1;
  margin: 0 3rem;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: #ff6b35;
  transform: translateY(-5px);
}

.timeline-content h4 {
  color: #f8fafc;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.timeline-content p {
  color: #94a3b8;
  line-height: 1.6;
}

/* Responsive Design for About Us */
@media (max-width: 968px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .founder-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    text-align: left !important;
  }
  
  .timeline-item .timeline-content {
    margin-left: 5rem !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }
  
  .timeline-year {
    width: 80px;
    height: 80px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 4rem 0;
  }
  
  .stats-section {
    grid-template-columns: 1fr;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
}
/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2539 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: rgba(30, 41, 59, 0.8);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #334155;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  color: rgba(255, 107, 53, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #ff6b35;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.student-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff6b35;
  flex-shrink: 0;
}

.student-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-info h4 {
  color: #f8fafc;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.student-info span {
  color: #ff6b35;
  font-size: 0.9rem;
  font-weight: 600;
}

.rating {
  margin-top: 0.5rem;
}

.rating i {
  color: #ffd700;
  font-size: 0.9rem;
  margin-right: 2px;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: #cbd5e1;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-footer {
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
}

.achievement {
  color: #ff6b35;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  display: inline-block;
}

/* Testimonial Stats */
.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  padding: 3rem;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  border: 1px solid #334155;
}

.testimonial-stats .stat-item {
  text-align: center;
  padding: 1rem;
}

.testimonial-stats .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.testimonial-stats .stat-label {
  color: #cbd5e1;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Video Testimonials */
.video-testimonials {
  margin: 5rem 0;
}

.video-testimonials h3 {
  font-size: 2.2rem;
  color: #f8fafc;
  text-align: center;
  margin-bottom: 3rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b35;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-card:hover .play-btn {
  background: #ff6b35;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  color: #f8fafc;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.video-info p {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Testimonial CTA */
.testimonial-cta {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  padding: 4rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 4rem;
}

.cta-content h3 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-cta .btn-primary {
  background: white;
  color: #ff6b35;
  border: 2px solid white;
}

.testimonial-cta .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

.testimonial-cta .btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.testimonial-cta .btn-outline:hover {
  background: white;
  color: #ff6b35;
  transform: translateY(-2px);
}

/* Testimonial Carousel Navigation */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #334155;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #ff6b35;
  transform: scale(1.2);
}

.nav-dot:hover {
  background: #ff6b35;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 4rem 0;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .testimonial-stats {
    grid-template-columns: 1fr;
  }
  
  .testimonial-cta {
    padding: 3rem 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
}
/* Course Comparison Table */
.course-comparison {
  margin-top: 5rem;
  padding: 3rem;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  border: 1px solid #334155;
}

.course-comparison h3 {
  font-size: 2rem;
  color: #f8fafc;
  text-align: center;
  margin-bottom: 2rem;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table th {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #334155;
  color: #cbd5e1;
}

.comparison-table tr:hover {
  background: rgba(255, 107, 53, 0.1);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Update courses grid for 6 items */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

/* Responsive design for comparison table */
@media (max-width: 768px) {
  .course-comparison {
    padding: 2rem 1rem;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem 0.5rem;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .course-comparison {
    padding: 1.5rem 0.5rem;
  }
  
  .comparison-table {
    font-size: 0.8rem;
  }
}
/* Contact Form Preview */
.form-preview {
  background: rgba(30, 41, 59, 0.8);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #334155;
  backdrop-filter: blur(10px);
}

.form-security {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(76, 217, 100, 0.1);
  border: 1px solid #4CD964;
  border-radius: 10px;
  color: #4CD964;
  font-size: 0.9rem;
}

.form-security i {
  font-size: 1.2rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  border: 1px solid #ff6b35;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #334155;
  background: rgba(255, 107, 53, 0.1);
}

.modal-header h3 {
  color: #f8fafc;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-modal {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #ff6b35;
}

.modal-body {
  padding: 2rem;
}

.redirect-info {
  text-align: center;
}

.redirect-info i {
  font-size: 3rem;
  color: #4CD964;
  margin-bottom: 1rem;
}

.redirect-info h4 {
  color: #f8fafc;
  margin-bottom: 1rem;
}

.redirect-info p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.form-data-preview {
  background: rgba(30, 41, 59, 0.6);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #334155;
  margin-bottom: 2rem;
  text-align: left;
}

.form-data-preview h5 {
  color: #ff6b35;
  margin-bottom: 1rem;
  text-align: center;
}

.data-preview-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #334155;
}

.data-preview-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.data-label {
  color: #cbd5e1;
  font-weight: 600;
}

.data-value {
  color: #f8fafc;
}

.redirect-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.redirect-buttons .btn-primary {
  background: #4CD964;
  border-color: #4CD964;
}

.redirect-buttons .btn-primary:hover {
  background: #3bc055;
  border-color: #3bc055;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
  
  .redirect-buttons {
    flex-direction: column;
  }
  
  .modal-header {
    padding: 1rem 1.5rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
}
/* Registration Section */
.registration {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2539 100%);
}

.registration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: start;
}

.registration-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: rgba(30, 41, 59, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #334155;
  transition: all 0.3s ease;
  text-align: center;
}

.info-card:hover {
  border-color: #ff6b35;
  transform: translateY(-5px);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.info-card h3 {
  color: #f8fafc;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card p {
  color: #94a3b8;
  line-height: 1.6;
}

/* Registration Action */
.action-card {
  background: rgba(30, 41, 59, 0.9);
  border-radius: 20px;
  border: 1px solid #334155;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.action-header {
  background: linear-gradient(135deg, #4285F4, #34A853);
  padding: 2rem;
  text-align: center;
  color: white;
}

.action-header i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.action-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.action-content {
  padding: 2.5rem;
}

.action-content > p {
  color: #f8fafc;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.benefits-list {
  list-style: none;
  margin-bottom: 2rem;
}

.benefits-list li {
  color: #cbd5e1;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-list i {
  color: #4CD964;
  font-size: 0.9rem;
}

/* Form Steps */
.form-steps {
  display: flex;
  justify-content: space-between;
  margin: 2.5rem 0;
  position: relative;
}

.form-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: #334155;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.step-text {
  color: #cbd5e1;
  font-size: 0.9rem;
  text-align: center;
  max-width: 100px;
}

.form-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.form-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(66, 133, 244, 0.3);
}

.security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #4CD964;
  font-size: 0.9rem;
  padding: 1rem;
  background: rgba(76, 217, 100, 0.1);
  border-radius: 10px;
  border: 1px solid #4CD964;
}

/* Quick Contact */
.quick-contact {
  text-align: center;
}

.contact-card {
  background: rgba(30, 41, 59, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #334155;
  display: inline-block;
}

.contact-card h4 {
  color: #f8fafc;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-card p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-numbers span {
  color: #ff6b35;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .registration-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .registration-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .info-card {
    flex: 1;
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .registration {
    padding: 4rem 0;
  }
  
  .info-card {
    min-width: 100%;
  }
  
  .form-steps {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .form-steps::before {
    display: none;
  }
  
  .step {
    flex-direction: row;
    gap: 1rem;
  }
  
  .step-text {
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .action-content {
    padding: 1.5rem;
  }
  
  .action-header {
    padding: 1.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
}
/* Results Section */
.results {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2539 100%);
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.stat-card {
  background: rgba(30, 41, 59, 0.8);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  border: 1px solid #334155;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8e53);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b35;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-icon {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: #cbd5e1;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Rankers Section */
.rankers-section {
  margin: 5rem 0;
}

.rankers-section h3 {
  font-size: 2.2rem;
  color: #f8fafc;
  text-align: center;
  margin-bottom: 3rem;
}

.rankers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ranker-card {
  background: rgba(30, 41, 59, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #334155;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.ranker-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b35;
}

.ranker-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.ranker-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid #ff6b35;
}

.ranker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranker-info h4 {
  color: #f8fafc;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.ranker-info p {
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.ranker-info span {
  color: #94a3b8;
  font-size: 0.9rem;
}

.ranker-quote {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  border-left: 3px solid #ff6b35;
  color: #cbd5e1;
  font-style: italic;
}

/* Year Results Chart */
.year-results {
  margin: 5rem 0;
  padding: 3rem;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  border: 1px solid #334155;
}

.year-results h3 {
  font-size: 2rem;
  color: #f8fafc;
  text-align: center;
  margin-bottom: 3rem;
}

.results-chart {
  max-width: 600px;
  margin: 0 auto;
}

.chart-bar {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.year {
  width: 60px;
  color: #ff6b35;
  font-weight: bold;
}

.bar-container {
  flex: 1;
  height: 30px;
  background: #334155;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.bar {
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #ff8e53);
  border-radius: 15px;
  transition: width 2s ease;
  position: relative;
}

.bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: white;
}

.percentage {
  width: 80px;
  text-align: right;
  color: #ff6b35;
  font-weight: bold;
}

/* Exam Results */
.exam-results {
  margin: 5rem 0;
}

.exam-results h3 {
  font-size: 2.2rem;
  color: #f8fafc;
  text-align: center;
  margin-bottom: 3rem;
}

.exam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.exam-card {
  background: rgba(30, 41, 59, 0.8);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  border: 1px solid #334155;
  text-align: center;
  transition: all 0.3s ease;
}

.exam-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b35;
}

.exam-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ff6b35;
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.exam-card h4 {
  color: #f8fafc;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.exam-count {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 1.5rem;
}

.exam-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.exam-details span {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Download Results */
.download-results {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  padding: 4rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 4rem;
}

.download-content h3 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.download-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .results-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rankers-grid {
    grid-template-columns: 1fr;
  }
  
  .exam-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .chart-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .year, .percentage {
    width: auto;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .results-stats {
    grid-template-columns: 1fr;
  }
  
  .exam-grid {
    grid-template-columns: 1fr;
  }
  
  .year-results {
    padding: 2rem 1rem;
  }
}
/* Enhanced Image Styles for Results Section */
.ranker-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid #ff6b35;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.ranker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ranker-card:hover .ranker-image img {
  transform: scale(1.1);
}

/* Photo Gallery Styles */
.photo-gallery {
  margin: 5rem 0;
}

.photo-gallery h3 {
  font-size: 2.2rem;
  color: #f8fafc;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  height: 250px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1rem 1rem;
  text-align: center;
  font-weight: 600;
}

/* Image Loading States */
.ranker-image img,
.gallery-item img {
  background: #334155;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ranker-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* Hero Section - Completely Redesigned */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

/* Hero Text Styles */
.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  padding-left: 2rem
}

.hero-text .highlight {
  color: #ff6b35;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 90%;
  padding-left: 2rem
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding-left: 2rem
}

.hero-buttons .btn-primary {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.hero-buttons .btn-outline {
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background: transparent;
}

.hero-buttons .btn-outline:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding-left: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Image Styles */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 3px solid #334155;
}



/* Achievement Badge */
.achievement-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.years {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  color: white;
  font-weight: 600;
  margin-top: 0.3rem;
}

/* Quick Info Bar */
.quick-info-bar {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid #334155;
  border-bottom: 1px solid #334155;
  padding: 1.5rem 0;
}

.info-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  color: #cbd5e1;
  font-weight: 600;
}

.info-item i {
  color: #ff6b35;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 3rem;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    max-width: 100%;
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }

  
  .achievement-badge {
    bottom: -15px;
    right: -15px;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons button {
    width: 100%;
    max-width: 250px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .info-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/* Update course footer to center the button */
.course-footer {
  display: flex;
  justify-content: center; /* Center the button */
  align-items: center;
  margin-top: auto;
  padding-top: 1.5rem;
}

/* Remove price styles since we're not using them anymore */
.price {
  display: none; /* Hide price completely */
}

/* Make enroll button full width */
.course-footer .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Sleek Developer Section */
.sleek-dev {
  padding: 4rem 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(74, 222, 128, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    #0a0a0a;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.sleek-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sleek-card {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Left Side - Visual Identity */
.identity-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.visual-element {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geometric-shape {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  border-radius: 24px;
  transform: rotate(45deg);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.geometric-shape::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #3b82f6, #10b981, #8b5cf6);
  border-radius: 26px;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.6;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Floating Orbs */
.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orb {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: orbFloat 4s ease-in-out infinite;
}

.orb-1 {
  top: 20%;
  left: 10%;
  background: #3b82f6;
  animation-delay: 0s;
}

.orb-2 {
  top: 70%;
  right: 20%;
  background: #10b981;
  animation-delay: 1.3s;
}

.orb-3 {
  bottom: 30%;
  left: 15%;
  background: #8b5cf6;
  animation-delay: 2.6s;
}

@keyframes orbFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  33% { 
    transform: translate(10px, -15px) scale(1.2);
    opacity: 1;
  }
  66% { 
    transform: translate(-5px, 10px) scale(0.8);
    opacity: 0.5;
  }
}

.creator-badge {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.badge-text {
  color: #3b82f6;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Right Side - Content */
.content-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.creator-header {
  text-align: left;
}

.creator-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.creator-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.creator-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #3b82f6;
  letter-spacing: -0.5px;
}

/* Skills Showcase */
.skills-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.skill-pill:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(5px);
}

.skill-icon {
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 100px;
}

.skill-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 2px;
  position: relative;
  animation: fillProgress 1.5s ease-out;
}

.skill-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 2s infinite;
}

@keyframes fillProgress {
  from { width: 0%; }
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Tech Stack */
.tech-stack-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-item {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

/* CTA Buttons */
.creator-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.sleek-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.sleek-btn.primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.sleek-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.sleek-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sleek-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .sleek-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 2rem;
  }
  
  .creator-header {
    text-align: center;
  }
  
  .creator-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .visual-element {
    width: 140px;
    height: 140px;
  }
  
  .geometric-shape {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .sleek-dev {
    padding: 2rem 0;
  }
  
  .sleek-container {
    padding: 0 1rem;
  }
  
  .creator-title {
    font-size: 1.8rem;
  }
  
  .creator-name {
    font-size: 1.5rem;
  }
  
  .skill-pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
/* Add this to your CSS */
.profile-image {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  transform: rotate(0deg);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.image-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #3b82f6, #10b981, #8b5cf6);
  border-radius: 26px;
  z-index: 1;
  filter: blur(10px);
  opacity: 0.6;
  animation: pulse 4s ease-in-out infinite;
}
/* Simple Contact Styles */
.simple-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-line:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateX(3px);
}

.contact-icon {
  font-size: 1.2rem;
  color: #3b82f6;
  width: 20px;
}

.contact-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #3b82f6;
}
.simple-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-line:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateX(3px);
}

.contact-icon {
  font-size: 1.2rem;
  color: #3b82f6;
  width: 20px;
}

.contact-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #3b82f6;
}
.profile-image {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* Colorful Stars */
.colorful-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  font-size: 1rem;
  animation: starFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 5px currentColor);
}

.star-1 {
  top: -5px;
  left: 20%;
  color: #ff6b6b;
  animation-delay: 0s;
}

.star-2 {
  top: 20%;
  right: -5px;
  color: #4ecdc4;
  animation-delay: 1s;
}

.star-3 {
  bottom: 30%;
  left: -5px;
  color: #45b7d1;
  animation-delay: 2s;
}

.star-4 {
  bottom: -5px;
  right: 30%;
  color: #ffd166;
  animation-delay: 3s;
}

@keyframes starFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.8;
  }
  25% { 
    transform: translate(3px, -5px) scale(1.2) rotate(90deg);
    opacity: 1;
  }
  50% { 
    transform: translate(-2px, 3px) scale(0.9) rotate(180deg);
    opacity: 0.6;
  }
  75% { 
    transform: translate(4px, 2px) scale(1.1) rotate(270deg);
    opacity: 1;
  }
}
/* ULTIMATE DEVELOPER STYLES */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

.dev-god {
  padding: 5rem 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    #0a0a0f;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Animated Code Background */
.code-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: #3b82f6;
  pointer-events: none;
}

.code-line {
  position: absolute;
  animation: codeFloat 20s linear infinite;
}

.code-line:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.code-line:nth-child(2) { top: 30%; left: 80%; animation-delay: -5s; }
.code-line:nth-child(3) { top: 60%; left: 15%; animation-delay: -10s; }
.code-line:nth-child(4) { top: 85%; left: 70%; animation-delay: -15s; }

@keyframes codeFloat {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

.dev-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Main Card */
.dev-card {
  background: rgba(15, 15, 25, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(139, 92, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Left: Visual Identity */
.dev-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.avatar-frame {
  position: relative;
  width: 200px;
  height: 200px;
}

.hexagon {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6, #10b981);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: gradientShift 4s ease infinite;
}

.hexagon img {
  width: 172px;
  height: 172px;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.tech-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid;
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
  width: 220px;
  height: 220px;
  border-color: #8b5cf6;
  animation-delay: 0s;
}

.ring-2 {
  width: 240px;
  height: 240px;
  border-color: #3b82f6;
  animation-delay: 1s;
}

.ring-3 {
  width: 260px;
  height: 260px;
  border-color: #10b981;
  animation-delay: 2s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.dev-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Right: Content */
.dev-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dev-header {
  text-align: left;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.dev-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.dev-tagline {
  color: #94a3b8;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Skills Matrix */
.skills-matrix {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.skill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.skill:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(5px);
}

.skill-name {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #e2e8f0;
  font-weight: 500;
  font-size: 1rem;
}

.skill-icon {
  font-size: 1.2rem;
}

.skill-level {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 120px;
}

.level-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.level-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  border-radius: 3px;
  position: relative;
  animation: fillSkill 1.5s ease-out;
}

.level-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 2s infinite;
}

.level-percent {
  color: #8b5cf6;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 35px;
}

@keyframes fillSkill {
  from { width: 0%; }
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Tech Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
}

.tech-icon {
  font-size: 1.5rem;
}

.tech-item span {
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Contact & Actions */
.dev-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #3b82f6;
}

.contact-icon {
  font-size: 1rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.action-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.action-btn.primary {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.action-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-element {
  position: absolute;
  color: rgba(139, 92, 246, 0.3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  animation: floatElement 10s ease-in-out infinite;
}

.float-element:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.float-element:nth-child(2) { top: 65%; right: 8%; animation-delay: -3s; }
.float-element:nth-child(3) { top: 85%; left: 20%; animation-delay: -6s; }

@keyframes floatElement {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
  33% { transform: translate(20px, -15px) rotate(5deg); opacity: 0.6; }
  66% { transform: translate(-10px, 10px) rotate(-5deg); opacity: 0.4; }
}

/* Responsive */
@media (max-width: 968px) {
  .dev-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .dev-header {
    text-align: center;
  }
  
  .dev-actions {
    flex-direction: column;
    text-align: center;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .dev-god {
    padding: 2rem 0;
  }
  
  .dev-card {
    padding: 2rem 1.5rem;
  }
  
  .avatar-frame {
    width: 150px;
    height: 150px;
  }
  
  .hexagon {
    width: 140px;
    height: 140px;
  }
  
  .hexagon img {
    width: 132px;
    height: 132px;
  }
  
  .dev-title {
    font-size: 2rem;
  }
}
/* Contact Help Section */
.contact-help {
  padding: 3rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.help-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.help-card {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.help-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8e53);
}

/* Header */
.help-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.help-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.help-title h3 {
  color: #f8fafc;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.help-title p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact Methods */
.contact-method {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.method-details h4 {
  color: #f8fafc;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateX(5px);
}

.phone-link i {
  font-size: 1rem;
  width: 20px;
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.action-btn.call {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.action-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.action-btn.email {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Availability */
.availability {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
  margin-bottom: 0.5rem;
}

.response-time {
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .help-container {
    padding: 0 1rem;
  }
  
  .help-card {
    padding: 2rem;
  }
  
  .help-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .quick-actions {
    grid-template-columns: 1fr;
  }
  
  .phone-link {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-help {
    padding: 2rem 0;
  }
  
  .help-card {
    padding: 1.5rem;
  }
  
  .help-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .help-title h3 {
    font-size: 1.3rem;
  }
}
/* Location Section */
.location-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2539 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.location-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
  justify-content: center;
}

.header-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.header-content h3 {
  color: #f8fafc;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.header-content p {
  color: #94a3b8;
  font-size: 1.1rem;
}

/* Location Content */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Map Card */
.map-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-preview {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}

.map-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-pin {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.location-pin i {
  color: white;
  font-size: 1.5rem;
  transform: rotate(45deg);
}

.pulse-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid #ff6b35;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

.ring-2 {
  animation-delay: 1s;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.map-info {
  text-align: center;
  color: white;
}

.map-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.map-info p {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.coordinates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
  font-family: 'Courier New', monospace;
}

.map-actions {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
}

.map-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.map-btn.primary {
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: white;
}

.map-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Address Card */
.address-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.address-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.address-header i {
  font-size: 1.5rem;
  color: #ff6b35;
}

.address-header h4 {
  color: #f8fafc;
  font-size: 1.3rem;
  font-weight: 600;
}

.address-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.2rem;
  color: #ff6b35;
  margin-top: 0.2rem;
  min-width: 20px;
}

.info-content strong {
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.info-content p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Quick Info */
.quick-info {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .location-container {
    padding: 0 1rem;
  }
  
  .location-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .header-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .header-content h3 {
    font-size: 1.8rem;
  }
  
  .map-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding: 3rem 0;
  }
  
  .address-card {
    padding: 1.5rem;
  }
  
  .map-preview {
    padding: 1.5rem;
    height: 220px;
  }
  
  .quick-info {
    flex-direction: column;
  }
}
/* Footer Styles - FINAL FIX */
.main-footer {
  background: linear-gradient(135deg, #0a0a0f 0%, #0f172a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
  width: 100%;
  min-width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Footer Content */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* Brand Section */
.footer-brand {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b35;
  text-shadow: 0 0 25px rgba(255, 107, 53, 0.4);
  line-height: 1.2;
}

.footer-tagline {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.social-link:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-3px);
  border-color: #ff6b35;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 4rem;
  flex: 1;
  justify-content: flex-end;
}

.link-group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.link-group h4 {
  color: #f8fafc;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.link-group h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ff6b35;
  border-radius: 2px;
}

.link-group a {
  display: flex;
  align-items: center;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  padding: 0.5rem 0;
}

.link-group a:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 2rem;
}

.copyright {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.copyright-text {
  color: #e2e8f0;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.copyright-text i {
  color: #ff6b35;
}

.copyright-sub {
  color: #94a3b8;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copyright-sub i {
  color: #ff6b35;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.meta-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.meta-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.meta-links a:hover {
  color: #ff6b35;
}

.divider {
  color: #475569;
}

.made-by {
  color: #64748b;
  font-size: 1rem;
}

.dev-credit {
  color: #ff6b35;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-brand {
    flex: 1;
    text-align: center;
    align-items: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-meta {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .footer-links {
    gap: 2rem;
  }
  
  .link-group {
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    text-align: center;
  }
  
  .link-group {
    min-width: auto;
  }
}
/* FIXED: Corrected floating cards positioning */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card i {
  font-size: 1.2rem;
}

/* FIXED: Corrected positions */
.boards-card {
  bottom: 30px;
  left: -10px;
  color: #007AFF;
  animation-delay: 0s;
}

.neet-card {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  color: #4CD964;
  animation-delay: 1s;
}

.jee-card {
  top: 20px;
  left: -20px;
  color: #ff6b35;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
html {
  scroll-behavior: smooth;
}