* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  

 /* Header Section */
 header {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#002038 ;
    position: sticky; /* Makes the header sticky */
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #007BFF;
  }
  header .apply-btn {
    padding: 10px 9px;
    font-size: 25px;
    background-color: #FF5204;
    color: white;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 89px;
  }
  header .apply-btn:hover {
    /* background-color: #0056b3; */
  }
  .logo img{
    width: 200px;
    padding: 22px;
    padding-bottom: 0;
    margin-left: 25px;
  }




 /*for chatbot*/

   
.send-box button{
    align-items: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    background: none;
    text-decoration: none;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 15px;
}
.send-box {
    
    padding: 5px;
    background: #FD274A;
    border-radius: 16px;
    width: 89%;
    margin: auto;
}

.chat-icon img{
    width:42px;
        margin-top: 9px;
}





    .chat-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #FF5204;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      z-index: 1000;
    }

    .chat-icon:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .chat-popup {
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 329px;
      height: 479px;
      display: none;
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      z-index: 1000;
    }

    .chat-header {
      background-color: #0E2275;
      color: white;
      padding: 15px;
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      position: relative;
    }

    .chat-header .close-btn {
      position: absolute;
      right: 15px;
      top: 15px;
      cursor: pointer;
      font-size: 20px;
      transition: color 0.2s ease;
    }

    .chat-header .close-btn:hover {
      color: black;
    }

    .chat-header .chat-icon-top {
      position: absolute;
      left: 15px;
      top: 10px;
      width: 44px;
      /*height: 35px;*/
    }

    .chat-body {
      height: 330px;
      overflow-y: auto;
      padding: 15px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      background-color: #f9f9f9;
      border-top: 2px solid #f0f0f0;
    }

    .chat-message {
      padding: 12px 15px;
      border-radius: 20px;
      max-width: 90%;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.4;
      word-wrap: break-word;
    }

    .bot-message {
      background-color: #063C84;
      align-self: flex-start;
      color: white;
    }

    .user-message {
      background-color: #454545;
      color: white;
      align-self: flex-end;
    }

    .chat-footer {
      padding: 15px;
      display: flex;
      gap: 10px;
      background-color: white;
      border-top: 2px solid #f0f0f0;
    }

    .chat-footer input {
      flex: 1;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 14px;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .chat-footer input:focus {
      border-color: #D4202D;
    }

    .chat-footer button {
      padding: 10px 16px;
      background-color: #0E2275;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .chat-footer button:hover {
      background-color: #0E2275;
      transform: scale(1.05);
    }

    .success-message {
      text-align: center;
      font-size: 16px;
      color: #28a745;
      margin-top: 15px;
      font-weight: 700;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    /*::-webkit-scrollbar-thumb {*/
    /*  background: #D4202D;*/
    /*  border-radius: 4px;*/
    /*}*/

    /*::-webkit-scrollbar-thumb:hover {*/
    /*  background: #a51824;*/
    /*}*/


    /* Mobile responsiveness */
    @media (max-width: 600px) {
        
        .chat-icon img{
    width:30px;
}

            .chatbot-container {
                width: 100%;
                bottom: 10px;
                right: 10px;
            }

            .chatbot-header {
                font-size: 14px;
            }

            .chatbox {
                height: 300px;
            }

            .message {
                max-width: 90%;
            }

            .input-container input {
                font-size: 14px;
            }

            .input-container button {
                font-size: 14px;
                padding: 7px 12px;
            }
          
        }

        @media (max-width: 400px) {
            .chatbot-header {
                font-size: 12px;
            }

            .message {
                max-width: 95%;
            }
        }
        
       /* Mobile responsiveness */
@media (max-width: 600px) {
  .chat-popup {
          width: 68%;
        bottom: 70px;
        right: 18px;
        height: 411px;
  }

  .chat-header {
    font-size: 16px;
    padding: 11px;
  }

  .chat-body {
    padding: 10px;
    gap: 10px;
    height: 270px;
    font-size: 14px;
  }

  .chat-footer {
    padding: 10px;
    display: flex;
    gap: 5px;
    justify-content: space-between; /* Added this to ensure button and input stay on one line */
  }

  .chat-footer input {
    flex: 1;
    font-size: 14px;
    padding: 8px;
  }

  .chat-footer button {
    font-size: 14px;
    padding: 8px 12px;
    background-color: #0E2275;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .chat-footer button:hover {
    background-color: #0E2275
;
    transform: scale(1.05);
  }

  .chat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .chat-header .close-btn {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .chat-popup {
    width: 74%;
    height: 368px;
   margin-bottom: -8px;

  }
    .chat-header li {
        margin-left: 69px !Important ;
    }
  .chat-header {
    font-size: 14px;
    padding: 11px;
  }

  .chat-body {
    height: 230px;
  }

  .chat-footer input {
    font-size: 13px;
    padding: 7px;
  }

  .chat-footer button {
    font-size: 13px;
    padding: 7px 10px;
  }

  .chat-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .chat-header .close-btn {
    font-size: 16px;
  }
}
 
        

  /* .mbanner{
    display: none;
  }
  .container {
    width: 100%;
 
    background-image: url('images/main_banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
  } */

  .form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  margin-top: 42px;
    margin-left: auto;
    margin-right: 110px;
    margin-bottom: 12px;
    border:2px solid #FF5204;
  }
  .form-container h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
  }
  .form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .form-container form input,
  .form-container form select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
  }
  .form-container form input::placeholder {
    color: #aaa;
  }
  .form-container form .checkbox-container {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .form-container form .checkbox-container input[type="checkbox"] {
    width: 15px;
    height: 15px;
  }
  .form-container form .checkbox-container label {
    font-size: 14px;
    color: #555;
  }
  .form-container form button {
    padding: 10px;
    font-size: 16px;
    background-color: #0E2275;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .form-container form button:hover {
    background-color: #0056b3;
  }

  /* General banner styles */
.banner {
  width: 100%;
  /* height: 400px; */
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Default (desktop) background image */
.banner {
  background-image: url('images/main_banner.webp'); /* Replace with your desktop image path */
}

/* Mobile-specific background image */
@media (max-width: 768px) {
    .chat-header li {
        margin-left: 75px !important;
    }
  .banner {
    background-image: url('images/Generated-Image-October-13-2025-4_45PM.webp'); /* Replace with your mobile image path */
   height: 23vh;
    margin-bottom: 500px;
    background-size: cover;
  }
  .logo img{
    margin-left: -26px;
  }
  header .apply-btn{
    margin-right: 0;
    font-size: 14px;
  }
  
}

/* Banner content styles */
.banner-content {
  text-align: center;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.banner-content h1 {
  font-size: 36px; /* Adjust for desktop */
  margin: 0;
}

.banner-content p {
  font-size: 18px; /* Adjust for desktop */
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 28px; /* Smaller font for mobile */
  }

  .banner-content p {
    font-size: 16px; /* Smaller font for mobile */
  }
}



  
  @media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 1px 18px !Important;
      }
    .container {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    .form-container {
      margin-top: 760px;
      margin-right: auto;
      width: 85%;
    }
    .popup-content{
      margin-top: 1px !important;
    }
    .mbanner{
        display: block !important;
        margin-top: -64px;
    }
    .black-strip{
        margin-top: 79px;
    }
    
 
   

  }
  .black-strip {
    width: 100%; /* Black strip spans full width */
    background-color: black;
    padding: 20px 0;
  }
  
  .content {
    width: 80%; /* Content inside strip takes 80% width */
    margin: 0 auto; /* Center the content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: white;
  }
  
  .offer-text {
    font-size: 32px;
    color: #FE631E;
    font-weight: bold;
  }
  
  .countdown-text {
    font-size: 18px;
    color: white;
    margin-left: 111px;
  }
  
  .countdown {
    display: flex;
    gap: 20px;
  }
  
  .countdown-box {
    text-align: center;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    color: black;
    width: 80px;
  }
  
  .countdown-box span {
    font-size: 24px;
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .countdown {
      margin-top: 20px;
      /* flex-direction: column; */
      gap: 5px;
      margin-left: -20px;
    }
    .countdown-box {
      margin-bottom: 10px;
    }
    .offer-text {
        font-size:24px;
    }
    .countdown-text{
        margin-left:0 !Important;
    }
    .mobileform{
        display:block !important;
        margin-top:7px;
    }

  }
  
  
    .mobileform{
        display:none;
    }
  /* University Stats Section */
  .wq-counter-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    /* background-color: #FF5204; */
    background-image: url("images/stats.webp");
    padding: 20px 0;
    border-radius: 23px;
    overflow-x: auto;
    white-space: nowrap;
    background-size: cover;
    /* height: 40vh; */
  }
  
  .wq-counter-item {
    text-align: center;
    padding: 0 20px;
    color: white;
  }
  
  .wq-counter-number {
    font-size: 47px;
    font-weight: bold;
    line-height: 1.2;
  }
  
  .wq-counter-text {
    font-size: 14px;
    margin-top: 5px;
  }
  
  .wq-counter-line {
    width: 2px;
    height: 123px;
    background-color: white;
    margin: 0 10px;
  }
  
  @media (max-width: 768px) {
    .wq-counter-strip {
      flex-wrap: wrap;
      justify-content: space-around;
    }
    .wq-counter-strip{
      display: none;
    }
    .stripcount{
      display: none;
    }
  
    .wq-counter-line {
      display: none;
    }
  }
   












  /* Ranking & Recognition Section */
