body{
    background: url('bg.jpg') rgba(0,0,0,0.3);
    background-blend-mode:multiply;
    background-position:center;
    background-size:cover;
    background-repeat: no-repeat;
    margin: 0;
    font-family: 'Arial', sans-serif;
    }
    
    @media(max-width: 768px){
        .sidebar{
            background-color: rgba(255,255,255, 0.15);
            backdrop-filter: blur(8px);
        }
    
        .footer-container {
            flex-direction: column;
            text-align: center;
          }
        
          .footer-section {
            margin: 20px 0;
          }
        
          .social-icons {
            justify-content: center;
          }

          .top-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
          }
        
          .top-buttons {
            flex-direction: column;
            width: 100%;
          }
        
          .top-buttons button {
            width: 100%;
          }
          /* .buttons{
            width:100%;
            color: #333;
  background-color: #d1ad55;
  color: #000;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease; */


          }

.cen{
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  padding: 20px;
}

body {
  font-family: Arial, sans-serif;
}

.open-modal-btn {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Box */
.modal-content {
  background-color: #353333;
  margin: 10% auto;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Form Fields */
.modal-content input[type="text"],
.modal-content input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox input {
  margin-right: 8px;
}

/* Buttons */
.modal-buttons {
  display: flex;
  justify-content: space-between;
}

.register-btn {
  background-color: #007bff;
  color: rgb(14, 12, 12);
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.close-btn {
  background-color: #dc3545;
  color: rgb(16, 15, 15);
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}





    a{
      text-decoration: none;
      color: #000;
    }
    
    
    .modal-lg {
      max-width: 900px;
    }
    @media (min-width: 768px) {
       .modal-lg {
        width: 100%;
      } 
    }
    @media (min-width: 992px) {
      .modal-lg {
        width: 900px;
      }
    }
    
    .navbg{
      background: url('bg.jpg') rgba(0,0,0,0.3);
    }
    
    
    
    
    /* General Styles */
    
    /* Reset */




    .btn {
        background: #ff5500;
        border: none;
        padding: 10px 20px;
        color: white;
        font-weight: bold;
        cursor: pointer;
        border-radius: 8px;
      }
      
      .steps-container {
  background: url('Pic3.jpg') no-repeat center center;
  background-size: cover;
  padding: 40px 20px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  position: relative;
}

.section-heading {
  grid-column: 1 / -1; /* makes heading span all columns */
  text-align: center;
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
      
      .step {
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
         
         
      }

      .step:hover {
        transform: scale(1.05); /* Slight zoom */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); /* Deeper shadow */
        opacity: 0.95;
      }
      
      .step h2 {
        font-size: 22px;
        margin-bottom: 10px;
      }
      
      .step img {
        width: 50px;
        height: 50px;
        margin: 10px 0;
      }
      
      .step h3 {
        font-size: 20px;
        margin: 10px 0;
      }
      
      .step p {
        font-size: 15px;
      }
      
      /* Step Colors */
      .red {
        background: #e53935;
      }
      .orange {
        background: #ed8c0c;
      }
      .lorange {
        background: #e5b035;
      }
      
      .purple {
        background: #8e24aa;
      }
      
      .dark {
        background: #333;
      }
      
      .yellow {
        background: #fdd835;
        color: #000;
      }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styling */
  body {
    font-family: 'Segoe UI', sans-serif;
    color: white;
    background: #000;
  }
  
  /* Video container section */
  .video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Fullscreen background video */
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Overlay content on video */
  .overlay-content {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(14, 8, 8);
    text-shadow: 0 0 10px black;
    padding: 20px;
  }
  
  .overlay-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .overlay-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  /* Top logo and button container */
.top-bar {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    flex-wrap: wrap;
  }
  
  .logo {
    height: 100px;
    width: auto;
    margin-left: auto;
    margin-right: 360px;
    margin-bottom: 15px;
  }
  
  .top-buttons {
    display: flex;
    gap: 10px;
  }
  
  .top-buttons button {
    background: rgba(91, 91, 90, 0.5);
    border: none;
    padding: 10px 20px;
    color: black;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .top-buttons button:hover {
    background: rgb(248, 248, 78);
  }
  
  /* Responsive layout */
  @media (max-width: 768px) {
    .logo {
        height: 70px;
        width: auto;
        margin-left: auto;
        margin-right: auto;
      }
  }
 
  

 @media (max-width: 768px) {
    .hero-title {
  font-size: 15px;
  color: #ffa07a;
  margin-bottom: 8px;
  font-weight: 500;
}

.hero-description {
  font-size: 10px;
  color: #eee;
  margin-bottom: 12px;
}

.hero-button {
  background-color: #d1ad55;
  color: #000;
  padding: 6px 12px;
  border-radius: 02px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-button:hover {
  background-color: #ffc107;
  color: #000;
}

.overlay-content {
    position: absolute;
    top: 70%;
    left: 50%;
    width:100%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(14, 8, 8);
    text-shadow: 0 0 10px black;
    padding: 10px;
  }
  
  .overlay-content h1 {
    font-size: 2.5rem;
    /* font-size: medium; */
    margin-bottom: 10px;
  }
  
  .overlay-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-size:medium;
  }
  
 
  }

 .imgsize{
  height: 200px;
 }

  
.hero-title {
  font-size: 28px;
  color: #f5e504;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-description {
  font-size: 16px;
  color: #eee;
  margin-bottom: 25px;
  text-align: center;
}

.hero-button {
  background-color: #d1ad55;
  color: #000;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-button:hover {
  background-color: #ffc107;
  color: #000;
}
 
      


      /* Footer Styles */
      .footer {
        background: #1c1c1e;
        color: #f1f1f1;
        padding: 40px 0;
      }
      
      .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      
      .footer-section {
        flex: 1 1 200px;
        margin: 10px;
      }
      
      .footer-section h4 {
        font-size: 18px;
        margin-bottom: 20px;
        border-bottom: 2px solid #4caf50;
        display: inline-block;
        padding-bottom: 5px;
      }
      
      .footer-section p {
        line-height: 1.6;
      }
      
      .footer-section ul {
        list-style: none;
        padding: 0;
      }
      
      .footer-section ul li {
        margin-bottom: 10px;
      }
      
      .footer-section ul li a {
        color: #f1f1f1;
        text-decoration: none;
        transition: color 0.3s;
      }
      
      .footer-section ul li a:hover {
        color: #4caf50;
      }
      
      /* Contact Icons */
      .footer-section.contact p i {
        color: #4caf50;
        margin-right: 10px;
      }
      
      /* Social Icons */
      .social-icons {
        display: flex;
        gap: 15px;
      }
      
      .social-icons a {
        color: #f1f1f1;
        font-size: 20px;
        transition: color 0.3s;
      }
      
      .social-icons a:hover {
        color: #4caf50;
      }
      
      /* Footer Bottom */
      .footer-bottom {
        text-align: center;
        border-top: 1px solid #4caf50;
        margin-top: 30px;
        padding-top: 10px;
        font-size: 14px;
      }
      
    
    
    
    
      body {
          
          color: white;
      }
    
      .course-card {
          background-color: #1e1e1e;
          border: none;
          border-radius: 10px;
          color:white;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
    
      .course-card:hover {
          transform: scale(1.05);
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.5);
      }
    
      .course-card h5 {
          color: white;
      }
    
      .btn-primary {
          background-color: #f1c40f;
          border: none;
          color: #000;
      }
    
      .btn-primary:hover {
          background-color: #d4ac0d;
          color: #000;
      } 
      

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      
      body, html {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        height: 100%;
        background-color: #000;
      }
      
      .features-section {
        background: url('background.jpg') no-repeat center center/cover;
        min-height: 100vh;
        position: relative;
        color: #fff;
      }
      
      .overlay {
        background-color: rgba(0, 0, 0, 0.7);
        padding: 60px 20px;
        text-align: center;
      }
      
      .overlay h1 {
        font-size: 42px;
        margin-bottom: 20px;
        color: #f8b400;
      }
      
      .subheading {
        font-size: 16px;
        margin-bottom: 40px;
        color: #ccc;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .features-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
      }
      
      .feature-box {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 25px;
        max-width: 300px;
        transition: 0.3s ease;
        box-shadow: 0 0 10px rgba(0,0,0,0.4);
      }
      
      .feature-box:hover {
        transform: translateY(-10px);
        background-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
      }
      
      .feature-box img {
        width: 64px;
        margin-bottom: 15px;
      }
      
      .feature-box h3 {
        font-size: 20px;
        color: #fff;
        margin-bottom: 10px;
      }
      
      .feature-box p {
        font-size: 15px;
        color: #ddd;
      }

      .back-1{
 background: url('Pic11.jpg') no-repeat center center;
  background-size: cover;
      }
      .back-2{
         background: url('Pic5.jpg') no-repeat center center;
  background-size: cover;
      }
      .back-3{
         background: url('Pic5.jpg') no-repeat center center;
  background-size: cover;
      }
      .back-5{
         background: url('pic6') no-repeat center center;
  background-size: cover;
      }


.support-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
 background: url('Pic4.jpg') no-repeat center center;
  background-size: cover;
}

.sty{
  font-style:oblique;
}

.support-box {
  background: rgb(68, 67, 67);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(113, 110, 110, 0.1);
  text-align: center;
}

.support-box h2 {
  margin-bottom: 10px;
  font-size: 28px;
  color: #dedbdb;
}

.support-box p {
  font-size: 16px;
  color: #f0eded;
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #25D366;
  color: rgb(244, 237, 237);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}
      

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: white;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.contact-heading {
  font-size: 2em;
  color: cyan;
  margin-top: 30px;
  font-family: 'Brush Script MT', cursive;
}

.whatsapp-button {
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  margin: 15px auto;
  font-weight: bold;
  width: 60%;
}

.whatsapp-button img {
  vertical-align: middle;
  width: 20px;
  margin-right: 8px;
}

.notice, .galactic-notice {
  font-size: 0.9em;
  color: #aaa;
  margin: 20px auto;
  max-width: 80%;
}

.social-icons {
  margin: 20px 0;
}

.social-icons img {
  width: 40px;
  margin: 0 10px;
  vertical-align: middle;
  border-radius: 50%;
}

.galactic-notice {
  background-color: #222;
  border-radius: 8px;
  padding: 15px;
  margin: 20px auto;
  color: white;
  max-width: 90%;
}

.galactic-notice span {
  color: red;
  font-weight: bold;
}

footer {
  margin-bottom: 20px;
  font-size: 0.9em;
  color: #999;
}

footer strong {
  color: #FFD700;
}

.info-box {
  background-color: rgba(0, 0, 0, 0.6); /* translucent black */
  color: #fff;                          /* white text for contrast */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}




/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.transparent-box2 {
    background-color: rgba(0, 0, 0, 0.6); /* Transparent black */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.badge2 {
    background-color: #f1c037;
    color: black;
    padding: 8px 12px;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 15px;
    display: inline-block;
}

.title2 {
    font-size: 24px;
    margin-bottom: 15px;
   font-weight: 700;
    color: rgb(248, 248, 6);
}

.description2 {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn2 {
    background-color: #f5df1d;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn2:hover {
    background-color: #fbc503;
}


.top-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.btn3 {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.3s;
}

.btn3:hover {
    background-color:yellow;
}