@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: "Poppins", sans-serif;
}

/* Scroll animations */
@keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
}

@keyframes slideInLeft {
   from {
     opacity: 0;
     transform: translateX(-30px);
   }
   to {
     opacity: 1;
     transform: translateX(0);
   }
}

@keyframes slideInRight {
   from {
     opacity: 0;
     transform: translateX(30px);
   }
   to {
     opacity: 1;
     transform: translateX(0);
   }
}

@keyframes growWidth {
   from {
     width: 0;
   }
   to {
     width: 100px;
   }
}

@keyframes slideInFromTop {
   from {
     opacity: 0;
     transform: translateY(-30px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
}

@keyframes fadeIn {
   from {
     opacity: 0;
   }
   to {
     opacity: 1;
   }
}

body {
   font-family: "Poppins", sans-serif;
   scroll-behavior: smooth;
   line-height: 1.6;
}

/* Global Tags */

h1 {
   font-size: 2.5rem;
   font-weight: 700;
   color: #2c3e50;
}

span {
   font-size: 0.9rem;
   color: #7f8c8d;
}

h6 {
   font-size: 1.1rem;
   color: #34495e;
}

/* Navigation */
nav{
   position:fixed;
   width: 100%;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items:center;
   padding: 1vw 6vw;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   z-index: 999;
}

nav img {
  width: 150px;
  cursor: pointer;
}

nav .nav-links {
  display: flex;
}

#menu-btn {
  width: 30px;
  height: 30px;
  display: none;
}

#menu-close{
  display: none;
}
   
nav .nav-links ul{
  display: flex;
  justify-content:flex-end;
  align-items: center;
}

nav .nav-links ul li {
  list-style: none;
  margin-left: 30px;
}

nav .nav-links ul li a{
   text-decoration-line: none;
   color: #ffffff;
   font-size: 16px ;
   font-weight: 500;
   transition: 0.3s ease-in-out;
}
nav .nav-links ul li a.active,
nav .nav-links ul li a:hover {
   color: #f093fb;
   transform: translateY(-2px);
}

/* Home */

#home{
  background-image: linear-gradient( rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7) ), url("../images/Bravo.jpg");
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;

}

#home h2 {
   color: white;
   font-size: 3rem;
   letter-spacing: 1px;
   font-weight: 700;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#home p {
   width: 80%;
   max-width: 600px;
   color: white;
   font-size: 1.1rem;
   line-height: 1.6;
   font-weight: 300;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#home .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
#home a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: #fff;
  font-weight: 600;
  border-radius: 5px;
}
#home a.blue {
   color: #fff;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   transition: 0.3s ease;
   box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

#home a.blue:hover {
   color: #fff;
   background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}
#home a.yellow {
   color: #fff;
   background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   transition: 0.3s ease;
   box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

#home a.yellow:hover {
   color: #fff;
   background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}
/* features */

#features{
   padding: 8vw 8vw 4vw 8vw;
   text-align: center;
   }
#features h1 {
   margin-bottom: 1rem;
   font-size: 2.8rem;
}
#features p {
   font-size: 1.1rem;
   color: #7f8c8d;
   margin-bottom: 3rem;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
   line-height: 1.6;
}
#features .fea-base {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   grid-gap: 2rem;
   margin-top: 50px;
}

#features .fea-box {
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.9) 0%, rgba(195, 207, 226, 0.9) 100%);
    backdrop-filter: blur(10px);
    text-align: start;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

#features .fea-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.95) 0%, rgba(195, 207, 226, 0.95) 100%);
}

#features .fea-box i {
   font-size: 2.3rem;
   color: #667eea;
}

#features .fea-box h3 {
   font-size: 1.2rem;
   font-weight: 600;
   color: #2c3e50;
   padding: 13px 0 7px 0;
}

#features .fea-box p {
   font-size: 1rem;
   font-weight: 400;
   color: #34495e;
}
/* course */

#course {
   padding: 8vw 8vw 8vw 8vw;
   text-align: center;
}

#course h1 {
   font-size: 2.8rem;
   margin-bottom: 1rem;
}

#course p {
   font-size: 1.1rem;
   color: #7f8c8d;
   margin-bottom: 3rem;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
   line-height: 1.6;
}

#course .course-box {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   grid-gap: 2rem;
   margin-top: 50px;
}

#course .courses {
    text-align: start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

#course .courses:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

#course .courses img{
   width: 100%;
   height: 60%;
   object-fit: cover;
   object-position: center;
   transition: 0.3s ease;
}

#course .courses:hover img {
   transform: scale(1.05);
}

#course .courses .details{
   padding: 15px 15px 0px 15px;
}

#course .courses .details i {
   color: #f093fb;
   font-size: .9rem;
}