#ranking-recognition {
  width: 90%;
  margin: 60px auto;
  text-align: center;
}

#ranking-recognition .section-heading {
  font-size: 38px;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 40px;
}

#ranking-recognition .section-heading span {
  font-weight: bold;
}

.ranking-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 132px;
}

.ranking-box {
    background-color: #FFF9F7;
    padding: 41px 29px 61px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 22%;
    min-width: 220px;
    position: relative;
}

.ranking-box .circle-image {
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  border: 3px solid #FE631E;
  position: absolute;
  top: -77px; /* Position the circle outside the box */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: transform 0.3s ease;

 
}

.ranking-box .circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-box .ranking-content {
  font-size: 14px;
  color: #333;
  margin-top: 40px;
}
.ranking-box {
    background-color: #FFF9F7;
    padding: 40px 20px 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1 1 22%;  /* Flexbox to fit 4 items per row by default */
    min-width: 220px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ranking-box:hover {
    transform: translateY(-10px);  /* Moves the box up slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);  /* Adds a shadow */
  }
  

  
  .ranking-box:hover .circle-image {
    transform: translateX(-50%) scale(1.1);  /* Slightly enlarges the circle on hover */
  }

@media (max-width: 768px) {
    .ranking-boxes {
      flex-direction: row;
      justify-content: space-between;
      gap: 75px;
    }
    .ranking-box {
      width: 48%;  /* Two boxes per row */
      margin-bottom: 20px;  /* Space between rows */
    }
    #ranking-recognition .section-heading {
      font-size: 25px;
     
    }
    #ranking-recognition{
      margin-bottom: 0;
    }

  }
  
  @media (max-width: 480px) {
    .ranking-box {
      width: 100%;  /* One box per row on very small screens */
      /* margin-top: 55px; */
    }
  }
  
  /* Key Features Section */
