html, body {
  margin: 0 !important;
  padding: 0 !important;
}

/* ====================navbar start================= */
.navbar {
  background: linear-gradient(90deg, #1a1a2e, #16213e, #0f3460); 
  padding: 15px 0;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  box-shadow: 0 5px 20px rgb(0, 155, 255);
}

.navbar-brand img {
  transition: transform 0.6s ease, filter 0.6s ease;
}
.navbar-brand img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgb(0, 183, 255));
}

.nav-link {
  position: relative;
  color: #e0e0e0 !important;
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: #00b7ff !important; 
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #9bbea3;
  transition: width 0.3s ease;
  border-radius: 10px;
}
.nav-link:hover::after {
  width: 100%;
}

.right-button .btn {
  transition: all 0.4s ease;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 22px;
  color: #fff; 
  background: linear-gradient(145deg, #009bff 90%, #00b7ff 10%);
  border: none;
  box-shadow: 0 0 12px rgb(0, 155, 255);
}

.right-button .btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(145deg, #009bff 85%, #00b7ff 15%);
  box-shadow: 0 0 25px rgb(0, 183, 255);
  color: #fff;
}

.right-button .btn.start-btn {
  transition: all 0.4s ease;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 22px;
  color: #fff; 
  background: linear-gradient(145deg, #009bff 90%, #00b7ff 10%); 
  border: none;
  box-shadow: 0 0 12px rgb(0, 155, 255);
}

.right-button .btn.start-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(145deg, #009bff 85%, #00b7ff 15%); 
  box-shadow: 0 0 25px rgb(0, 183, 255);
  color: #fff;
}

.right-button .btn.login-btn {
  transition: all 0.4s ease;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 22px;
  color: #009bff; 
  background: #fff;
  border: 2px solid #ffffff; 
}

.right-button .btn.login-btn:hover {
  background: #009bff; 
  color: #fff; 
  box-shadow: 0 0 15px rgb(0, 155, 255);
}

/* nav bar responsive  */
.navbar-toggler {
  border: none;
  background: transparent !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: linear-gradient(90deg, #1a1a2e, #16213e, #0f3460);
    padding: 15px;
    border-radius: 10px;
  }
  .navbar-nav .nav-item {
    margin: 8px 0;
  }
  .right-button a {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media (max-width: 575px) {
  .navbar-brand img {
    width: 150px;
    height: 50px;
  }
  .right-button .btn {
    padding: 6px 12px;
    font-size: 14px;
  }
  .mediem .join-btn-adv{
    border-radius: 20px;
  }
  .mediem{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
}
.navbar-toggler-icon {
  filter: invert(1);
}
.mediem .hello{
  margin-left: 12px;
}
        /* ====================navbar end================= */

        /* ====================banner start================= */

.blur-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.join-btn {
  transition: all 0.4s ease;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(145deg, #009bff 90%, #00b7ff 10%);
  border: none;
  box-shadow: 0 0 15px rgb(0, 155, 255);
}
.join-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(145deg, #009bff 85%, #00b7ff 15%);
  box-shadow: 0 0 28px rgb(0, 183, 255);
  color: #fff;
}

.banner-img {
  max-width: 90%;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.join-btn-adv {
  position: relative;
  display: inline-block;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #009bff, #00b7ff);
  border: none;
  border-radius: 30px;
  letter-spacing: 1px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 15px rgb(0, 155, 255);
  transition: all 0.4s ease;
  animation: pulseGlow 3s infinite ease-in-out;
  z-index: 1;
}

.join-btn-adv:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 35px rgb(0, 183, 255);
}

.join-btn-adv::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: all 0.6s ease;
  z-index: 2;
}
.join-btn-adv:hover::before {
  left: 100%;
}

.join-btn-adv::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 250%; height: 250%;
  background: radial-gradient(circle, rgb(0, 155, 255) 10%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  border-radius: 50%;
  transition: all 0.6s ease;
  z-index: 0;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 12px rgb(0, 155, 255); }
  50% { box-shadow: 0 0 25px rgb(0, 183, 255); }
  100% { box-shadow: 0 0 12px rgb(0, 155, 255); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}
.delay-2 { animation-delay: 1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.col-md-6.d-flex .blur-box {
    color: white !important;
    min-height: 400px; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.blur-box h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
    color: #ffffff;
}

.blur-box p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.features li {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #d0d0d0;
}

.animate-box {
  opacity: 0;
  transform: translateY(-50px);
  animation: slideFromTop 1s ease forwards;
}

.animate-box.delay-1 { animation-delay: 0.3s; }
.animate-box.delay-2 { animation-delay: 0.6s; }
.animate-box.delay-3 { animation-delay: 0.9s; }

@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.blur-box {
  transition: all 0.6s ease;
}
.blur-box:hover {
  box-shadow: 0 12px 35px rgb(0, 183, 255);
  transform: translateY(-3px);
}


/* banner img  */
.banner-wrapper-hover {
  position: relative;
  overflow: hidden;
  perspective: 800px;
  max-width: 500px;
  margin: 0 auto;
}

.banner-img-hover {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
}

.banner-wrapper-hover:hover .banner-img-hover {
  transform: scale(1.02) rotateX(1deg) rotateY(2deg);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  cursor: pointer;
}

  /* banneer responsive section  */

  @media (max-width: 991px) {

  .col-md-6.d-flex .blur-box {
    min-height: 300px; 
    padding: 20px;
  }

  .blur-box h2 {
    font-size: 1.8rem;
  }

  .blur-box p, .features li {
    font-size: 0.9rem;
  }

  .banner-wrapper-hover {
    max-width: 400px;
  }

  .banner-img-hover {
    width: 100%;
  }

  .join-btn, .join-btn-adv {
    font-size: 16px;
    padding: 10px 24px;
  }
}

@media (max-width: 575px) {
  .col-md-6.d-flex .blur-box {
    min-height: auto; 
    padding: 15px;
  }

  .blur-box h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .blur-box p {
    font-size: 0.85rem;
  }

  .features li {
    font-size: 0.8rem;
  }

  .banner-wrapper-hover {
    max-width: 300px;
    margin: 20px auto;
  }

  .banner-img-hover {
    width: 100%;
  }

  .join-btn, .join-btn-adv {
    font-size: 14px;
    padding: 8px 20px;
  }

  .animate-box {
    transform: translateY(-30px);
  }
}

@media (max-width: 400px) {
  .blur-box h2 {
    font-size: 1.3rem;
  }

  .blur-box p {
    font-size: 0.8rem;
  }

  .features li {
    font-size: 0.75rem;
  }

  .join-btn, .join-btn-adv {
    font-size: 13px;
    padding: 6px 18px;
  }

  .banner-wrapper-hover {
    max-width: 250px;
  }
}
.admission-btn i {
  font-size: 21px;
  transition: transform 0.3s ease;
}

.admission-btn:hover i {
  transform: rotate(-10deg) scale(1.1);
}

@media (max-width: 575px) {
  .admission-btn {
    font-size: 14px !important;
    padding: 8px 18px !important;
    gap: 6px !important; 
  }
  .admission-btn i {
    font-size: 18px !important;
  }
  .col-6.ms-3 {
    margin-left: 0 !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
  }
  .banner-left{
    margin-top: 20px;
  }
}
       /* =================== banner end================= */

       /* =================== alanlytics start================= */
.section-heading {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00d2ff, #3a7bd5); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  animation: fadeInDown 1s ease-in-out;
  letter-spacing: 2px;
}

.section-heading span {
  background: linear-gradient(90deg, #009bff, #00b7ff); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.heading-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00d2ff, #3a7bd5);
  border-radius: 5px;
  margin-top: 10px;
  position: relative;
  animation: underlineExpand 1.2s ease-in-out;
}

@keyframes underlineExpand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100px;
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.course-section {
  background: rgba(0, 0, 0, 0.527); 
  border-radius: 15px; 
}

.sub-heading-adv {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  animation: fadeInLeft 1s ease-in-out;
}

.sub-heading-adv span {
  background: linear-gradient(90deg, #00d2ff, #3a7bd5); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  position: relative;
}

.sub-heading-adv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #00d2ff, #3a7bd5);
  border-radius: 3px;
  animation: underlineGrow 1.2s ease forwards 0.6s;
}

@keyframes underlineGrow {
  from { width: 0; opacity: 0; }
  to { width: 100%; opacity: 1; }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.feature-col-adv {
  animation: fadeInRight 1.2s ease-in-out;
}

.adv-box {
  background: linear-gradient(135deg, #ffffff, #f7f9fc);
  border-left: 6px solid #007bff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.adv-box:nth-child(1) { animation-delay: 0.2s; }
.adv-box:nth-child(2) { animation-delay: 0.4s; }
.adv-box:nth-child(3) { animation-delay: 0.6s; }
.adv-box:nth-child(4) { animation-delay: 0.8s; }

.adv-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 123, 255, 0.3);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */

@media (max-width: 991px) {
  .course-section .row.align-items-stretch {
    flex-direction: column;
  }
  .course-section .col-md-8,
  .course-section .col-md-4 {
    width: 100%;
    margin-top: 20px !important;
  }
  .feature-col-adv {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  .feature-col-adv .adv-box {
    flex: 1 1 48%;
  }
}
@media (max-width: 575px) {
  .section-heading {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  .sub-heading-adv {
    font-size: 1.4rem;
  }
  .sub-heading-adv::after {
    bottom: -6px;
    height: 2px;
  }
  .feature-col-adv .adv-box {
    flex: 1 1 100%;
  }
  .course-section .ratio.ratio-16x9 {
    height: 220px; 
  }
  .course-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 400px) {
  .section-heading {
    font-size: 1.6rem;
  }
  .sub-heading-adv {
    font-size: 1.2rem;
  }
  .feature-col-adv {
    margin-top: 15px !important;
  }
  .course-section .ratio.ratio-16x9 {
    height: 180px;
  }
}
       /* =================== alanlytics end================= */

       /* =================== services start================= */
.services-section {
  background: radial-gradient(circle at top left, #1e293b, #0f172a);
  overflow: hidden;
  position: relative;
}

.section-heading {
  font-size: 2.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.text-gradient {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading-underline {
  width: 90px;
  height: 5px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border-radius: 5px;
  margin-top: 12px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 114, 255, 0.2);
  backdrop-filter: blur(14px);
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(0, 114, 255, 0.2), transparent 30%);
  animation: rotateGlow 6s linear infinite;
}
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.glass-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.08);
  box-shadow: 0 20px 40px rgba(0, 114, 255, 0.4);
  border-color: rgba(0, 114, 255, 0.6);
}

.gradient-icon {
  font-size: 3rem;
  animation: pulse 2.5s infinite, float 3s ease-in-out infinite;
}
.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.9; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}


.service-title {
  font-family: 'Orbitron', sans-serif; 
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00c6ff, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
  background-size: 200% auto;
}

.text-light.small {
  font-family: 'Poppins', sans-serif; 
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db; 
  animation: fadeInUp 1.5s ease;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* our services responsive  */

@media (max-width: 991px) {
  .services-section .row.g-4 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .col-md-6.col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .gradient-icon {
    font-size: 2.5rem;
  }
  .service-title {
    font-size: 1.6rem;
  }
  .text-light.small {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .col-md-6.col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .gradient-icon {
    font-size: 2rem;
  }
  .service-title {
    font-size: 1.4rem;
  }
  .text-light.small {
    font-size: 0.85rem;
  }
  .glass-card {
    transform: none !important;
    box-shadow: 0 8px 20px rgba(0,114,255,0.3);
    border: 1px solid rgba(0,114,255,0.15);
  }
}

@media (max-width: 400px) {
  .service-title {
    font-size: 1.2rem;
  }
  .text-light.small {
    font-size: 0.8rem;
  }
  .gradient-icon {
    font-size: 1.8rem;
  }
}
       /* =================== servise end================= */

       /* =================== modal start================= */
.modules-section {
  background: #0b1220; 
}

.accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 10px !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #007bff, #00ffcc);
  color: #fff !important;
  box-shadow: 0 5px 15px rgb(0, 183, 255);
}

.accordion-body {
  background: #111a2c;
  border-radius: 10px;
  padding: 15px 20px;
}

.accordion-body li {
  margin: 6px 0;
  font-size: 0.95rem;
  transition: transform 0.2s;
}

.accordion-body li:hover {
  transform: translateX(5px);
  color: #00ffcc;
}

/* modal section responsive  */

@media (max-width: 991px) {
  .modules-section {
    padding: 50px 20px;
  }
  .modules-section .section-heading {
    font-size: 2.4rem;
  }
  .modules-section .accordion-button {
    font-size: 1rem;
  }
  .modules-section .accordion-body ul li {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .modules-section {
    padding: 40px 15px;
  }
  .modules-section .section-heading {
    font-size: 2rem;
  }
  .modules-section .accordion-button {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
  .modules-section .accordion-body ul li {
    font-size: 0.85rem;
  }
  .modules-section .accordion-item {
    border-radius: 10px;
  }
}
       /* =================== modal end================= */

       /* ===================conatct us start================= */
.contact-section {
  background: radial-gradient(circle at bottom right, #1e293b, #0f172a);
  position: relative;
}

.custom-input {
  background: rgba(255, 255, 255, 0.08);
  user-select: text !important; 
  border: 1px solid rgba(0, 114, 255, 0.3);
  color: #fff !important; 
  border-radius: 10px;
  pointer-events: auto !important;
}

.custom-input::placeholder {
  color: rgba(255,255,255,0.6); 
}

.custom-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #0072ff;
  box-shadow: 0 0 10px rgba(0,114,255,0.5);
  color: #fff !important; 
}


.btn-gradient {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,114,255,0.3);
}

.social-link {
  font-size: 1.5rem;
  margin-right: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  transform: scale(1.2);
}
.glass-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(0, 114, 255, 0.2), transparent 30%);
  animation: rotateGlow 6s linear infinite;
  pointer-events: none !important; 
}

.custom-input {
  background: rgba(255, 255, 255, 0.08);
  user-select: text !important;
  pointer-events: auto !important;
  border: 1px solid rgba(0, 114, 255, 0.3);
  color: #fff !important;
  border-radius: 10px;
}

.social-icon img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.social-icon img:hover {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 5px 10px rgb(0, 155, 255));
}
.social-icon img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgb(0, 183, 255));
}

.social-icon small {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.social-icon:hover small {
  color: #00b7ff;
}

.is-invalid {
    border-color: #dc3545 !important;
}
.error-message {
    font-size: 0.875em;
}

/* contact us responsive  */

@media (max-width: 991px) {
  .contact-section {
    padding: 50px 20px;
  }
  .contact-section .section-heading {
    font-size: 2.4rem;
  }
  .contact-section .custom-input {
    font-size: 0.95rem;
  }
  .contact-section .btn-gradient {
    font-size: 1rem;
    padding: 12px 0;
  }
  .contact-section .social-link {
    margin-right: 12px;
  }
}

@media (max-width: 575px) {
  .contact-section {
    padding: 40px 15px;
  }
  .contact-section .section-heading {
    font-size: 2rem;
  }
  .contact-section p.fs-5 {
    font-size: 0.9rem;
  }
  .contact-section .custom-input {
    font-size: 0.9rem;
    padding: 10px;
  }
  .contact-section .btn-gradient {
    font-size: 0.95rem;
    padding: 10px 0;
  }
  .contact-section .glass-card {
    padding: 20px;
  }
  .contact-section .social-link img {
    width: 35px;
    height: 35px;
  }
}
         /* =================== contact us end================= */

         /* =================== about us end================= */

.about-section {
  background: radial-gradient(circle at top left, #0f172a, #1e293b);
  position: relative;
}

.about-img {
  width: 100%;
  max-width: 400px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
  0%   { transform: translateY(0px) rotateZ(0deg); }
  25%  { transform: translateY(-10px) rotateZ(2deg); }
  50%  { transform: translateY(0px) rotateZ(0deg); }
  75%  { transform: translateY(10px) rotateZ(-2deg); }
  100% { transform: translateY(0px) rotateZ(0deg); }
}

.about-img:hover {
  transform: scale(1.1) rotateY(8deg) rotateX(4deg);
  box-shadow: 0 20px 40px rgba(0,114,255,0.3);
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 114, 255, 0.3);
  backdrop-filter: blur(10px);
  color: #fff;
}

.text-gradient {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  margin-top: 10px;
  border-radius: 2px;
}

.about-feature {
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.about-feature:hover {
  box-shadow: 0 10px 20px rgba(0,114,255,0.3);
}

.floating {
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

.advanced-img-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  perspective: 1000px; 
}

.layer {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.layer1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0,198,255,0.2), transparent);
  animation: floatLayer1 6s ease-in-out infinite;
}

.layer2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0,114,255,0.15), transparent);
  animation: floatLayer2 5s ease-in-out infinite;
}

.layer3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,198,255,0.1), transparent);
  animation: floatLayer3 7s ease-in-out infinite;
}