#course .courses .cost {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
   line-height: 70px;
   width: 70px;
   height: 70px;
   text-align: center;
   border-radius: 50%;
   position: absolute;
   right: 15px;
   bottom: 160px;
   box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
/* registration */

#registration {
  padding: 6vw 8vw 6vw 8vw;
  background-image:linear-gradient(rgba(99,112,168,0.5), rgba(99,112,168,0.5)), 
  url("../images/reg.jpg");
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#registration .reminder {
  color: white;
}

#registration .reminder h1 {
  color: white;
}

#registration .reminder .time{
  display: flex;
  margin-top: 40px;
}

#registration .reminder .time .date{
  text-align: center;
  padding: 13px 33px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-radius: 10px;
  margin: 0 5px 10px 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.1rem;
  font-weight: 600;
}

#registration .form{
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

#registration .form input {
   margin: 15px 0;
   padding: 15px 10px;
   border: 2px solid rgba(102, 126, 234, 0.3);
   outline: none;
   border-radius: 10px;
   background: rgba(255, 255, 255, 0.9);
   transition: all 0.3s ease;
   font-size: 1rem;
}

#registration .form input:focus {
   border-color: #667eea;
   box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
   background: #fff;
}
#registration .form input::placeholder{
  color: #413c3c;
  font-weight: 500;
  font-size: .9rem;
}

#registration .form a.yellow {
   text-decoration: none;
   font-size: 0.9rem;
   padding: 13px 35px;
   background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   font-weight: 600;
   border-radius: 25px;
   color: #fff;
   transition: 0.3s ease;
   box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

#registration .form a.yellow:hover {
   color: #fff;
   background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

#registration .form button.yellow {
   text-decoration: none;
   font-size: 0.9rem;
   padding: 13px 35px;
   background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   font-weight: 600;
   border-radius: 25px;
   color: #fff;
   transition: 0.3s ease;
   box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
   border: none; /* remove default button border */
   cursor: pointer; /* pointer cursor like link */
}

#registration .form button.yellow:hover {
   color: #fff;
   background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}
/* Gradient Button Style */
#registration .form .btn-gradient {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    font-weight: 600;
    border-radius: 25px;
    color: #fff;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
    border: none;         /* remove default border */
    cursor: pointer;       /* pointer cursor */
}

#registration .form .btn-gradient:hover {
    color: #fff;
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

/* Gradient button */
.btn-gradient {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    font-weight: 600;
    border-radius: 25px;
    color: #fff;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}
.btn-gradient:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

/* Modal styles */
.login-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    padding: 50px 0;
}

/* Show modal when targeted */
.login-modal:target {
    display: block;
}

.login-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    text-decoration: none;
    color: #333;
}

.login-modal input {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* experts */
#experts {
   padding: 8vw 8vw 8vw 8vw;
   text-align: center;
}

#experts h1 {
   font-size: 2.8rem;
   margin-bottom: 1rem;
}

#experts p {
   font-size: 1.1rem;
   color: #7f8c8d;
   margin-bottom: 3rem;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
   line-height: 1.6;
}

#experts .expert-box {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   grid-gap: 2rem;
   margin-top: 50px;
}

#experts .expert-box .profile {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(233, 236, 239, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

#experts .expert-box .profile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.95) 100%);
}

#experts .expert-box .profile img {
    border-radius: 50%;
    border: 3px solid #667eea;
    transition: 0.3s ease;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
}

#experts .expert-box .profile:hover img {
    border-color: #f093fb;
    transform: scale(1.1);
}
/* footer */

footer {
   padding: 8vw;
   background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   flex-wrap: wrap;
}

footer .footer-col {
   padding-bottom: 40px;
}

footer h3 {
   color: #ecf0f1;
   font-weight: 600;
   padding-bottom: 20px;
}

footer li {
   color: #bdc3c7;
   padding: 10px 0;
   font-size: 15px;
   cursor: pointer;
   transition: 0.3s ease;
}

footer li:hover {
   color: #f093fb;
   transform: translateX(5px);
}

footer p {
   color: #bdc3c7;
}

footer .subscribe {
  margin-top: 20px;
}

footer input {
  width: 220px;
  padding: 12px 15px;
  background: #334f6c;
  border: none;
  outline: none;
  color: #fff;
}

footer .subscribe a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 12px 15px;
  background-color: #fff;
  font-weight: 600;
}


footer .subscribe a.yellow {
   color: #fff;
   background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   transition: 0.3s ease;
   box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

footer .subscribe a.yellow:hover {
   color: #fff;
   background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

footer .copyright p {
  color: #fff;
}



/* About Page Styles - Restored Original */

#about-home{
   background-image: linear-gradient( rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7) ), url("../images/back\ 5.jpg");
   width: 100%;
   height: 60vh;
   background-size: cover;
   background-position: center;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   padding-top: 40px;
}

