
/* Logo Fix */
.logo{
  height:70px;
  width:auto;
}

/* Navbar spacing fix */
body{
  padding-top:60px;
}

/* Navbar shadow */
.navbar{
  background: linear-gradient(90deg,#4b1fa2,#0f6bdc);
  padding:12px 0;
  transition:0.3s;
}

/* Hover effect */
.nav-link{
  position:relative;
  color: #fff;
}

.nav-link::after{
  content:"";
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:0;
  background:#fff;
  transition:0.3s;
}

.nav-link:hover::after{
  width:100%;
}

/* Button upgrade */
.support-btn{
  background:linear-gradient(45deg,#7a6cff,#00c6ff);
  border:none;
  color:#fff;
  padding:10px 22px;
  border-radius:8px;
  font-weight:500;
}

.support-btn:hover{
  opacity:0.9;
}

/* Hero Section */

.hero{
background: linear-gradient(90deg,#4b1fa2,#0f6bdc);
color:#fff;
padding:120px 0 80px;
position:relative;
overflow:hidden;
}

.hero h1{
font-size:50px;
font-weight:700;
line-height:1.3;
}

.hero p{
margin-top:20px;
color:#dbe8ff;
}

.hero-btn{
margin-top:25px;
}

.hero-btn .btn{
padding:12px 28px;
border-radius:8px;
font-weight:500;
}

.btn-primary{
background:#7a6cff;
border:none;
}

.btn-outline-light{
border:2px solid #fff;
}

/* Social Icons */

.social-icons{
margin-bottom:25px;
}

.social-icons a{
display:inline-block;
width:40px;
height:40px;
line-height:40px;
text-align:center;
border:1px solid rgba(255,255,255,0.4);
border-radius:8px;
color:#fff;
margin-right:10px;
}

/* Hero Image */

.hero img{
width:100%;
max-width:520px;
}

/* Mobile Center Alignment */
@media (max-width: 768px){

  .hero{
    text-align:center;
    padding:100px 0 60px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:14px;
  }

  /* Social Icons Center */
  .social-icons{
    justify-content:center;
    display:flex;
  }

  /* Buttons Center */
  .hero-btn{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
  }

  /* Image spacing */
  .hero img{
    margin-top:30px;
  }

}
@media (max-width: 576px){
  .hero-btn{
    flex-direction:column;
    align-items:center;
  }

  .hero-btn .btn{
    width:80%;
  }
}
/* Floating Shapes Container */
.floating-shapes{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  overflow:hidden;
  z-index:0;
}

/* Shape Style */
.floating-shapes span{
  position:absolute;
  display:block;
  width:60px;
  height:60px;
  background:rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border-radius:50%;
  animation: float 20s linear infinite;
}

/* Different Sizes & Positions */
.floating-shapes span:nth-child(1){
  left:10%;
  width:80px;
  height:80px;
  animation-duration:25s;
}

.floating-shapes span:nth-child(2){
  left:30%;
  width:40px;
  height:40px;
  animation-duration:18s;
}

.floating-shapes span:nth-child(3){
  left:50%;
  width:100px;
  height:100px;
  animation-duration:30s;
}

.floating-shapes span:nth-child(4){
  left:70%;
  width:50px;
  height:50px;
  animation-duration:22s;
}

.floating-shapes span:nth-child(5){
  left:85%;
  width:70px;
  height:70px;
  animation-duration:26s;
}

/* Animation */
@keyframes float{
  0%{
    transform: translateY(100vh) scale(0);
    opacity:0;
  }
  50%{
    opacity:0.6;
  }
  100%{
    transform: translateY(-10vh) scale(1);
    opacity:0;
  }
}
.hero .container{
  position:relative;
  z-index:2;
}

/* About Section */
.about-section{
  background:#0a0f2c;
  color:#fff;
}

/* Title */
.about-title{
  font-size:38px;
  font-weight:700;
  background: linear-gradient(45deg,#00c6ff,#7a6cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.about-text{
  margin-top:15px;
  color:#cfd8ff;
  line-height:1.7;
}

/* Image */
.about-img img{
  width:100%;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* Feature Box */
.about-box{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  padding:20px;
  text-align:center;
  border-radius:12px;
  backdrop-filter: blur(10px);
  transition:0.3s;
}

.about-box i{
  font-size:28px;
  margin-bottom:10px;
  color:#00c6ff;
}

.about-box:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,0.1);
}

/* Section */
.courses-section{
  background:linear-gradient(90deg,#4b1fa2,#0f6bdc);
  color:#fff;
}

/* Title */
.section-title{
  font-size:40px;
  font-weight:700;
  background: linear-gradient(45deg,#fff,#f90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card */
.course-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  padding:30px 20px;
  border-radius:15px;
  backdrop-filter: blur(10px);
  text-align:center;
  transition:0.3s;

  height:100%;                /* 🔥 same height */
  display:flex;               /* 🔥 flex layout */
  flex-direction:column;      /* 🔥 vertical */
  justify-content:space-between; /* 🔥 equal spacing */
}
.course-card h5{
  min-height:50px;   /* equal title space */
}

.course-card p{
  min-height:60px;   /* equal description space */
}
.owl-carousel .owl-item{
  display:flex;
}

.owl-carousel .course-card{
  width:100%;
}
/* Gradient Border */
.course-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:15px;
  padding:1px;
  background:linear-gradient(45deg,#00c6ff,#7a6cff);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Icon */
.course-card i{
  font-size:35px;
  margin-bottom:15px;
  color:#00c6ff;
}

/* Hover */
.course-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.1);
}

/* Owl Dots */
.owl-dots{
  margin-top:20px;
}

.owl-dot span{
  background:#fff !important;
}
.enroll-btn{
  background:linear-gradient(45deg,#00c6ff,#7a6cff);
  border:none;
  color:#fff;
  padding:10px;
  border-radius:8px;
  width:100%;
  font-weight:500;
  transition:0.3s;
}

.enroll-btn:hover{
  transform:scale(1.05);
}
.owl-carousel .owl-item{
  pointer-events: auto;
}

.course-card{
  pointer-events: auto;
}
/* Modal Background Gradient */
.modal-content{
  background: linear-gradient(135deg,#4b1fa2,#0f6bdc);
  border-radius:15px;
  color:#fff;
  border:none;
}

/* Form Inputs Glass Effect */
.enroll-form .form-control,
.enroll-form .form-select{
  background: rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
  border-radius:10px;
}

/* Placeholder hidden */
.form-control::placeholder{
  color:transparent;
}

/* Label Color */
.form-floating label{
  color:#dbe8ff;
}

/* Focus Effect */
.enroll-form .form-control:focus,
.enroll-form .form-select:focus{
  border-color:#00c6ff;
  box-shadow:0 0 10px rgba(0,198,255,0.5);
  background: rgba(255,255,255,0.15);
  color:#fff;
}

/* Dropdown text color fix */
.form-select option{
  color:#000;
}

/* Submit Button */
.submit-btn{
  background: linear-gradient(45deg,#00c6ff,#7a6cff);
  border:none;
  padding:12px;
  border-radius:10px;
  font-weight:600;
  color:#fff;
  transition:0.3s;
}

.submit-btn:hover{
  transform:scale(1.05);
}
.modal-header{
  border-bottom:1px solid rgba(255,255,255,0.2);
}

.modal-title{
  font-weight:600;
}
/* Container */
.floating-buttons{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}

/* Button Base */
.float-btn{
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  transition:0.3s;
  text-decoration:none;
}

/* WhatsApp */
.float-btn.whatsapp{
  background:linear-gradient(45deg,#25D366,#128C7E);
}

/* Call */
.float-btn.call{
  background:linear-gradient(45deg,#ff7a18,#ff3d00);
}

/* Hover Effect */
.float-btn:hover{
  transform:scale(1.1);
}

/* Pulse Animation */
.float-btn::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:inherit;
  opacity:0.6;
  animation:pulse 2s infinite;
  z-index:-1;
}

@keyframes pulse{
  0%{transform:scale(1); opacity:0.6;}
  70%{transform:scale(1.6); opacity:0;}
  100%{opacity:0;}
}
/* Sticky Button */
.enquiry-btn{
  position:fixed;
  top:50%;
  right:-45px;
  transform:translateY(-50%) rotate(-90deg);
  background:linear-gradient(45deg,#00c6ff,#7a6cff);
  color:#fff;
  padding:12px 30px;
  font-weight:600;
  border-radius:8px 8px 0 0;
  cursor:pointer;
  z-index:9999;
  letter-spacing:1px;
  transition:0.3s;
}

/* Hover Effect */
.enquiry-btn:hover{
  right:-35px;
}

/* Mobile Fix */
@media(max-width:768px){
  .enquiry-btn{
    right:-50px;
    padding:10px 25px;
    font-size:14px;
  }
}
/* Section */
.testimonial-section{
  background:#0a0f2c;
  color:#fff;
}

/* Card */
.testimonial-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  padding:30px 20px;
  border-radius:15px;
  backdrop-filter: blur(10px);
  text-align:center;
  transition:0.3s;
}

/* Image */
.testimonial-card img{
  width:80px;
  height:80px;
  border-radius:50%;
  margin-bottom:15px;
  object-fit:cover;
  border:3px solid #00c6ff;
}

/* Stars */
.stars{
  color:#ffc107;
  margin-bottom:10px;
}

/* Text */
.testimonial-card p{
  color:#cfd8ff;
  font-size:14px;
}

/* Hover */
.testimonial-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.1);
}

/* Owl dots */
.owl-dot span{
  background:#fff !important;
}

/* Footer */
.footer-section{
  background:linear-gradient(90deg,#4b1fa2,#0f6bdc);
  color:#fff;
  padding:60px 0 0;
}

/* Title */
.footer-title{
  font-weight:600;
  margin-bottom:20px;
}

/* Links */
.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:#cfd8ff;
  text-decoration:none;
  transition:0.3s;
}

.footer-links a:hover{
  color:#00c6ff;
  padding-left:5px;
}

/* Contact */
.footer-section p{
  color:#cfd8ff;
  margin-bottom:10px;
}

/* Social Icons */
.footer-social a{
  display:inline-block;
  width:40px;
  height:40px;
  line-height:40px;
  text-align:center;
  background:rgba(255,255,255,0.1);
  border-radius:8px;
  color:#fff;
  margin-right:8px;
  transition:0.3s;
}

.footer-social a:hover{
  background:#00c6ff;
}

/* Bottom Bar */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:30px;
  padding:15px 0;
  font-size:14px;
  color:#aaa;
}