@keyframes floatLayer1 { 0%,100%{ transform: translate(-50%, -50%) rotate(0deg); } 50%{ transform: translate(-50%, -50%) rotate(15deg); } }
@keyframes floatLayer2 { 0%,100%{ transform: translate(-50%, -50%) rotate(0deg); } 50%{ transform: translate(-50%, -50%) rotate(-10deg); } }
@keyframes floatLayer3 { 0%,100%{ transform: translate(-50%, -50%) rotate(0deg); } 50%{ transform: translate(-50%, -50%) rotate(8deg); } }

.advanced-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.advanced-img-wrapper:hover .advanced-img {
  transform: scale(1.1) rotateY(12deg) rotateX(6deg);
  box-shadow: 0 25px 50px rgba(0,198,255,0.5);
}

.particle {
  position: absolute;
  font-size: 1.5rem;
  animation: floatParticle 4s ease-in-out infinite;
  z-index: 3;
}

.particle1 { top: 10%; left: 85%; animation-delay: 0s; }
.particle2 { bottom: 15%; right: 70%; animation-delay: 1s; }
.particle3 { top: 20%; left: 10%; animation-delay: 2s; }

@keyframes floatParticle {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.simple-img-wrapper {
  height: 100%; 
}

.simple-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; 
  border-radius: 15px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.simple-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,114,255,0.3);
}
.col-lg-6 .glass-card {
  font-family: 'Lato', sans-serif;
}
 