#about-home h2 {
   color: white;
   font-size: 2.2rem;
   letter-spacing: 1px;
}

/* Modern About Container */
#about-container {
   padding: 8vw 8vw 4vw 8vw;
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   position: relative;
   overflow: hidden;
}

#about-container::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 1000 1000"><defs><pattern id="dots" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
   pointer-events: none;
}

.about-content-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   position: relative;
   z-index: 2;
}

/* Video Section */
.about-video-section {
   position: relative;
}

.video-placeholder {
   width: 100%;
   height: 400px;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 20px;
   position: relative;
   overflow: hidden;
   cursor: pointer;
   box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
   transition: all 0.4s ease;
}

.video-placeholder:hover {
   transform: translateY(-10px);
   box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
}

.play-button {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 80px;
   height: 80px;
   background: rgba(255, 255, 255, 0.9);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: #667eea;
   transition: all 0.3s ease;
   z-index: 3;
}

.play-button:hover {
   background: white;
   transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
   padding: 2rem;
   color: white;
}

.video-overlay h3 {
   margin: 0 0 0.5rem 0;
   font-size: 1.5rem;
}

.video-overlay p {
   margin: 0;
   opacity: 0.9;
}

/* Video Particles Animation */
.video-particles {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   pointer-events: none;
}

.particle {
   position: absolute;
   width: 4px;
   height: 4px;
   background: rgba(255, 255, 255, 0.6);
   border-radius: 50%;
   animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
   top: 20%;
   left: 20%;
   animation-delay: 0s;
}

.particle-2 {
   top: 60%;
   right: 30%;
   animation-delay: 3s;
}

.particle-3 {
   bottom: 30%;
   left: 70%;
   animation-delay: 6s;
}

@keyframes particleFloat {
   0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
   50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Modern About Text Section */
.about-text-modern {
   animation: slideInFromRight 1s ease-out 0.3s both;
}

.section-header {
   margin-bottom: 2rem;
}

.animated-title {
   font-size: 2.5rem;
   font-weight: 700;
   color: #2c3e50;
   margin-bottom: 0.5rem;
   position: relative;
   display: inline-block;
}

.title-underline {
   width: 100px;
   height: 4px;
   background: linear-gradient(90deg, #667eea, #764ba2);
   border-radius: 2px;
   margin-top: 0.5rem;
   animation: growWidth 1s ease-out 0.8s both;
}

.section-subtitle {
   font-size: 1.1rem;
   color: #7f8c8d;
   margin-top: 1rem;
   font-weight: 400;
}

.about-description {
   margin-bottom: 2rem;
}

.about-description p {
   font-size: 1.1rem;
   line-height: 1.7;
   color: #34495e;
   margin-bottom: 2rem;
}

/* Learning Stats Cards */
.learning-stats {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
   margin: 2rem 0;
}

.stat-card {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
   backdrop-filter: blur(10px);
   border-radius: 15px;
   padding: 1.5rem;
   display: flex;
   align-items: center;
   gap: 1rem;
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;
   animation: fadeInUp 1s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }

.stat-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 1.5rem;
   flex-shrink: 0;
}

.stat-info h4 {
   font-size: 2rem;
   font-weight: 700;
   color: #2c3e50;
   margin: 0 0 0.25rem 0;
}

.stat-info p {
   font-size: 0.9rem;
   color: #7f8c8d;
   margin: 0;
   font-weight: 500;
}

/* Modern Feature Cards */
.modern-features {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
   margin-top: 3rem;
}

.feature-card {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
   backdrop-filter: blur(10px);
   border-radius: 20px;
   padding: 2rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.4s ease;
   opacity: 0;
   transform: translateY(30px);
}

.feature-card.animate {
   opacity: 1;
   transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.2s; }
.feature-card:nth-child(2) { transition-delay: 0.4s; }

.feature-card:hover {
   transform: translateY(-10px) scale(1.02);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
   width: 80px;
   height: 80px;
   margin: 0 auto 1.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
   border-radius: 50%;
   transition: all 0.3s ease;
}

.feature-icon:hover {
   transform: scale(1.1);
   background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.feature-icon img {
   width: 40px;
   height: 40px;
   object-fit: contain;
}

.feature-content h5 {
   font-size: 1.3rem;
   font-weight: 600;
   color: #2c3e50;
   margin-bottom: 1rem;
   text-align: center;
}

.feature-content p {
   font-size: 1rem;
   line-height: 1.6;
   color: #34495e;
   text-align: center;
   margin: 0;
}

/* Modern AI Tutor Page Styles */

/* AI Hero Section */
#ai-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

#ai-hero::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 1000 1000"><defs><pattern id="ai-bg" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ai-bg)"/></svg>');
    pointer-events: none;
}

.ai-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-section {
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.ai-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInFromTop 0.8s ease-out 0.2s both;
}

.ai-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.5s both;
}

