/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
  }
  
  /* Header Styles */
  .navbar-custom {
    position: relative;
    z-index: 1000;
  }
  
  .navbar-custom .navbar {
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
  }
  
  .navbar-custom .navbar.scrolled {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
  }
  
  /* Navigation Links */
  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ed2f59, #146ef5);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 80%;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.05);
  }
  
  /* Custom Hamburger Menu */
  .navbar-toggler {
    border: none !important;
    padding: 4px !important;
    box-shadow: none !important;
    outline: none !important;
  }
  
  .navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
  }
  
  .hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  /* Hamburger Animation - Default state (3 lines) */
  .navbar-toggler.collapsed .hamburger-line:nth-child(1) {
    transform: translateY(0) rotate(0deg);
  }
  
  .navbar-toggler.collapsed .hamburger-line:nth-child(2) {
    opacity: 1;
  }
  
  .navbar-toggler.collapsed .hamburger-line:nth-child(3) {
    transform: translateY(0) rotate(0deg);
  }
  
  /* Hamburger Animation - Active state (X) */
  .navbar-toggler:not(.collapsed) .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .navbar-toggler:not(.collapsed) .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-toggler:not(.collapsed) .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Mobile Menu Styles */
  @media (max-width: 991.98px) {
    .navbar-collapse {
      background: rgba(20, 20, 30, 0.98);
      backdrop-filter: blur(20px);
      border-radius: 15px;
      margin-top: 1rem;
      padding: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.05);
      animation: slideDown 0.3s ease;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: 100%;
    }
  
    .navbar-nav {
      gap: 0.5rem;
    }
  
    .navbar-nav .nav-link {
      text-align: center;
      padding: 1rem !important;
      margin: 0.25rem 0;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
    }
  
    .navbar-nav .nav-link:hover {
      background: rgba(255, 255, 255, 0.1);
    }
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Navbar scroll effect */
  .navbar-scroll-effect {
    background: rgba(20, 20, 30, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Hero Section */
  .hero-section {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
  }
  
  .hero-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="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .hero-title .highlight {
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .stats-container {
    margin-bottom: 2.5rem;
  }
  
  .stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
  }
  
  .stat-card:hover::before {
    left: 100%;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
    z-index: 2;
  }
  
  .stat-number small {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
  }
  
  .cta-button {
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #146ef5, #ed2f59);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .cta-button:hover::before {
    /* opacity: 1; */
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
  }
  
  .cta-button i,
  .cta-button span {
    position: relative;
    z-index: 2;
  }
  
  .hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
  }
  
  .tech-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
  }
  
  .tech-icon:nth-child(1) {
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(237, 47, 89, 0.2), rgba(237, 47, 89, 0.1));
  }
  
  .tech-icon:nth-child(2) {
    animation-delay: 1.5s;
    background: linear-gradient(45deg, rgba(20, 110, 245, 0.2), rgba(20, 110, 245, 0.1));
  }
  
  .tech-icon:nth-child(3) {
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(237, 47, 89, 0.2), rgba(237, 47, 89, 0.1));
  }
  
  .tech-icon:nth-child(4) {
    animation-delay: 4.5s;
    background: linear-gradient(45deg, rgba(20, 110, 245, 0.2), rgba(20, 110, 245, 0.1));
  }
  
  .tech-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  /* Enhanced Section Styles */
  .section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .section-title.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .section-subtitle {
    color: #ed2f59;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
  }
  
  .section-subtitle::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ed2f59, #146ef5);
  }
  
  .section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Why Choose Us Section */
  .benefits-section {
    background: #fff;
    position: relative;
  }
  
  .benefit-card {
    position: relative;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 0;
    height: 100%;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .benefit-card.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #ed2f59;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(237, 47, 89, 0.1), rgba(20, 110, 245, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ed2f59;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover .benefit-icon {
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    color: #fff;
    transform: rotate(10deg);
  }
  
  .benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
  }
  
  .benefit-description {
    color: #555;
    line-height: 1.6;
  }
  
  /* How It Works Section */
  .process-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
  }
  
  .process-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="processGrid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23processGrid)"/></svg>');
    opacity: 0.3;
  }
  
  .process-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .process-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }
  
  .process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
  }
  
  .process-step.animate {
    opacity: 1;
    transform: translateX(0);
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 2rem;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .step-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
  }
  
  .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
  }
  
  .step-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }
  
  /* Courses Section */
  .courses-section {
    background: #f8f9fa;
  }
  
  .course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .course-card.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }
  
  .course-image {
    position: relative;
    overflow: hidden;
    height: 250px;
  }
  
  .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  
  .course-card:hover .course-image img {
    transform: scale(1.05);
  }
  
  .course-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .course-content {
    padding: 2rem;
  }
  
  .course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .meta-item {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
  }
  
  .course-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .course-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .course-link {
    color: #ed2f59;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .course-link:hover {
    color: #146ef5;
    gap: 1rem;
  }
  
  /* Career Support Section */
  .career-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
  }
  
  .career-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="careerGrid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23careerGrid)"/></svg>');
    opacity: 0.3;
  }
  
  .career-intro {
    margin-bottom: 4rem;
  }
  
  .career-intro h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  .career-intro .btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .career-intro .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
  }
  
  .support-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .support-card.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .support-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
  }
  
  .support-card:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  
  .support-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
  }
  
  .support-card:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .support-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .support-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }
  
  /* Online Learning Section */
  .online-section {
    background: #fff;
  }
  
  .online-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .online-card.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .online-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 47, 89, 0.05), transparent);
    transition: left 0.6s ease;
  }
  
  .online-card:hover::before {
    left: 100%;
  }
  
  .online-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(237, 47, 89, 0.2);
  }
  
  .online-badge {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .badge-primary {
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 0.5rem;
  }
  
  .badge-secondary {
    padding: 0.5rem 1rem;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .online-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
  }
  
  .online-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .online-link {
    color: #ed2f59;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .online-link:hover {
    color: #146ef5;
    gap: 1rem;
  }
  
  .online-image {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
  }
  
  .online-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  
  .online-image:hover img {
    transform: scale(1.05);
  }
  
  /* Success Stories Section */
  .testimonials-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
  }
  
  .testimonials-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="testimonialsGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonialsGrid)"/></svg>');
    opacity: 0.3;
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .testimonial-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
  }
  
  .testimonial-card:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .quote-icon {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    z-index: 2;
  }
  
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }
  
  .author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  /* Pricing Section */
  .pricing-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: white;
    position: relative;
  }
  
  .pricing-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="pricingGrid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23pricingGrid)"/></svg>');
    opacity: 0.3;
  }
  
  .pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .pricing-card.featured {
    border: 2px solid #ed2f59;
    transform: scale(1.05);
  }
  
  .pricing-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(237, 47, 89, 0.05), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
  }
  
  .pricing-card:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(237, 47, 89, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .pricing-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .pricing-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
  }
  
  .pricing-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .pricing-description {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }
  
  .pricing-button {
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }
  
  .pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 47, 89, 0.3);
  }
  
  .pricing-features {
    list-style: none;
    padding: 0;
  }
  
  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
  }
  
  .feature-check {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    flex-shrink: 0;
  }
  
  /* FAQ Section */
  .faq-section {
    background: #f8f9fa;
  }
  
  .faq-intro {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .faq-intro.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .faq-intro h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
  }
  
  .faq-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .faq-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .accordion {
    border: none;
  }
  
  .accordion-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .accordion-item.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(237, 47, 89, 0.2);
  }
  
  .accordion-header {
    border: none;
  }
  
  .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a2e;
    border-radius: 12px !important;
    box-shadow: none !important;
  }
  
  .accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    color: white;
  }
  
  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ed2f59'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  
  .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  
  .accordion-body {
    padding: 1.5rem;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #e9ecef;
  }
  
  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    position: relative;
  }
  
  .cta-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="ctaGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaGrid)"/></svg>');
    opacity: 0.3;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .cta-content.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .cta-button-large {
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(237, 47, 89, 0.3);
    text-decoration: none;
    margin-bottom: 2rem;
    display: inline-block;
  }
  
  .cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(237, 47, 89, 0.4);
    color: white;
  }
  
  .cta-chatbot {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .cta-chatbot p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .chat-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .chat-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: white;
  }
  
  /* Footer Styles */
  .footer-section {
    position: relative;
    margin-top: 0;
  }
  
  .footer-background {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
  }
  
  .footer-background::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="footerGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)"/></svg>');
    opacity: 0.3;
  }
  
  .footer-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 2rem;
    color: white;
  }
  
  .footer-brand {
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .social-links {
    margin-top: 2rem;
  }
  
  .social-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .social-icon:hover {
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(237, 47, 89, 0.3);
  }
  
  .footer-links {
    padding-left: 0;
  }
  
  .footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
  }
  
  .footer-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ed2f59, #146ef5);
  }
  
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  
  .footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
  }
  
  .footer-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: #ed2f59;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: white;
    padding-left: 1.5rem;
  }
  
  .footer-nav a:hover::before {
    width: 6px;
    height: 6px;
  }
  
  .footer-cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .compact-cta {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: #f0f0f0;
}