/* Responsive adjustments for About Us Section */

@media (max-width: 991px) {
  .about-section {
    padding: 50px 20px;
  }
  .about-section .section-heading {
    font-size: 2.4rem;
  }
  .about-section p.fs-5 {
    font-size: 0.95rem;
  }
  .about-section .glass-card {
    padding: 25px;
  }
  .about-feature {
    flex: 1 1 45%;
    padding: 15px;
  }
  .about-feature h6 {
    font-size: 0.9rem;
  }
  .simple-img, .advanced-img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 575px) {
  .about-section {
    padding: 40px 15px;
  }
  .about-section .section-heading {
    font-size: 2rem;
  }
  .about-section p.fs-5, .about-section p.fs-6 {
    font-size: 0.85rem;
  }
  .about-section .glass-card {
    padding: 20px;
  }
  .about-feature {
    flex: 1 1 100%;
    padding: 12px;
  }
  .about-feature h6 {
    font-size: 0.85rem;
  }
  .simple-img-wrapper, .advanced-img-wrapper {
    width: 100%;
    height: auto;
  }
  .simple-img, .advanced-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }
  .about-section .d-flex.flex-wrap.gap-3 {
    justify-content: center;
  }
}
         /* =================== about us end================= */

         /* =================== testomonail start================= */