.ai-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f093fb;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-unit {
    font-size: 1.5rem;
    color: #f093fb;
    font-weight: 600;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* AI Brain Visualization */
.hero-visual-section {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInFromRight 1s ease-out 0.3s both;
}

.ai-brain-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.brain-outline {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.brain-nodes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #f093fb;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(240, 147, 251, 0.5);
}

.node.active {
    background: #667eea;
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
}

.node-1 { top: 20%; left: 50%; }
.node-2 { top: 35%; left: 80%; }
.node-3 { top: 65%; left: 80%; }
.node-4 { top: 80%; left: 50%; }
.node-5 { top: 65%; left: 20%; }

.brain-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
    animation: connectionPulse 2s ease-in-out infinite;
}

.connection-1 { top: 25%; left: 25%; width: 50%; }
.connection-2 { top: 50%; left: 20%; width: 60%; }
.connection-3 { top: 75%; left: 25%; width: 50%; }
.connection-4 { top: 50%; left: 50%; width: 30%; transform: rotate(90deg); }

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* AI Particles */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 60%; right: 30%; animation-delay: 3s; }
.particle-3 { bottom: 30%; left: 70%; animation-delay: 6s; }
.particle-4 { top: 70%; left: 40%; animation-delay: 2s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
    color: #667eea;
    font-size: 1.2rem;
}

.floating-card span {
    font-size: 0.9rem;
    color: #34495e;
    font-weight: 500;
}

.card-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Zimbabwe PayNow Payment Modal Styles */
.payment-modal {
   display: none;
   position: fixed;
   z-index: 10000;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.8);
   backdrop-filter: blur(8px);
   animation: fadeIn 0.3s ease;
}

.payment-modal-content {
   background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
   margin: 3% auto;
   padding: 30px;
   border-radius: 20px;
   width: 95%;
   max-width: 550px;
   position: relative;
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
   border: 2px solid #667eea;
   animation: slideInUp 0.4s ease;
}

.payment-modal h2 {
   color: #2c3e50;
   margin-bottom: 20px;
   text-align: center;
   font-size: 1.8rem;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.course-summary {
   background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
   padding: 20px;
   border-radius: 15px;
   margin-bottom: 25px;
   text-align: center;
   border: 1px solid rgba(102, 126, 234, 0.2);
}

.course-summary h3 {
   color: #2c3e50;
   margin-bottom: 10px;
   font-size: 1.4rem;
}

.course-price {
   color: #667eea;
   font-size: 1.2rem;
   font-weight: 600;
   margin-bottom: 5px;
}

.payment-options h3 {
   color: #2c3e50;
   margin-bottom: 15px;
   text-align: center;
   font-size: 1.3rem;
}

.payment-methods {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
   gap: 15px;
   margin-bottom: 25px;
}

.payment-method {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 20px 15px;
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   border: 2px solid #dee2e6;
   border-radius: 15px;
   cursor: pointer;
   transition: all 0.3s ease;
   text-align: center;
   min-height: 100px;
   justify-content: center;
}

.payment-method:hover, .payment-method.selected {
   border-color: #667eea;
   background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.payment-method i {
   font-size: 2.2rem;
   color: #667eea;
   margin-bottom: 10px;
   transition: color 0.3s ease;
}

.payment-method.selected i {
   color: #764ba2;
   transform: scale(1.1);
}

.payment-method span {
   font-weight: 600;
   color: #34495e;
   font-size: 0.9rem;
}

.payment-form {
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 25px;
   border-radius: 15px;
   margin-top: 20px;
   border: 1px solid rgba(102, 126, 234, 0.2);
}

.payment-form h3 {
   color: #2c3e50;
   margin-bottom: 20px;
   text-align: center;
   font-size: 1.2rem;
}

.payment-details {
   background: white;
   padding: 20px;
   border-radius: 10px;
   margin: 15px 0;
   border-left: 4px solid #667eea;
}

.payment-details p {
   margin: 8px 0;
   color: #34495e;
   font-size: 0.95rem;
}

.payment-details strong {
   color: #667eea;
}

.qr-placeholder {
   text-align: center;
   padding: 30px;
   background: white;
   border-radius: 10px;
   margin: 15px 0;
   border: 2px dashed #dee2e6;
}

.qr-placeholder i {
   color: #6c757d;
   margin-bottom: 10px;
}

.qr-placeholder p {
   color: #6c757d;
   font-size: 0.9rem;
   margin: 0;
}

.pay-now-btn {
   width: 100%;
   padding: 15px;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border: none;
   border-radius: 25px;
   font-size: 1.1rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
   margin-top: 20px;
}

.pay-now-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.modal-actions {
   text-align: center;
   margin-top: 20px;
}

.cancel-btn {
   padding: 12px 30px;
   background: #6c757d;
   color: white;
   border: none;
   border-radius: 25px;
   font-size: 1rem;
   font-weight: 500;
   cursor: pointer;
   transition: all 0.3s ease;
}

.cancel-btn:hover {
   background: #5a6268;
   transform: translateY(-1px);
}

.close-modal {
   position: absolute;
   right: 20px;
   top: 15px;
   font-size: 28px;
   font-weight: bold;
   color: #666;
   cursor: pointer;
   transition: all 0.3s ease;
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
}

.close-modal:hover {
   color: #333;
   background: rgba(102, 126, 234, 0.1);
   transform: rotate(90deg);
}

/* Mobile responsive styles for payment modal */
@media (max-width: 768px) {
   .payment-modal-content {
     margin: 5% auto;
     padding: 20px;
     width: 95%;
   }

   .payment-modal h2 {
     font-size: 1.5rem;
   }

   .payment-methods {
     grid-template-columns: 1fr 1fr;
     gap: 10px;
   }

   .payment-method {
     padding: 15px 10px;
     min-height: 80px;
   }

   .payment-method i {
     font-size: 1.8rem;
     margin-bottom: 8px;
   }

   .payment-method span {
     font-size: 0.8rem;
   }

   .payment-form {
     padding: 20px;
   }

   .payment-details {
     padding: 15px;
   }

   .payment-details p {
     font-size: 0.9rem;
   }
}

@media (max-width: 480px) {
   .payment-methods {
     grid-template-columns: 1fr;
   }

   .payment-method {
     flex-direction: row;
     justify-content: flex-start;
     text-align: left;
     padding: 15px;
   }

   .payment-method i {
     margin-bottom: 0;
     margin-right: 15px;
   }

   .payment-method span {
     font-size: 0.9rem;
   }
}


/* Modern Timeline Section */
#timeline {
   padding: 8vw 8vw 6vw 8vw;
   background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   position: relative;
   overflow: hidden;
}

#timeline::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 1000 1000"><defs><pattern id="timeline-bg" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f093fb" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23timeline-bg)"/></svg>');
   pointer-events: none;
}