#key-features {
    width: 90%;
    margin: 60px auto;
    text-align: center;
  }
  
  #key-features .section-heading {
    font-size: 38px;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 40px;
  }
  
  #key-features .section-heading span {
    font-weight: bold;
  }
  
  .features-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .feature-box {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    flex: 1 1 30%;
    min-width: 280px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
  }
  
  .feature-box:hover {
    transform: translateY(-10px);  
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);  
  }
  
  /* Vertical Line */
  .vertical-line {
    width: 1px;
    height: 60px;
    background-color: #FE631E;
    margin-left: 0px;
    margin-right: 16px;
    /* transition: height 0.3s ease;  */
  }
  

  
  .icon-container {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    /* object-fit: contain; */
  }
  
  .feature-content {
    display: flex;
    flex-direction: column;
  }
  
  .feature-heading {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .feature-content p {
    font-size: 14px;
    color: #333;
    text-align: left;
  }
  
  @media (max-width: 768px) {
    .features-container {
      flex-direction: row;
      justify-content: space-between;
      gap: 10px;
    }
  
    .feature-box {
      flex: 1 1 48%;  /* Two boxes per row on smaller screens */
      margin-bottom: 20px;
    }
    #key-features .section-heading{
      font-size: 25px;
    }
    #key-features {
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .feature-box {
      flex: 1 1 100%;  /* One box per row on very small screens */
    }
  }
  /* LPU Online Degree Section */