.tick {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00b7ff;
  margin-right: 8px;
}

.red-tick {
  background: #ff0000 !important;
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #4e9eff, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}
.section-heading span {
  color: #fff;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.glass-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.modules-section .accordion-item {
  position: sticky;
  z-index: 10;
}
.modules-section .accordion-item:nth-child(1) { top: 100px; }
.modules-section .accordion-item:nth-child(2) { top: 180px; }
.modules-section .accordion-item:nth-child(3) { top: 260px; }
.modules-section .accordion-item:nth-child(4) { top: 340px; }

.accordion-button {
  transition: all 0.3s ease;
}
.accordion-button:hover {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  color: #fff;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 114, 255, 0.25);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-6px);
}
.text-gradient {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.video-wrapper video {
  cursor: pointer;
}
.video-wrapper {
  transition: transform 0.3s ease;
}
.video-wrapper:hover {
  transform: scale(1.03);
}
.testimonial-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.05);
  transition: all 0.4s ease-in-out;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}
.testimonial-card:hover {
  transform: perspective(1000px) rotateX(3deg) rotateY(3deg) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,114,255,0.5);
}

.glow-border {
  border: 2px solid rgba(0,114,255,0.3);
  animation: borderGlow 3s infinite alternate;
}
@keyframes borderGlow {
  from { box-shadow: 0 0 10px rgba(0,114,255,0.2); }
  to { box-shadow: 0 0 30px rgba(0,114,255,0.7); }
}