.timeline-container {
   max-width: 1200px;
   margin: 0 auto;
   position: relative;
   z-index: 2;
}

.timeline-container h2 {
   font-size: 2.8rem;
   font-weight: 700;
   color: white;
   text-align: center;
   margin-bottom: 1rem;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.timeline-subtitle {
   font-size: 1.2rem;
   color: rgba(255, 255, 255, 0.8);
   text-align: center;
   margin-bottom: 4rem;
   font-weight: 300;
}

.timeline-wrapper {
   position: relative;
   padding: 2rem 0;
}

/* Timeline Line */
.timeline-wrapper::before {
   content: '';
   position: absolute;
   left: 50%;
   top: 0;
   bottom: 0;
   width: 4px;
   background: linear-gradient(to bottom, #667eea, #764ba2, #f093fb);
   transform: translateX(-50%);
   border-radius: 2px;
}

.timeline-item {
   margin-bottom: 3rem;
   position: relative;
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.6s ease;
}

.timeline-item.animate {
   opacity: 1;
   transform: translateY(0);
}

.timeline-item.left {
   width: 45%;
   margin-right: 55%;
   text-align: right;
}

.timeline-item.right {
   width: 45%;
   margin-left: 55%;
   text-align: left;
}

.timeline-content {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
   backdrop-filter: blur(10px);
   border-radius: 15px;
   padding: 2rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;
   cursor: pointer;
}

.timeline-content:hover {
   transform: translateY(-5px) scale(1.02);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 1.5rem;
   margin-bottom: 1rem;
   margin-left: auto;
   margin-right: auto;
   box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.timeline-item.left .timeline-icon {
   margin-left: auto;
   margin-right: 0;
}

.timeline-item.right .timeline-icon {
   margin-left: 0;
   margin-right: auto;
}

.timeline-content h3 {
   font-size: 1.8rem;
   font-weight: 700;
   color: #667eea;
   margin-bottom: 0.5rem;
}

.timeline-content h4 {
   font-size: 1.3rem;
   font-weight: 600;
   color: #2c3e50;
   margin-bottom: 1rem;
}

.timeline-content p {
   font-size: 1rem;
   line-height: 1.6;
   color: #34495e;
   margin: 0;
}

/* Timeline Connector Dots */
.timeline-item::after {
   content: '';
   position: absolute;
   width: 20px;
   height: 20px;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
   top: 50%;
   transform: translateY(-50%);
   box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.timeline-item.left::after {
   right: -42px;
}

.timeline-item.right::after {
   left: -42px;
}

#trust {
   padding: 8vw;
   text-align: center;
}

#trust .trust-img {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#trust .trust-img img {
  width: 90px;
  height: auto;
}
/* Blog */

#blog-container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8vw;
}

#blog-container .blogs {
  width: 60%;
}

