 /* Navbar and Hero Section */

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }

 body {
     background: #f6f8fc;
 }

 /* Navbar */
 .navbar {
     background-color: #181829;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
 }

 .navbar-brand {
     font-weight: 700;
     color: #ffffff;
 }

 .navbar-brand:hover {
     color: #00f5d4;
 }

 .nav-link {
     color: #ffffff !important;
     position: relative;
     padding: 8px 15px;
 }

 .nav-link::after {
     content: "";
     position: absolute;
     width: 0%;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: #00f5d4;
     transition: width 0.3s;
 }

 .nav-link:hover::after {
     width: 100%;
 }


 body {
     background: #f8f9fa;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .hero-section {
     padding: 100px 20px;
     background: linear-gradient(to right, #004e92, #000428);
     color: white;
     text-align: center;
 }

 .hero-card {
     background: white;
     color: #333;
     padding: 40px 30px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     max-width: 700px;
     margin: auto;
 }

 .hero-card h1 {
     font-weight: bold;
     font-size: 2.5rem;
     background: linear-gradient(to right, #004e92, #000428);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hero-card .btn-primary {
     background-color: #004e92;
     border: none;
     font-size: 1.1rem;
     padding: 12px 25px;
     margin-top: 20px;
     transition: 0.3s ease;
 }

 .hero-card .btn-primary:hover {
     background-color: #000428;
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }

 .stats {
     display: flex;
     justify-content: space-around;
     margin-top: 30px;
     flex-wrap: wrap;
 }

 .stat-item {
     margin: 10px 0;
 }

 .stat-item i {
     color: #004e92;
     font-size: 2rem;
     margin-bottom: 10px;
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }

     100% {
         transform: scale(1);
     }
 }





 /* Hero Section */
 /*  .hero {
     min-height: 100vh;
     background: linear-gradient(135deg, #69eacf, #57c1eb);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 60px 20px;
 }

 .hero-box {
     background: #ffffff;
     border-radius: 25px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     padding: 50px;
     max-width: 700px;
     text-align: center;
 }

 .hero-box h1 {
     font-size: 2.8rem;
     font-weight: 700;
     color: #000000;
     margin-bottom: 15px;
 }

 .hero-box p {
     color: #333;
     font-size: 1.1rem;
     margin-bottom: 30px;
 }

 .hero-box .btn-custom {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background-color: #1db954;
     color: white;
     font-weight: 600;
     border: none;
     border-radius: 30px;
     padding: 12px 24px;
     margin: 10px;
     transition: 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .hero-box .btn-custom:hover {
     background-color: #14833b;
     transform: translateY(-2px);
 }

 @media (max-width: 768px) {
     .hero-box h1 {
         font-size: 2rem;
     }

     .hero-box {
         padding: 30px;
     }
 } */


 /* Fade Up Animation */
 .fade-up {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s ease-out;
 }

 .fade-up.show {
     opacity: 1;
     transform: translateY(0);
 }

 /* Hover Card Lift Effect */
 .step-box {
     transition: 0.3s ease-in-out;
 }

 .step-box:hover {
     transform: translateY(-8px);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
 }

 .step-box i {
     transition: transform 0.3s;
 }

 .step-box:hover i {
     transform: scale(1.2);
 }

 /* Why LearnMate hover effect */
 .why-box {
     transition: 0.3s ease;
 }

 .why-box:hover {
     transform: translateY(-8px);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
 }

 .why-box i {
     transition: transform 0.3s;
 }

 .why-box:hover i {
     transform: scale(1.2);
 }

 .testimonial-box {
     transition: 0.3s ease-in-out;
 }

 .testimonial-box:hover {
     transform: translateY(-5px);
 }

 #testimonials img {
     width: 80px;
     height: 80px;
     object-fit: cover;
 }

 .custom-card {
     border: 1px solid #e0e0e0;
     border-radius: 15px;
     transition: transform 0.3s, box-shadow 0.3s;
     background-color: #ffffff;
 }

 .custom-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

 .card-title {
     font-size: 1.2rem;
 }

 .btn-outline-primary {
     border-radius: 25px;
     font-weight: 500;
     transition: background-color 0.3s;
 }

 .btn-outline-primary:hover {
     background-color: #0d6efd;
     color: white;
 }

 .video-card {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     cursor: pointer;
 }

 .video-card:hover {
     transform: scale(1.03);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 .video-card img {
     transition: transform 0.3s ease;
 }

 .video-card:hover img {
     transform: scale(1.05);
 }

 .accordion-button:hover {
     background-color: #f1f1f1;
     transition: background-color 0.3s ease;
 }

 .accordion-button::after {
     filter: grayscale(1);
 }

 .accordion-item {
     transition: all 0.3s ease;
 }

 .accordion-item:hover {
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }



 #contact input:focus,
 #contact textarea:focus {
     border-color: #0d6efd;
     box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
 }

 #contact button:hover {
     background-color: #084298;
 }

 #contact .card {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 #contact .card:hover {
     transform: translateY(-5px);
     box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
 }

 .footer-link {
     color: #ccc;
     text-decoration: none;
     display: block;
     padding: 5px 0;
     transition: 0.3s;
 }

 .footer-link:hover {
     color: #00bcd4;
     padding-left: 8px;
 }

 .social-icon {
     font-size: 20px;
     margin-right: 15px;
     color: #ccc;
     transition: 0.3s ease-in-out;
     display: inline-block;
 }

 .social-icon:hover {
     color: #00bcd4;
     transform: scale(1.2);
 }

 /* Scroll To Top Button Styling */
 #scrollTopBtn {
     display: none;
     /* Hidden by default */
     position: fixed;
     bottom: 40px;
     right: 30px;
     z-index: 99;
     font-size: 22px;
     border: none;
     outline: none;
     background-color: #007bff;
     color: white;
     cursor: pointer;
     padding: 12px 16px;
     border-radius: 50%;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
     transition: 0.3s ease;
 }

 #scrollTopBtn:hover {
     background-color: #0056b3;
     transform: scale(1.1);
 }