.floating-shape {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(0,114,255,0.15);
  border-radius: 50%;
  animation: floatAnim 10s infinite ease-in-out;
  z-index: 0;
}
.shape1 { top: 10%; left: 5%; }
.shape2 { bottom: 15%; right: 10%; animation-delay: 5s; }
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  background: #000;
  }
        
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  }
        
.glow-border {
  border: 2px solid transparent;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
  transition: all 0.3s ease;
  }
        
.glow-border:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 1);
  }
.section-title {
  text-align: center;
  margin-bottom: 30px;
  color: #0dcaf0;
  text-shadow: 0 0 10px rgba(13, 202, 240, 0.7);
  }
      /* =================testomonail end ===================*/

      /* =================footer start ===================*/

.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #1e40af;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 30px;
  position: relative;
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  margin-bottom: 20px;
}

.footer__logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__logo-text {
  color: #e2e8f0;
  -webkit-text-fill-color: #e2e8f0;
}

.footer__logo-accent {
  color: #00b7ff;
  -webkit-text-fill-color: #00b7ff;
}

.footer__tagline {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer__heading {
  color: #3b82f6;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__link {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
}

.footer__link:hover {
  color: #10b981;
  transform: translateX(5px);
}

.footer__link::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer__link:hover::before {
  opacity: 1;
}

.footer__contact {
  margin-bottom: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.5;
}

.footer__icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__disclaimer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border: 1px solid #475569;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.footer__disclaimer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.footer__disclaimer-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__disclaimer-text {
  color: #e2e8f0;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.footer__highlight {
  color: #10b981;
  font-weight: 600;
}

.footer__warning {
  color: #f59e0b;
  font-weight: 600;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #334155;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copyright {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer__brand-name {
  color: #10b981;
  font-weight: 600;
}

.footer__developer {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer__dev-name {
  color: #3b82f6;
  font-weight: 600;
}

.footer__legal {
  display: flex;
  gap: 25px;
}

.footer__legal-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: #10b981;
}

.footer__back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #00b7ff;  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.footer__back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer__back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgb(0, 155, 255);
}