#blog-container .blogs img {
  width: 100%;
  border-radius: 19px;
}

#blog-container .blogs .post {
  padding-bottom: 60px;
}

#blog-container .blogs .post h3 {
  color: #293038;
  padding: 15px 0px 10px 0px;
}

#blog-container .blogs .post p {
  color: #757373;
  padding-bottom: 20px;
}

#blog-container .blogs .post a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: rgb(21, 21, 100);
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}



#blog-container .cate {
  width: 30%;
}

#blog-container .cate h3 {
  padding-bottom: 7px;
}

#blog-container .cate a {
  text-decoration: none;
  color: #757373;
  font-weight: 500;
  line-height: 45px;
}

#blog-container .blogpost {
  width: 60%;
  margin: 0 auto;
}

#blog-container .blogpost p {
  text-align: justify;
  padding-bottom: 60px !important;
}



/* Course_inner */

#course-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8vw;
}

#course-inner .overview {
  width: 70%;

}

#course-inner h3 {
  padding: 35px 0 25px 0;
  color: #29303b;
}

#course-inner .overview {
  width: 70%;

}

#course-inner p {
  color: #64626e;
}

#course-inner hr {
  height: 1px;
  background: rgba(236, 226, 229, 0.5);
  margin-top: 40px;
}
#course-inner .overview {
  width: 70%;

}

#course-inner .overview .course-img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

#course-inner .overview .course-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#course-inner .overview .course-head .c-name {
  width: 70%;
}
#course-inner .overview .course-head .c-name h2 {
  color: #29303b;
}

#course-inner .overview .course-head .c-name .star {
  margin: 6px 0;
}

#course-inner .overview .course-head .c-name .star {
  color: #fdc93b;
  font-size: 0.9rem;
}

#course-inner .overview .course-head .c-name p {
  font-size: 15px;
}

#course-inner .overview .course-head span {
  padding: 16px 22px;
  border-radius: 5px;
  color: #5838fc;
  font-size: 24px;
  font-weight: 700;
  background-color: rgba(88, 56, 252,0.1);
}

#course-inner .learn p {
  font-size: 15px;
  padding-bottom: 15px;
}

#course-inner .learn p  i {
  color: #654ce4;
  font-weight: 700;
  margin-right: 20px;
}

#course-inner .tutor {
  display: flex;
}

#course-inner .tutor img {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   margin-right: 20px;
   object-fit: cover;

}

#course-inner .tutor h5 {
  font-size: 15px;
}

#course-inner .enroll {
  width: 300px;
  padding: 0 30px 30px 30px;
  border-radius: 11px;
  box-shadow: 0px 20px 40px 0 rgba(11 2 55 / 8%);
}

#course-inner .enroll h3 {
  padding-bottom: 10px;

}

#course-inner .enroll p {
  font-size: 15px;
  color: #64626e;
  max-width: 15px 0;
}

#course-inner .enroll p i {
  color: #654ce4;
  font-weight: 500;
  margin-right: 18px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
}

#course-inner .enroll .enroll-btn {
  padding: 25px 0 20px 0;
  margin: auto;
  text-align: center;
}

#course-inner .enroll .enroll-btn a {
  text-decoration: none;
  font-size: 0.8rem;
  padding: 13px 45px;
  background: rgb(50, 50, 136);
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
}
/* contact */

#contact {
  padding: 8vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#contact .getin {
  width: 350px;
}

#contact .getin h2 {
  color: #2c234d;
  font-size: 30px;
  font-weight: 800;
  line-height: .8;
  margin-bottom: 16px;
}

#contact .getin p {
  color: #686875;
  line-height: 24px;
  margin-bottom: 33px;
  border-bottom: 1px solid #e5e4ed;
}
#contact .getin h3 {
  color: #2c234d;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 15px;
}

#contact .getin .getin-details div {
  display: flex;
}

#contact .getin .getin-details div .get{
  font-size: 16px;
  line-height: 22px;
  color: #5838fc;
  margin-right: 20px;

}

#contact .getin .getin-details div p {
  font-size: 14px;
  border-bottom: none;
  line-height: 22px;
  margin-bottom: 15px;
}

#contact .form {
  width: 60%;
  background: #f7f6fa;
  padding: 40px;
  border-radius: 10px;
}

#contact .form h4 {
  font-size: 24px;
  color: #2c234d;
  line-height: 30px;
  margin-bottom: 8px;
}

#contact .form p {
  color: #686875;
  line-height: 24px;
  padding-bottom: 25px;
}

#contact .form .form-row {
  display: flex;
  justify-content: space-between;
}

#contact .form .form-row input {
  width: 48%;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  background: #fff;
  color: #7e7c87;
  outline: none;
  padding: 20px 30px;
  margin-bottom: 20px;
}