.footer-cta-btn {
  background-color: #0d6efd;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.3s;
}

.footer-cta-btn:hover {
  background-color: #0a58ca;
}

.contact-info {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

  
  .footer-cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(237, 47, 89, 0.05), transparent);
    animation: shimmer 3s infinite;
  }
  
  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }
  
  .cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
    color: white;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(237, 47, 89, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(237, 47, 89, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(237, 47, 89, 0);
    }
  }
  
  .footer-cta-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-cta-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
  }
  
  .footer-cta-btn {
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
  }
  
  .footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 47, 89, 0.4);
    color: white;
  }
  
  .contact-info {
    text-align: left;
    margin-top: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .contact-item i {
    width: 18px;
    color: #ed2f59;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
  }
  
  .copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }
  
  .footer-stats {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-item .stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ed2f59;
  }
  
  .stat-item .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
    }
  
    .stat-number {
      font-size: 2rem;
    }
  
    .stat-card {
      margin-bottom: 1rem;
    }
  
    .section-heading {
      font-size: 2rem;
    }
  
    .footer-content {
      padding: 3rem 0 1.5rem;
    }
  
    .footer-links {
      padding-left: 0;
      margin-top: 2rem;
    }
  
    .footer-cta-card {
      padding: 2rem;
      margin-top: 2rem;
    }
  
    .footer-stats {
      justify-content: center;
      margin-top: 1rem;
    }
  
    .social-icons {
      justify-content: center;
    }
  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .stat-card {
      padding: 1.5rem 1rem;
    }
  
    .section-heading {
      font-size: 1.8rem;
    }
  }
  
  /* Scroll Animations */
  .section-title,
  .benefit-card,
  .process-step,
  .course-card,
  .support-card,
  .online-card,
  .testimonial-card,
  .pricing-card,
  .faq-intro,
  .accordion-item,
  .cta-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .section-title.animate,
  .benefit-card.animate,
  .process-step.animate,
  .course-card.animate,
  .support-card.animate,
  .online-card.animate,
  .testimonial-card.animate,
  .pricing-card.animate,
  .faq-intro.animate,
  .accordion-item.animate,
  .cta-content.animate {
    opacity: 1;
    transform: translateY(0);
  }

  /* about */
  /* About Page Specific Styles */

