
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap');

/* Reset and Base Styles */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
   background-color: #141414;
  color: white;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #1a1a1a, #121212);
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ff3333;
  letter-spacing: 1px;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 30px;
    background-color: #121212;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }

  .nav-links.active {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .nav-links a {
    padding: 10px;
  }
}

.nav-register-btn {
  display: block;
  background-color: #ff3333;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .nav-register-btn {
    display: inline-block;
  }
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items:center;
  justify-content:center;
  gap: 20px;
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff3333;
  bottom: -4px;
  left: 0;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
/* Bottom Info */
.top-banner{
  background-color: #141414;
 transform: translateY(-100%);
  opacity: 0;
  animation: slideDown 0.8s ease-out forwards;
  z-index: 1;
  position: relative;
}

/* Slide down animation */
@keyframes slideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.inh {
    background: linear-gradient(135deg, #b31217, #e52d27);
    /* same theme */
    color: #fff;
    text-align: center;
    padding: 10px 20px 20px;
    border-radius: 0 0 40px 40px;
}

.inh p {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.btnd {
    padding: 5px 26px;
    background-color: #fff;
    color: #b31217;
    border: none;
    border-radius: 30px;
    font-weight: 400;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 4px;
}

.btnd:hover {
    background-color: #ffd6ec;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #141414;
  height: 85vh;
  padding: 0 5vw;
  position: relative;
  overflow: hidden;
}

.hero-left {
  width: 60%;
  z-index: 2;
  color: white;
  animation: slideInLeft 1.5s ease-out;
}

.hero-text-box {
  max-width: 90%;
}

.hero-left h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.hero-left h2 {
  font-size: 20px;
  max-width: 700px;
  margin-bottom: 10px;
}

.hero-left p {
  font-size: 17px;
  color: #ffeb3b;
  font-weight: 600;
  margin-top: 10px;
}

.hero-btn {
  margin-top: 25px;
  padding: 14px 30px;
  background-color: #ff3333;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 51, 51, 0.3);
}

.hero-btn:hover {
  background-color: #e60000;
  transform: scale(1.05);
}

.hero-right {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 1.5s ease-out;
}

.image-box {
  width: 90%;
  max-width: 400px;
  animation: floatUpDown 3s ease-in-out infinite;
}

.image-box img {
  width: 100%;
  display: block;
}

/* Animations */
@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    height:auto;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-left, .hero-right {
    width: 100%;
  }
  .hero-text-box {
  max-width: 100%;
}
  .image-box {
  width: 100%;

  animation: floatUpDown 3s ease-in-out infinite;
}
   .image-box img {
  width: 100%;

}

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-left h2 {
    font-size: 18px;
  }

  .image-box {
    margin-top: 30px;
    max-width: 300px;
  }
  .hero-right {
    margin-top: 50px;
  }
}

@media screen and (max-width: 480px) {
  .hero-left h1 {
    font-size: 28px;
  }

  .hero-left h2 {
    font-size: 16px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .image-box {
    
  }
}  


/* .hero {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('hero.jpg') center/cover no-repeat;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  border-radius: 12px;
}

.hero h1 {
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 20px;
  animation: slideInTop 1.2s ease-out;
}

.hero h2 {
  font-size: 20px;
  max-width: 700px;
  margin-bottom: 10px;
  animation: slideInBottom 1.4s ease-out;
}

.hero p {
  font-size: 17px;
  color: #ffeb3b;
  font-weight: 600;
  margin-top: 10px;
  magin-bottom:12px;
  animation: fadeIn 2.2s ease-out;
}

.hero-content {
  animation: fadeInContainer 1.5s ease-out;
  padding: 20px;
  border-radius: 12px;
}

.hero-btn {
  margin-top: 25px;
  padding: 14px 30px;
  background-color: #ff3333;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
  animation: fadeIn 2.5s ease-out;
  box-shadow: 0 4px 12px rgba(255, 51, 51, 0.3);
}

.hero-btn:hover {
  background-color: #e60000;
  transform: scale(1.05);
}

@keyframes fadeInContainer {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInTop {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInBottom {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
} */

/* ...Unchanged Sections Below... */


/* Continue with Payment, Footer, and Other Sections... (unchanged below) */

/* Payment Section */
.payment-section {
  padding: 40px 20px;
  text-align: center;
 background-color: #141414;
}

.qr-code {
  width: 200px;
  max-width: 80%;
  margin: 20px auto;
  display: block;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

input[type="text"],
input[type="email"],
input[type="file"] {
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.file-label {
  text-align: left;
  font-weight: bold;
  margin-top: 10px;
}

select {
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

button {
  padding: 12px;
  background-color: #c1121f;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #a10f1a;
}

/* Footer */
/* Footer */
footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

footer .social-icons {
  margin-top: 10px;
}

footer .social-icons a {
  color: #ccc;
  font-size: 20px;
  margin: 0 8px;
  transition: color 0.3s;
}

footer .social-icons a:hover {
  color: #ff0000; /* Change to desired hover color */
}


/* Responsive Queries */
@media screen and (max-width: 768px) {
   .inh p {
    font-size: .8rem;
    margin-bottom: 6px;
    font-weight: 400;
}

.btnd {
    padding: 4px 20px;
    background-color: #fff;
    color: #b31217;
    border: none;
    border-radius: 30px;
    font-weight: 300;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 4px;
}
  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .overlay {
    padding: 20px;
  }

  form {
    width: 90%;
  }

  .qr-code {
    width: 180px;
  }
}

#verifyBtn {
  margin-top: 15px;
  padding: 12px;
  background-color: #c1121f;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#verifyBtn:hover {
  background-color: #a10f1a;
}

@media screen and (max-width: 480px) {
  .hero {
    height: 50vh;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 16px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
  }

  button {
    font-size: 15px;
  }

  .qr-code {
    width: 150px;
  }
}

/* About Section */
.about-section {
  background-color: #141414;
  padding: 40px 20px;
  text-align: center;
}

.about-section h2 {
  color: #ff3333;
  margin-bottom: 20px;
    font-size: 32px;
  text-shadow: 1px 1px 5px #000;

}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  margin: 10px auto;
  max-width: 800px;
  color: #f5f5f5;
}
/* Courses Section */
.courses-section {
  background-color: #141414;
  padding: 60px 20px;
  text-align: center;
  animation: fadeInCourses 1.5s ease-out;
}

.courses-section h2 {
  color: #ff3333;
  margin-bottom: 30px;
  font-size: 32px;
  text-shadow: 1px 1px 5px #000;
}
.btnda {
    padding: 2px 26px;
    background-color: #fff;
    color: #b31217;
    border: none;
    border-radius: 30px;
    font-weight: 300;
    text-decoration: none;
    transition: 0.3s;
  
}
.btnda:hover {
    background-color: #ffd6ec;
}

.courses-section ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.courses-section li {
  background-color: #2c2c2c;
  margin: 16px 0;
  padding: 18px 25px;
  border-radius: 12px;
  font-size: 17px;
  color: #f0f0f0;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  animation: fadeInItem 0.8s ease forwards;
}

.courses-section li:hover {
  background-color: #3a3a3a;
  transform: scale(1.02);
}

@keyframes fadeInCourses {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInItem {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* --- Reviews Section --- */
.reviews-section {
  padding: 60px 20px;
  background-color: #141414;
  text-align: center;
}

.reviews-section h2 {
  font-size: 32px;
  color: #ff3333;
  margin-bottom: 40px;
  position: relative;
}

.reviews-section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #ff3333;
  border-radius: 2px;
}

.reviews-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #ff3333 #1a1a1a;
}

.reviews-container::-webkit-scrollbar {
  height: 6px;
}

.reviews-container::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.reviews-container::-webkit-scrollbar-thumb {
  background: #ff3333;
  border-radius: 3px;
}

.review-card {
  flex: 0 0 auto;
  width: 280px;
  background: #121212;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  padding: 20px;
  scroll-snap-align: start;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4); /* No red glow */
}

.review-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #ff3333;
}

.review-card h3 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

.review-card p.college {
  font-size: 14px;
  color: #ff4d4d;
  margin: 4px 0 10px;
}

.review-card p.review {
  font-size: 15px;
  color: #dddddd;
  line-height: 1.4;
  position: relative;
  padding-left: 16px;
}

.review-card p.review::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 22px;
  color: #ff3333;
}