#lpu-online-degree-section {
    background-color: #FF5204;
    padding: 40px 0;
    color: white;
    
  }
  #lpu-online-sample-degree{
    width: 90%;
    border-radius: 5px;
  }
  
  #lpu-degree-container {
    width: 90%;
    margin: 0 auto;
  }
  
  .lpu-heading {
    font-size: 38px;
    font-style: italic;
    font-weight: normal;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .lpu-heading span {
    font-weight: bold;
  }
  
  .lpu-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .lpu-left-content {
    flex: 1 1 48%;
  }
  
  .lpu-left-heading {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
  }
  
  .lpu-left-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
  }
  
  .lpu-right-content {
    flex: 1 1 48%;
    text-align: center;
  }
  
  .lpu-right-image {
    width: 70%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .lpu-content-wrapper {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .lpu-left-content, .lpu-right-content {
      flex: 1 1 100%;
    }
  
    .lpu-left-heading {
      font-size: 28px;
    }
  
    .lpu-left-text {
      font-size: 16px;
    }
    .lpu-heading{
      font-size: 25px;
    }
  }
  
  /* Admission Process Section */
#admission-process-section {
    padding: 40px 0;
    background-color: #122B58;
    color: white;
    width: 100%;
  }
  
  .admission-heading {
    font-size: 38px;
    font-style: italic;
    font-weight: normal;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 50px;
  }
  
  .admission-heading span {
    font-weight: bold;
  }
  
  .admission-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .admission-box {
    flex: 1 1 23%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .admission-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .admission-content {
      flex-direction: column;
      align-items: center;
    }
  
    .admission-box {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
    .admission-heading{
      font-size: 25px;
      margin-top: 35px;
    }
    #student-alumni-section{
      padding-top: 0  !important;
    }
  }
  /* Our Student / Alumni Section */
#student-alumni-section {
    padding: 40px 0;
    /* background-color: #f8f8f8; */
    text-align: center;
    /* width: 80%; */
  }
  
  .student-alumni-heading {
    font-size: 38px;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 20px;
    margin-top: 40px;
  }

  
  .student-alumni-heading span {
    font-weight: bold;
  }
  
  .student-alumni-image {
    margin-top: 20px;
  }
  
  .alumni-image {
    width: 80%;
    height: auto;
    object-fit: cover;
    /* max-width: 800px;  */
    margin: 0 auto;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .student-alumni-heading {
      font-size: 25px;
    }
  
    .alumni-image {
      width: 90%;
    }
  }
  

  /* General Styles */