.footer__back-to-top-icon {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer__container {
    padding: 40px 15px 20px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__logo {
    font-size: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer__legal {
    justify-content: center;
  }

  .footer__disclaimer {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer__disclaimer::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }

  .footer__back-to-top {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .footer__main {
    gap: 25px;
  }

  .footer__logo {
    font-size: 1.8rem;
  }

  .footer__heading {
    font-size: 1.1rem;
  }

  .footer__disclaimer {
    padding: 20px;
  }
}
      /* =================footer end ===================*/

      /* ===============pament section start===================*/

:root{
  --base:#0f3460;      
  --card:#0b1220;       
  --muted:#b6c4d7;
  --line:rgba(255,255,255,.08);
  --green:#00b7ff;
  --green-2:#009bff;
}
*{box-sizing:border-box}
body{margin:0;background:#0b1324;color:#eaf1ff;font-family:Poppins,system-ui}

.choice{padding:56px 16px;background:#0b1324}
.choice__wrap{max-width:1180px;margin:0 auto}
.choice__head{text-align:center;margin-bottom:22px}
.choice__head h2{margin:0;font-weight:800;font-size:clamp(26px,3.4vw,42px);letter-spacing:.5px}
.choice__bar{display:block;width:64px;height:4px;margin:10px auto 0;
  background:linear-gradient(90deg,var(--green),var(--green-2));border-radius:2px}

.choice__grid{display:grid;gap:22px}
@media(min-width:960px){.choice__grid{grid-template-columns:1fr 1fr}}

.choice__card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px; padding:24px;
  box-shadow:0 10px 26px rgba(0,0,0,.32);
}
.choice__card--primary{
  border:1px solid transparent;
  background:
    linear-gradient(#0b1220,#0b1220) padding-box,
    linear-gradient(90deg, rgb(0, 155, 255), rgb(0, 155, 255)) border-box;
  box-shadow:0 10px 26px rgba(0,255,60,.12);
}

.choice__card h3{margin:0 0 14px;font-size:20px;font-weight:700}
.price{display:flex;align-items:baseline;gap:12px;margin:4px 0 16px}
.price .old{font-size:34px;font-weight:800;color:#ff6262;text-decoration:line-through}
.price .now{font-size:34px;font-weight:900}
.price .now--green{color:var(--green)}
.price .unit{color:#cdd8ea;font-size:14px}
.asterisk{color:#7cf89e;margin-left:2px}
.divider{height:1px;background:var(--line);margin:12px 0 18px}

.list{list-style:none;margin:0 0 22px;padding:0;display:grid;gap:12px}
.list li{display:flex;gap:10px;align-items:center;color:#dfe7f6}
.tick{width:18px;height:18px;border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #b6ffd1 0 25%, transparent 26%) ,
              linear-gradient(180deg,var(--green),var(--green-2));
  box-shadow:0 0 0 2px rgba(0,0,0,.25) inset; flex:0 0 18px}

.btn{
  display:inline-block; padding:14px 18px;border-radius:999px;font-weight:700;
  border:1px solid rgba(255,255,255,.16); text-decoration:none; text-align:center;
  transition:.2s ease; color:#0e2517; background:linear-gradient(90deg,var(--green),var(--green-2))
}
.btn:hover{transform:translateY(-1px);filter:brightness(1.06)}
.btn--outline{background:transparent;color:#eaf1ff;border-color:rgba(255,255,255,.22)}
.btn--outline:hover{background:rgba(255,255,255,.06)}
.btn--green{width:100%;padding:16px;border:none}

.note{margin-top:10px;color:#a9bcd6;font-size:12px;opacity:.9}
.price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 4px 0 16px;
    flex-wrap: wrap; 
}

.unit {
    color: #cdd8ea;
    font-size: 14px;
    width: 100%; 
    margin-top: 8px;
    text-align: left;
}

@media (max-width: 768px) {
    .price {
        gap: 8px; 
    }
    
    .unit {
        font-size: 13px;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .price {
        flex-direction: column; 
        align-items: flex-start;
        gap: 4px;
    }
    
    .unit {
        font-size: 12px;
        margin-top: 4px;
    }
}
      /*===================== pament section end=================== */

      /*===================== modal start=================== */ 
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s ease-out;
  overflow: hidden;
  }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
    }

.modal {
    display: none;
    position: fixed;
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease-out;
    overflow: hidden;
}
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.modal__content {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    margin: 20px auto;
    padding: 0;
    width: 95%;
    max-width: 1200px;
    border-radius: 20px;
    height: calc(100vh - 40px);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #0f3460;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 10000;
}

nav, .navbar, header {
    z-index: 100 !important;
}

body.modal-open {
    overflow: hidden;
}
    .modal__content {
        background: linear-gradient(145deg, #1a1a2e, #16213e);
        margin: 20px auto;
        padding: 0;
        width: 95%;
        max-width: 1200px;
        border-radius: 20px;
        height: calc(100vh - 40px);
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 2px solid #0f3460;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .modal__content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #00b7ff, #009bff, #0f3460);
        z-index: 10;
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-60px) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .modal__header {
        background: linear-gradient(135deg, #0f3460, #16213e);
        color: white;
        padding: 25px 30px;
        border-radius: 18px 18px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 2px solid #00b7ff;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

    .modal__header::after {
    content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(0, 183, 255, 0.2) 20%,
        rgba(0, 155, 255, 0.4) 50%,
        rgba(0, 183, 255, 0.2) 80%,
        transparent 100%
      );
      transform: translateX(-100%);
      animation: shimmer 3s infinite linear;
    }

        @keyframes shimmer {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
      }
    
    .modal__header h1 {
        margin: 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .modal__close {
        font-size: 32px;
        font-weight: bold;
        cursor: pointer;
        color: white;
        transition: all 0.3s;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }
    .modal__body {
        padding: 30px;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        position: relative;
        overflow: hidden;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .two-column-layout {
        display: flex;
        gap: 30px;
        height: 100%;
        overflow: hidden;
    }

    .column-left, .column-right {
        flex: 1;
        overflow-y: auto;
        padding: 10px;
    }

    .column-left::-webkit-scrollbar,
    .column-right::-webkit-scrollbar {
        width: 6px;
    }

    .column-left::-webkit-scrollbar-track,
    .column-right::-webkit-scrollbar-track {
        background: #1a1a2e;
        border-radius: 4px;
    }

    .column-left::-webkit-scrollbar-thumb,
    .column-right::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #00b7ff, #009bff);
        border-radius: 4px;
        border: 1px solid #0f3460;
    }

    .column-left::-webkit-scrollbar-thumb:hover,
    .column-right::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #009bff, #00b7ff);
    }

    .modal__body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
    }

    .batch-info h2 {
        color: #00b7ff;
        margin-bottom: 8px;
        font-size: 1.4rem;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .batch-coming {
        color: #ff6b6b;
        font-size: 1.2rem;
        margin-bottom: 20px;
        font-weight: 600;
        background: rgba(255, 107, 107, 0.1);
        padding: 10px 15px;
        border-radius: 8px;
        border-left: 4px solid #ff6b6b;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
    }

    .process-info {
        background: linear-gradient(135deg, rgba(15, 52, 96, 0.7), rgba(22, 33, 62, 0.7));
        padding: 20px;
        border-radius: 12px;
        border-left: 4px solid #00b7ff;
        margin-bottom: 20px;
        border: 1px solid rgb(0, 155, 255);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
    }

 

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .process-info p {
        margin: 0;
        line-height: 1.6;
        color: #e0e0e0;
        position: relative;
        z-index: 1;
    }

    .payment-section h3 {
        color: #00b7ff;
        margin-bottom: 15px;
        font-size: 1.3rem;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .bank-details, .crypto-details {
        background: linear-gradient(135deg, rgba(15, 52, 96, 0.7), rgba(22, 33, 62, 0.7));
        padding: 18px;
        border-radius: 10px;
        margin-bottom: 15px;
        border-left: 4px solid #00b7ff;
        border: 1px solid rgb(0, 155, 255);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .bank-details:hover, .crypto-details:hover {
        transform: translateY(-5px);
    }

    .bank-details p, .crypto-details p {
        margin: 8px 0;
        font-family: 'Courier New', monospace;
        color: #e0e0e0;
    }

    .bank-details strong, .crypto-details strong {
        color: #00b7ff;
    }

    .terms {
        color: #a0a0a0;
        font-style: italic;
        text-align: center;
        margin-top: 15px;
        background: rgba(255, 255, 255, 0.05);
        padding: 12px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-info {
        background: linear-gradient(135deg, rgba(15, 52, 96, 0.7), rgba(22, 33, 62, 0.7));
        padding: 18px;
        border-radius: 10px;
        text-align: center;
        border: 1px solid rgb(0, 155, 255);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .whatsapp {
        color: #00b7ff;
        font-weight: bold;
        font-size: 1.1rem;
        background: rgb(0, 155, 255);
        padding: 8px 15px;
        border-radius: 20px;
        border: 2px solid #00b7ff;
        display: inline-block;
        margin-top: 8px;
    }

    .enrollment-form {
        margin-top: 0;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 25px;
        position: relative;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #00b7ff;
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        font-size: 15px;
        transition: all 0.3s;
        background: rgba(15, 52, 96, 0.5);
        color: #e0e0e0;
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #00b7ff;
        box-shadow: 0 0 0 3px rgb(0, 155, 255), inset 0 2px 5px rgba(0, 0, 0, 0.2);
        background: rgba(15, 52, 96, 0.7);
    }

    .form-group input::placeholder {
        color: #a0a0a0;
    }

    .phone-input {
        display: flex;
        gap: 10px;
    }

    .phone-input select {
        width: 120px;
        flex-shrink: 0;
        background: #0f3460;
        color: white;
        border: 2px solid #00b7ff;
    }

    .phone-input select option {
        background: #1a1a2e;
        color: #e0e0e0;
    }

    .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .checkbox-label {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: normal;
        cursor: pointer;
        padding: 10px 0;
        color: #e0e0e0;
        transition: color 0.3s;
    }

    .checkbox-label:hover {
        color: #00b7ff;
    }

    .checkbox-label input[type="checkbox"],
    .checkbox-label input[type="radio"] {
        display: none;
    }

    .checkmark {
        width: 22px;
        height: 22px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        position: relative;
        transition: all 0.3s;
        flex-shrink: 0;
        background: rgba(15, 52, 96, 0.5);
    }

    .checkbox-label input[type="checkbox"]:checked + .checkmark,
    .checkbox-label input[type="radio"]:checked + .checkmark {
        background: #00b7ff;
        border-color: #00b7ff;
        box-shadow: 0 0 10px rgb(0, 183, 255);
    }

    .checkbox-label input[type="checkbox"]:checked + .checkmark::after,
    .checkbox-label input[type="radio"]:checked + .checkmark::after {
        content: '✓';
        color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px;
        font-weight: bold;
    }

    .enrollment-option {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px;
        background: linear-gradient(135deg, rgba(15, 52, 96, 0.7), rgba(22, 33, 62, 0.7));
        border-radius: 10px;
        border: 2px solid rgb(0, 155, 255);
        font-weight: 500;
        color: #00b7ff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .radio-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #00b7ff;
        flex-shrink: 0;
        box-shadow: 0 0 10px rgb(0, 183, 255);
    }

    .file-upload {
        position: relative;
    }

    .file-upload input[type="file"] {
        display: none;
    }

    .file-label {
        display: flex;
        cursor: pointer;
        border: 2px dashed rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s;
    }

    .file-label:hover {
        border-color: #00b7ff;
        background: rgba(0, 255, 60, 0.05);
    }

    .file-text {
        flex: 1;
        padding: 14px 16px;
        background: rgba(15, 52, 96, 0.5);
        color: #a0a0a0;
    }

    .file-button {
        padding: 14px 20px;
        background: linear-gradient(135deg, #00b7ff, #009bff);
        color: white;
        font-weight: 600;
        transition: all 0.3s;
    }

    .file-button:hover {
        background: linear-gradient(135deg, #009bff, #00b7ff);
    }

    .btn--submit {
        width: 100%;
        padding: 18px;
        background: linear-gradient(135deg, #00b7ff, #009bff);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 17px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 10px;
        border: 2px solid rgb(0, 183, 255);
        box-shadow: 0 5px 15px rgb(0, 183, 255);
        position: relative;
        overflow: hidden;
    }

    .btn--submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
    }

    .btn--submit:hover::before {
        left: 100%;
    }

    .btn--submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgb(0, 183, 255);
    }

    .divider {
        border: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        margin: 25px 0;
        position: relative;
    }

    .divider::after {
        content: '';
        position: absolute;
        top: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: #00b7ff;
    }

    .alert {
        padding: 15px;
        margin: 15px 0;
        border-radius: 10px;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .alert-success {
        background: rgb(0, 155, 255);
        color: #00b7ff;
        border: 2px solid #00b7ff;
    }

    .alert-error {
        background: rgba(255, 107, 107, 0.1);
        color: #ff6b6b;
        border: 2px solid #ff6b6b;
    }

    .swal2-popup {
        border-radius: 15px !important;
        border: 2px solid #00b7ff !important;
        background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
        color: #e0e0e0 !important;
    }

    .swal2-title {
        color: #00b7ff !important;
        font-weight: 700 !important;
    }

    .swal2-confirm {
        background: linear-gradient(135deg, #00b7ff, #009bff) !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 12px 24px !important;
        font-weight: 600 !important;
    }

    .swal2-confirm:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgb(0, 155, 255) !important;
    }

    .fa-spinner {
        margin-right: 8px;
    }

    .btn--submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none !important;
    }

    .floating-element {
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: radial-gradient(circle, rgb(0, 155, 255) 0%, transparent 70%);
        filter: blur(5px);
        z-index: 0;
        animation: float 15s infinite linear;
    }

    .floating-element:nth-child(1) {
        top: 10%;
        left: 5%;
        animation-duration: 20s;
    }

    .floating-element:nth-child(2) {
        top: 60%;
        right: 5%;
        animation-duration: 25s;
        animation-direction: reverse;
    }

    @keyframes float {
        0% { transform: translate(0, 0) rotate(0deg); }
        25% { transform: translate(20px, 20px) rotate(90deg); }
        50% { transform: translate(0, 40px) rotate(180deg); }
        75% { transform: translate(-20px, 20px) rotate(270deg); }
        100% { transform: translate(0, 0) rotate(360deg); }
    }
@media (max-width: 991px) {
    .modal__content {
        width: 95%;
        margin: 10px auto;
        height: calc(100vh - 20px);
        border-radius: 15px;
    }
    
    .modal__header {
        padding: 18px 20px;
    }
    
    .modal__header h1 {
        font-size: 1.5rem;
    }
    
    .modal__body {
        padding: 15px;
    }
    
    .two-column-layout {
        flex-direction: column;
        gap: 25px;
        height: auto;
        overflow-y: auto;
    }
    
    .column-left, .column-right {
        overflow-y: visible;
        max-height: none;
        flex: none;
    }
    
    .column-left {
        order: 1;
    }
    
    .column-right {
        order: 2; 
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .process-info {
        padding: 18px;
    }
    
    .bank-details, .crypto-details {
        padding: 16px;
    }
    
    .contact-info {
        padding: 16px;
    }
}

@media (max-width: 767px) {
    .modal__content {
        width: 98%;
        margin: 5px auto;
        height: calc(100vh - 10px);
        border-radius: 12px;
    }
    
    .modal__header {
        padding: 15px 18px;
        border-radius: 12px 12px 0 0;
    }
    
    .modal__header h1 {
        font-size: 1.3rem;
    }
    
    .modal__close {
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
    
    .modal__body {
        padding: 15px 12px;
    }
    
    .two-column-layout {
        gap: 20px;
    }
    
    .column-left {
        order: 1;
    }
    
    .column-right {
        order: 2;
    }
    
    .batch-info h2 {
        font-size: 1.2rem;
    }
    
    .payment-section h3 {
        font-size: 1.2rem;
    }
    
    .process-info {
        padding: 15px;
    }
    
    .bank-details, .crypto-details {
        padding: 14px;
    }
    
    .contact-info {
        padding: 14px;
    }
    
    .phone-input {
        flex-direction: column;
        gap: 8px;
    }
    
    .phone-input select {
        width: 100%;
    }
    
    .btn--submit {
        padding: 16px;
        font-size: 16px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .modal__content {
        width: 99%;
        margin: 2px auto;
        height: calc(100vh - 4px);
        border-radius: 10px;
    }
    
    .modal__header {
        padding: 12px 15px;
        border-radius: 10px 10px 0 0;
    }
    
    .modal__header h1 {
        font-size: 1.2rem;
    }
    
    .modal__close {
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
    
    .modal__body {
        padding: 12px 10px;
    }
    
    .two-column-layout {
        gap: 15px;
    }
    
    .column-left {
        order: 1;
    }
    
    .column-right {
        order: 2;
    }
    
    .batch-info h2 {
        font-size: 1.1rem;
    }
    
    .payment-section h3 {
        font-size: 1.1rem;
    }
    
    .process-info {
        padding: 12px;
    }
    
    .bank-details, .crypto-details {
        padding: 12px;
    }
    
    .contact-info {
        padding: 12px;
    }
    
    .checkbox-label {
        font-size: 14px;
        gap: 10px;
    }
    
    .checkmark {
        width: 20px;
        height: 20px;
    }
    
    .enrollment-option {
        padding: 12px;
        font-size: 14px;
    }
    
    .file-text, .file-button {
        padding: 12px 14px;
    }
    
    .btn--submit {
        padding: 15px;
        font-size: 15px;
    }
}

@media (max-width: 479px) {
    .modal__header {
        padding: 10px 12px;
    }
    
    .modal__header h1 {
        font-size: 1.1rem;
    }
    
    .modal__body {
        padding: 10px 8px;
    }
    
    .column-left {
        order: 1;
    }
    
    .column-right {
        order: 2;
    }
    
    .batch-info h2 {
        font-size: 1rem;
    }
    
    .payment-section h3 {
        font-size: 1rem;
    }
    
    .process-info p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .bank-details p, .crypto-details p {
        font-size: 14px;
    }
    
    .terms {
        font-size: 14px;
        padding: 10px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
    
    .whatsapp {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
    
    .checkbox-group {
        gap: 8px;
    }
}

@media (max-width: 319px) {
    .modal__content {
        width: 100%;
        margin: 0;
        height: 100vh;
        border-radius: 0;
    }
    
    .modal__header {
        border-radius: 0;
    }
    
    .modal__header h1 {
        font-size: 1rem;
    }
    
    .modal__body {
        padding: 8px 6px;
    }
    
    .column-left {
        order: 1;
    }
    
    .column-right {
        order: 2;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .btn--submit {
        padding: 14px;
        font-size: 14px;
    }
}

@media (max-height: 600px) {
    .modal__content {
        height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    .modal__header {
        padding: 15px 20px;
    }
    
    .modal__body {
        padding: 15px;
    }
    
    .two-column-layout {

        gap: 15px;
    }
    
    .column-left {
        order: 1;
    }
    
    .column-right {
        order: 2;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .process-info,
    .bank-details,
    .crypto-details,
    .contact-info {
        padding: 12px;
    }
  
}

  /*===================== modal end=================== */

  