#contact .form .form-col input,
#contact .form .form-col textarea {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  background: #fff;
  color: #7e7c87;
  outline: none;
  padding: 20px 30px;
  margin-bottom: 20px;
}

#contact .form button {
  font-size: .9rem;
  padding: 13px 25px;
  background: rgb(21, 21, 100);
  border-radius: 5px;
  outline: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}

#map {
  width: 100%;
  height: 70vh;
  margin-bottom: 8vw;
}

#map iframe {
  width: 100%;
  height: 100%;
}
/* responsive */

@media (max-width: 769px) {
   nav {
     padding: 15px 20px;
   }
   nav img {
     width: 130px;
   }
   #menu-btn {
     display: initial;
   }
   #menu-close {
     display: initial;
     font-size: 1.6rem;
     color: #fff;
     padding: 30px 0 20px 20px;
   }
   nav .nav-links ul {
     position: absolute;
     top: 0;
     right: -220px;
     height: 100vh;
     width: 220px;
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     align-items: flex-start;
     transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   }

   nav .nav-links ul.active{
     right: 0;
   }
    nav .nav-links ul li{
     padding: 20px 0 20px 40px;
     margin-left: 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     width: 100%;
    }
   nav .nav-links ul li a {
     color: #fff;
     font-weight: 500;
   }

   #home {
     padding-top: 0px;
     height: 80vh;
     text-align: center;
   }

   #home h2 {
     font-size: 2.2rem;
     margin-bottom: 1rem;
   }

   #home p{
     width: 90%;
     font-size: 1rem;
     margin-bottom: 2rem;
   }

   #home .btn {
     flex-direction: column;
     gap: 15px;
     align-items: center;
   }

   #features {
     padding: 8vw 4vw 4vw 4vw;
   }

   #features h1 {
     font-size: 2.2rem;
     margin-bottom: 1rem;
   }

   #features .fea-base {
     grid-template-columns: 1fr;
     gap: 1.5rem;
   }

   #course {
     padding: 8vw 4vw 4vw 4vw;
   }

   #course h1 {
     font-size: 2.2rem;
     margin-bottom: 1rem;
   }

   #course .course-box {
     grid-template-columns: 1fr;
     gap: 1.5rem;
   }

   #registration {
     padding: 6vw 4vw 6vw 4vw;
   }
   #registration .reminder .time{
     display: flex;
     flex-wrap: wrap;
     margin-top: 40px;
     justify-content: center;
   }
   #experts{
     padding: 8vw 4vw 4vw 4vw;
     text-align: center;
   }

   #experts h1 {
     font-size: 2.2rem;
     margin-bottom: 1rem;
   }

   #experts .expert-box {
     grid-template-columns: 1fr;
     gap: 1.5rem;
   }

  /*about*/
  #about-container {
    flex-direction: column-reverse;
  }
  #about-container .about-img {
    width: 100%;
    padding-right: 0px;
  }
  #about-container .about-text {
    width: 100%;
    padding-bottom: 20px;
  }

  /* About Page Mobile Styles */
  #about-home {
    padding-top: 0px;
  }

  #about-home h2 {
    font-size: 2.2rem;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .video-placeholder {
    height: 300px;
  }

  .learning-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modern-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Timeline Mobile Styles */
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    margin: 0 0 2rem 0;
    text-align: center;
  }

  .timeline-wrapper::before {
    left: 30px;
    width: 2px;
  }

  .timeline-item::after {
    left: 21px;
    top: 30px;
    width: 18px;
    height: 18px;
  }

  .timeline-item.left::after {
    right: auto;
  }

  .timeline-item.right::after {
    left: 21px;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-icon {
    margin-bottom: 1rem;
  }
  
  /*blog*/

  #blog-container {
    padding: 8vw 4vw;;
  }

  #blog-container .blogpost {
    width: 100%;
    margin-top: 30px;
  }

  #blog-container .blogpost img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }

  /* course-inner */

  #course-inner {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    padding: 8vw 4vw;
    justify-content: center;
  }

  #course-inner .overview {
    width: 100%;
  }

  #course-inner .overview .course-img {
    width: 100%;
    height: 100%;
  }
  #course-inner .overview .profile-img {
    

  }

  #course-inner .enroll {
    margin-top: 25px;
  }

  /* Contact */
  
  #contact {
    padding: 8w 4vw;
  }
  #contact .getin {
    width: 350px;
  }

}
@media (max-width: 475px) {
   #home h2 {
     font-size: 1.8rem;
   }

   #home p {
     font-size: 0.9rem;
   }

   #features h1, #course h1, #experts h1 {
     font-size: 1.8rem;
   }

   #features p, #course p, #experts p {
     font-size: 1rem;
   }

   #registration {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
   }
   #registration .reminder .time {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     margin-top: 20px;
     margin-bottom: 20px;
   }

   #registration .reminder h1 {
     font-size: 1.8rem;
   }
    /*about*/
  #about-container {
    flex-direction: column-reverse;
  }
  #about-container .about-img {
    width: 100%;
    padding-right: 0px;
  }
  #about-container .about-text {
    width: 100%;
    padding-bottom: 20px;
  }
  #trust .trust-img {
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }  
  #trust .trust-img img {
    width: 60px;
    margin: 10px 15px;
    height: auto;
  }

  /* blog */

  #blog-container {
    flex-direction: column;
  }
  #blog-container .blogs {
    width: 100%;
  }
  #blog-container .cate {
    width: 100%;
    margin-top: 20px;
  }
   #blog-container .blogpost {
    width: 100%;
    margin-top: 70px;
  }

  #blog-container .blogpost img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }

  #course-inner .overview .course-head .c-name {
    width: 50%;
  }
  #course-inner .overview .course-head .c-name h2 {
    font-size: 22px;
  }
  #course-inner .overview .course-head .span {
    font-size: 22px;
  }
  #course-inner .enroll {
    width: 100%;
  }

  /* contact */
  #contact {
    padding: 8vw 4vw;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
  }

  #contact .getin {
    width: 100%;
    margin-bottom: 30px;
  }
  #contact .form {
    width: 100%;
    padding: 40px 30px;
  }
  #contact .form .form-row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
   }
   #contact .form .form-row input {
     width: 100%;
   }

   /* AI Tutor Mobile Styles */
   #ai-hero {
     padding: 100px 20px 60px;
     min-height: auto;
     height: auto;
   }

   .ai-hero-content {
     grid-template-columns: 1fr;
     gap: 3rem;
   }

   .hero-text-section {
     text-align: center;
   }

   .ai-main-title {
     font-size: 2.5rem;
   }

   .ai-subtitle {
     font-size: 1rem;
   }

   .ai-stats {
     flex-direction: column;
     gap: 1.5rem;
   }

   .hero-visual-section {
     order: -1;
   }

   .ai-brain-visual {
     width: 300px;
     height: 300px;
   }

   .floating-card {
     position: static !important;
     margin-bottom: 1rem;
     display: inline-flex;
     width: auto;
   }

   .features-grid {
     grid-template-columns: 1fr;
     gap: 1.5rem;
   }

   .access-container {
     grid-template-columns: 1fr;
     gap: 3rem;
   }

   .access-content h2 {
     font-size: 2.2rem;
   }

   .access-features {
     grid-template-columns: 1fr;
     gap: 1rem;
   }

   .access-stats {
     gap: 1.5rem;
   }

   .stat-item {
     padding: 1.5rem;
   }

   .stat-number {
     font-size: 2rem;
   }

}