#testimonial-slider {
    /* background-color: #f8f8f8; */
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
  }
  
  .testimonial-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 20px; */
    max-width: 100%; /* Adjusted to 80% */
    margin: auto;
    position: relative;
    display:contents;
  }
  
  .testimonial-wrapper {
    display: flex;
    /*gap: 30px;*/
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .testimonial {
    flex: 0 0 100%;
    text-align: center;
  }
  
  .testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
  }
  
  .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .batch {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
  }
  
  .stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .quote {
    font-size: 16px;
    font-style: italic;
    color: #333;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
    position: relative;
  }
  
  .quote:before,
  .quote:after {
    content: '“';
    font-size: 120px;
    color: #ccc;
    position: absolute;
  }
  
  .quote:before {
    top: -62px;
    left: -47px;
  }
  
  .quote:after {
    content: '”';
    bottom: -103px;
    right: -27px;
    
  }
  
  /* Arrows */
  .arrow {
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .arrow:hover {
    color: #FF5204;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .testimonial-wrapper {
      /*gap: 15px;*/
    }
    .quote:before, .quote:after{
        display:none;
    }
    .quote{
        width:88%;
        text-align:justify;
    }
  
    .testimonial-image {
      width: 100px;
      height: 100px;
    }
    #testimonial-slider{
        /*display: none;*/
        width:100%;
    }
  }
  .faq-section {
    display: flex;
    justify-content: center;
    /* padding: 40px 0; */
    background-color: #f9f9f9;
    width: 90%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  .faq-container {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
  }
  
  .faq-container h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .faq-container h2 .italic {
    font-style: italic;
    font-weight: normal;
  }
  
  .accordion {
    /* border-top: 1px solid #ccc; */
    padding: 10px;
  }
  
  .accordion-item {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
  }
  
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .accordion-header span {
    font-size: 18px;
  }
  
  .icon-circle {
    width: 30px;
    height: 30px;
    border: 2px solid #7F56D9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .icon {
    font-size: 18px;
    font-weight: bold;
    color: #7F56D9;
    transition: transform 0.3s ease;
  }
  
  .accordion-content {
    display: none;
    padding: 20px 0;
    font-size: 16px;
    color: #555;
  }
  .apply-now-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .apply-now-button {
    font-size: 30px;
    color: #fff;
    background-color: #FF5204;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .apply-now-button:hover {
    background-color: #e64804;
    transform: scale(1.05);
  }
  
  .apply-now-button:active {
    transform: scale(0.98);
  }
  .footer {
    background-color: #0E2275;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  .footer p {
    margin: 0;
  }
  
  
  
  /* Style for the popup */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent black background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  /* Style for the popup content */
  .popup-content {
    background-color: white;
    /* padding: 20px; */
    border-radius: 8px;
    /* width: 300px; */
    text-align: center;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); */
    position: relative; /* To position the close button */
    margin-left: auto;
    margin-right: auto;
    border:2px solid #FF5204 ;
  }
  
  /* Style for the close button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: red;
  }
  

  
  button {
    background-color: #FF5204;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  button:hover {
    background-color: #FF3D00;
  }
  
  /* Style for the button to open the popup */
  .open-popup {
    padding: 10px 20px;
    background-color: #FF5204;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
  }
  
  .open-popup:hover {
    background-color: #FF3D00;
  }

  .wq-slider-container {
    width: 90%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .wq-slider-wrapper {
    overflow: hidden;
  }
  
  .wq-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
  }
  
  .wq-card {
    flex: 0 0 25%; /* Show 3 cards at a time */
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .wq-card img {
    width: 100%;
    height: auto;
  }
  
  .wq-apply-strip {
    background: #0E2275;
    text-align: center;
    margin-top: -4px;
    cursor:pointer;
  }
  
  .wq-apply-btn {
    background: #0E2275;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
  }
  .gapping{
    display: flex;
     gap: 50px;
      margin-top: 0px;
  }
  
  .wq-card-content {
    padding: 15px;
  }
  
  .wq-card-heading {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
  }
  
  .wq-batch-info {
    font-size: 14px;
    margin: 0 0 10px;
  }
  
  .wq-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -9px;
  }
  
  .wq-calendar-icon {
    background: #ddd;
    padding: 5px;
    border-radius: 50%;
  }
  
  .wq-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    z-index: 10;
  }
  
  .wq-arrow-left {
    left: 10px;
  }
  
  .wq-arrow-right {
    right: 10px;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .wq-card {
      flex: 0 0 45%; /* Show 2 cards on smaller screens */
    }
    .popup-content {
        width:90%;
}
  }
  
  @media (max-width: 480px) {
    .wq-card {
      flex: 0 0 90%; /* Show 1 card on very small screens */
    }
  }
/* Responsive design for mobile */
@media (max-width: 768px) {
  .wq-card {
    flex: 0 0 100%; /* Show 1 card on smaller screens */
  }
}
  
  
  