/* About Hero Section */
.about-hero-section {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
  }
  
  .about-hero-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="aboutGrid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutGrid)"/></svg>');
    opacity: 0.5;
  }
  
  .about-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
  }
  
  .breadcrumb-custom {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .breadcrumb-custom .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  .breadcrumb-custom .breadcrumb-item.active {
    color: #ed2f59;
  }
  
  .breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .breadcrumb-custom .breadcrumb-item a:hover {
    color: #ed2f59;
  }
  
  .about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .about-hero-title .highlight {
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  .about-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .about-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .about-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
  }
  
  .stat-content {
    display: flex;
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* About Hero Visual */
  .about-hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .visual-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .main-card {
    width: 100%;
    max-width: 400px;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
  }
  
  .main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
  }
  
  .overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .overlay-content p {
    margin: 0;
    opacity: 0.9;
  }
  
  .floating-card-1,
  .floating-card-2 {
    position: absolute;
    width: 180px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
  }
  
  .floating-card-1 {
    top: 10%;
    right: -20px;
    animation: float 6s ease-in-out infinite 2s;
  }
  
  .floating-card-2 {
    bottom: 20%;
    left: -20px;
    animation: float 6s ease-in-out infinite 4s;
  }
  
  .card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
  }
  
  .card-text h6 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
  }
  
  .card-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  /* Story Section */
  .story-section {
    background: #fff;
    position: relative;
  }
  
  .story-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .story-content.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .story-timeline {
    position: relative;
    padding-left: 2rem;
  }
  
  .story-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ed2f59, #146ef5);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
  }
  
  .timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #ed2f59;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #ed2f59;
  }
  
  .timeline-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
  }
  
  .timeline-content p {
    color: #555;
    margin: 0;
  }
  
  .story-visual {
    position: relative;
  }
  
  .story-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .story-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  .story-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
  }
  
  .overlay-stats {
    display: flex;
    gap: 2rem;
  }
  
  .overlay-stat {
    text-align: center;
  }
  
  .overlay-stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ed2f59;
  }
  
  .overlay-stat .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Mission & Values Section */
  .mission-values-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
  }
  
  .mission-values-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="missionGrid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23missionGrid)"/></svg>');
    opacity: 0.3;
  }
  
  .mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .mission-card.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .mission-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(237, 47, 89, 0.05), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
  }
  
  .mission-card:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  
  .mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
  }
  
  .mission-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: 100%;
  }
  
  .value-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .value-item.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
  }
  
  .value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ed2f59, #146ef5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
  }
  
  .value-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .value-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }
  
  /* Responsive Design for About Page */
  @media (max-width: 768px) {
    .about-hero-title {
      font-size: 2.5rem;
    }
  
    .about-stats-grid {
      grid-template-columns: 1fr;
    }
  
    .floating-card-1,
    .floating-card-2 {
      display: none;
    }
  
    .values-grid {
      grid-template-columns: 1fr;
    }
  
    .overlay-stats {
      flex-direction: column;
      gap: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .about-hero-title {
      font-size: 2rem;
    }
  
    .mission-card,
    .value-item {
      padding: 1.5rem;
    }
  }
  
  /* Animation Classes */
  .about-hero-content,
  .story-content,
  .mission-card,
  .value-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .about-hero-content.animate,
  .story-content.animate,
  .mission-card.animate,
  .value-item.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  