/* AI Features Section */
#ai-features {
    padding: 8vw 8vw 6vw 8vw;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#ai-features::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 1000 1000"><defs><pattern id="features-bg" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23features-bg)"/></svg>');
    pointer-events: none;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.primary:hover { box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3); }
.feature-card.secondary:hover { box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3); }
.feature-card.accent:hover { box-shadow: 0 20px 40px rgba(240, 147, 251, 0.3); }
.feature-card.success:hover { box-shadow: 0 20px 40px rgba(46, 204, 113, 0.3); }

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card.primary .feature-icon { background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%); }
.feature-card.secondary .feature-icon { background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%); }
.feature-card.accent .feature-icon { background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 167, 66, 0.1) 100%); }
.feature-card.success .feature-icon { background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%); }

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: #667eea;
}

.feature-card.primary .feature-icon i { color: #667eea; }
.feature-card.secondary .feature-icon i { color: #3498db; }
.feature-card.accent .feature-icon i { color: #f093fb; }
.feature-card.success .feature-icon i { color: #2ecc71; }

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-metrics {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.metric {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 2s ease;
}

.ai-response-time {
    text-align: center;
    margin-top: 1rem;
}

.response-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.assessment-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.assessment-stats .stat {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #2ecc71;
    font-weight: 600;
}

/* Platform Access Section */
#platform-access {
    padding: 8vw 8vw 6vw 8vw;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#platform-access::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 1000 1000"><defs><pattern id="access-bg" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23access-bg)"/></svg>');
    pointer-events: none;
}

.access-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.access-content {
    animation: slideInFromLeft 1s ease-out;
}

.access-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.access-content p {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.access-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.access-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.access-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.access-feature i {
    color: #667eea;
    font-size: 1.2rem;
}

.access-feature span {
    font-size: 1rem;
    color: #34495e;
    font-weight: 500;
}

.platform-access-btn {
    text-align: center;
}

.platform-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: none;
    cursor: pointer;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.access-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.access-visual {
    animation: slideInFromRight 1s ease-out;
}

.access-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: #34495e;
    font-weight: 500;
}