.video-section {
  padding: 40px 20px;
  text-align: center;
}

.video-section h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #ff3333;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .video-section h2 {
    font-size: 22px;
  }
  
  .video-container {
    padding-bottom: 60%;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 30px 10px;
  }

  .video-container {
    padding-bottom: 65%;
  }
}





 .empower-banner {
    background-color: #141414; /* Same as About Us h2 color */
    padding: 40px 15px;
    text-align: center;
  }

  .empower-box {
    background: #c1121f;
    display: inline-block;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: auto;
  }

  .empower-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow:
      0 0 6px rgba(255, 255, 255, 0.6),
      0 0 12px rgba(255, 255, 255, 0.7);
    animation: glowText 1.6s ease-in-out infinite alternate;
    line-height: 1.5;
  }

  @keyframes glowText {
    0% {
      text-shadow:
        0 0 5px rgba(255, 255, 255, 0.6),
        0 0 10px rgba(255, 255, 255, 0.6);
    }
    100% {
      text-shadow:
        0 0 10px rgba(255, 255, 255, 1),
        0 0 20px rgba(255, 255, 255, 0.9);
    }
  }

  @media (max-width: 600px) {
    .empower-text {
      font-size: 1rem;
      padding: 0 10px;
    }

    .empower-box {
      padding: 15px 20px;
    }
  }


.certificate-section {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}
.certificate-container {
  max-width: 600px;
  margin: auto;
}
/* form label {
  display: block;
  margin: 10px 0 5px;
  text-align: left;
}
form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.certificate-container select {
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #888;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none; /* Remove default arrow styling */
/*   -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='5' viewBox='0 0 10 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 5 5-5H0z' fill='%23333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}
 */ */
.certificate-container select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

form button {
  padding: 10px 20px;
  background-color: #c1121f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
form button:hover {
  background-color: #a20f1a;

}

.canvas-wrapper {
  width: 100%;
  overflow-x: auto;
  text-align: center;
  margin-top: 20px;
}

#certificateCanvas {
  margin-top: 20px;
  width: 100%;
  max-width: 800px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}









































