
*{box-sizing:border-box}
body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f9ff 35%,
    #eef4ff 70%,
    #ffffff 100%
  );

}



/* SECTION */
.video-section{
padding-top: 90px;
}


/* SWIPER */
.swiper{
  max-width:1300px;
  margin:auto;
  padding:0 60px;
}

/* SLIDE */
.swiper-slide{
  display:flex;
  justify-content:center;
  transition:transform .35s ease, opacity .35s ease;
  
}

/* VIDEO CARD */
.video-box{
  width:100%;
  max-width:360px;
  height:340px; /* SLIGHTLY INCREASED */
  background:#000;
  overflow:hidden;

  /* 🔲 Rounded vs Squared */
  border-radius:16px; /* change to 6px for squared */



  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

/* HOVER LIFT */
.video-box:hover{
  transform:translateY(-8px);

}



/* VIDEO */
.video-box iframe{
  width:100%;
  height:100%;
  border:0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

/* ARROWS */
.swiper-button-next,
.swiper-button-prev{
  width:38px;
  height:38px;
  background:#fff;
  border-radius:50%;
  color:#0b2d5b;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.swiper-button-next::after,
.swiper-button-prev::after{
  font-size:14px;
  font-weight:700;
}

/* MOBILE */
@media(max-width:640px){
  .video-section{
padding-top: 65px;
}
  .swiper{padding:0 18px;}

  .video-box{
    height:280px; /* MOBILE HEIGHT */
    max-width:100%;
  }

  .swiper-slide-active .video-box{
    transform:scale(1.02);
  }
}

/* ================= HEADER ================= */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:22px 0;
  transition:.3s ease;
}
.header.scrolled{
  background:#0b3a82;
  padding:16px 0;
  box-shadow:0 6px 20px rgba(0,0,0,.18);
}
.header.scrolled::before{
      content:"";
  position:absolute;
  inset:0;
  background:
    /* soft grid */
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    /* depth dots */
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size:
    44px 44px,
    44px 44px,
    22px 22px;
  opacity:.85;
  z-index:0;
}
/* ================= LOGO ================= */
.brand img{
  height:85px;
  transition:.3s ease;
}
.header.scrolled .brand img{
  height:70px;
}

/* ================= HEADER CTA ================= */
.header-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,0.6);
  padding:10px 20px;
  border-radius:6px;
  font-size:.85rem;
  font-weight:600;
  color:#fff;
  text-decoration:none;
}
.header-btn:hover{opacity:.9;color:#fff}

/* ================= HERO ================= */
.hero{
background:linear-gradient(120deg,#0b3a82,#0b3a82);


  min-height:92vh;
  padding-top:130px;
  padding-bottom:60px;
  position:relative;
  overflow:hidden;
}

/* 🔹 CREATIVE BACKGROUND LAYERS (NEW – SAFE) */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    /* soft grid */
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    /* depth dots */
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size:
    44px 44px,
    44px 44px,
    22px 22px;
  opacity:.85;
  z-index:0;
}



/* CONTENT ABOVE LAYERS */
.hero .container{position:relative;z-index:2}

/* ================= LEFT CONTENT ================= */
.hero-left{padding:20px 10px}

.hero-badge{
  background:rgba(255,255,255,.12);
  padding:7px 16px;
  font-size:.8rem;
  border-radius:4px;
  display:inline-block;
  margin-bottom:16px;
}

.hero-title{
  font-size:clamp(2.2rem,4.5vw,3.3rem);
  font-weight:700;
  line-height:1.25;
  margin-bottom:14px;
}
.hero-title span{
  background:#FFD700;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight:800;
  position:relative;
  display:inline-block;
  animation:shine 2.5s infinite linear;
}
.hero-title span::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:4px;
  background:#FFD700;
  border-radius:2px;
}

@keyframes shine{
  0%{background-position:-200px}
  100%{background-position:200px}
}

.hero-text{
  color:#dbeafe;
  font-size:1.02rem;
  max-width:520px;
  margin-bottom:22px;
  line-height:1.7;
}

/* CTA */
.hero-cta{
  display:inline-block;
  padding:16px 42px;
  background:#FFD700;
  color:#000;
  font-size:1rem;
  font-weight:600;
  border-radius:6px;
  text-decoration:none;
  animation:pulseZoom 1.2s infinite ease-in-out;
  margin-bottom:16px;
}
.hero-cta:hover{opacity:.9;color:#000}

@keyframes pulseZoom{
  0%{transform:scale(1)}
  50%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

/* STATS */
.hero-stats{margin-top:19px}
.hero-stats h5{font-size:1.15rem;font-weight:700}
.hero-stats p{font-size:.82rem;opacity:.85}

/* IMAGE */
.hero-img{
  width:100%;
  min-height:480px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 25px 55px rgba(0,0,0,.35);
}

/* ================= MOBILE ================= */
@media(max-width:992px){
  .hero{padding-top:120px;padding-bottom:40px}
  .hero-left{text-align:center;padding:10px}
  .hero-text{margin:auto}
  .hero-stats{justify-content:center}
  .hero-img{min-height:160px;margin-top:10px}
  .brand img{height:65px}
  .header.scrolled .brand img{height:55px}
  .hero-cta{ margin-top:22px;}
}

.trust-section {

  position: relative;
  padding-top: 90px ;
  padding-bottom: 2px;
  overflow: hidden;
  z-index: 0;
}





/* TITLE */
.trust-title{
  font-size:clamp(1.7rem,3.2vw,2.5rem);
  font-weight:700;
  color:#000000; /* BLACK TITLE */
  margin-bottom:16px;
  line-height:1.3;
  position:relative;
  z-index:2;
}

.trust-title span{
  color:#0b3a82; /* ROYAL BLUE HIGHLIGHT */
  font-weight:800;
}

/* TEXT */
.trust-text{
  font-size:1rem;
  color:black;
  max-width:520px;
  line-height:1.7;
  position:relative;
  z-index:2;
}

/* STATS BOX */
.trust-box{
  background:#ffffff;
  border-radius:14px;
  padding:26px 18px;
  text-align:center;
 box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition:.3s ease;
  position:relative;
  z-index:2;
}

.trust-box h3{
  font-size:2rem;
  font-weight:700;
  color:#0b3a82;
  margin-bottom:6px;
}

.trust-box p{
  font-size:.85rem;
  color:black !important;
  margin:0;
  font-weight:500;
}

.trust-box:hover{
  transform:translateY(-6px);
 
}

/* MOBILE */
@media(max-width:768px){
  .trust-section{
  padding-top: 65px;
  }
  .trust-title{
    text-align:center;
    font-size:1.8rem; /* not too large for mobile */
  }
  .trust-text{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }
}











#apply-modal {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  overflow-y: auto;
  padding: 20px;
}

/* MODAL CONTENT */
.apply-modal-content {
  background: linear-gradient(135deg, #f0f4ff, #e0eaff);
  border-radius: 18px;
  max-width: 700px;
  width: 100%;
  padding: 60px 40px 40px 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {transform: translateY(-50px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}

/* TITLE */
.modal-title {
  text-align: center;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #0b3a82;
  margin-top: 30px;
}

/* CLOSE BUTTON */
#close-apply {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  cursor: pointer;
  color: #0b3a82;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
  
}

#close-apply:hover {
  transform: scale(1.2);
  color: #2196f3;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.form-group {
  position: relative;
  flex: 1;
  min-width: 230px;
}

.form-group.full-width {
  flex: 1 1 100%;
}

/* ICONS */
.input-icon, .textarea-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: gray;
  font-size: 16px;
}

/* TEXTAREA ICON FIX */
.textarea-icon {
  top: 16px; /* aligns top for textarea */
}

/* UNIFIED FIELD STYLES (INPUT, SELECT, TEXTAREA) */
input, select, textarea {
  width: 100%;
  padding: 16px 16px 16px 40px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
  color: #000; /* input text color */
  resize: none;
}

input::placeholder,
textarea::placeholder,
select option[disabled] {
  color: #000; /* black placeholder */
  opacity: 0.8;
}

input:focus, select:focus, textarea:focus {
  border-color: #0b3a82;
  box-shadow: 0 6px 20px rgba(11,58,130,0.25);
}

/* BUTTON */
.submit-btn {
  background: #0b3a82;
  color: #fff;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-size: 17px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .form-row {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .apply-modal-content {
    padding: 50px 25px 30px 25px;
  }
  input, select, textarea {
    font-size: 15px;
    padding: 14px 16px 14px 38px;
  }
  .input-icon, .textarea-icon {
    font-size: 15px;
  }
  .submit-btn {
    font-size: 16px;
    padding: 14px 25px;
  }
}

@media (max-width: 480px) {
  .apply-modal-content {
    padding: 40px 20px 30px 20px;
  }
}



#cookie-banner {
  position: fixed;
  bottom: -250px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  width: 90%;
  background: linear-gradient(135deg, #0b3a82, #2196f3);
  color: #fff;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  text-align: center;
  opacity: 0;
  transition: bottom 0.6s ease, opacity 0.6s ease;
  font-family: 'Arial', sans-serif;
}

/* SHOW BANNER */
#cookie-banner.show {
  bottom: 30px;
  opacity: 1;
}

/* CLOSE BUTTON */
#close-cookie {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: transform 0.3s ease;
}

#close-cookie:hover {
  transform: scale(1.2);
  color: #ffeb3b;
}

/* BANNER TEXT & LINKS */
#cookie-banner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

#cookie-banner a {
  color: #ffeb3b;
  font-weight: 600;
  text-decoration: underline;
}

/* BUTTONS */
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

#accept-cookies {
  background: #ffeb3b;
  color: #0b3a82;
  border: none;
  padding: 10px 28px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#accept-cookies:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.learn-more {
  background: transparent;
  color: #fff;
  padding: 10px 28px;
  border-radius: 12px;
  border: 1px solid #fff;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.learn-more:hover {
  background: #fff;
  color: #0b3a82;
  transform: scale(1.08);
}

/* PRIVACY MODAL */
#privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.privacy-content {
  background: #fff;
  color: #000;
  max-width: 650px;
  width: 90%;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
  font-family: 'Arial', sans-serif;
}

#close-privacy {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #0b3a82;
  font-weight: bold;
  transition: transform 0.3s ease;
}

#close-privacy:hover {
  transform: scale(1.2);
  color: #ffeb3b;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  #cookie-banner p {
    font-size: 14px;
  }
  #accept-cookies, .learn-more {
    padding: 8px 22px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  #cookie-banner p {
    font-size: 13px;
  }
  #accept-cookies, .learn-more {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
  .cookie-buttons {
    flex-direction: column;
  }
}



  /* ================= CTA BUTTON ================= */
.benefits-cta{
  margin-top:50px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 30px;
     background: #FFD700;
  color:#1f2933;
  font-size:0.95rem;
  font-weight:700;
  border-radius:8px;
  text-decoration:none;

  animation:zoomPulse 1s infinite ease-in-out;
  transition:all .3s ease;
}

.cta-btn i{
  font-size:.85rem;
}

.cta-btn:hover{
  transform:translateY(-2px) scale(1.05);

  color:#1f2933;
}

/* Zoom Animation */
@keyframes zoomPulse{
  0%{ transform:scale(1); }
  50%{ transform:scale(1.07); }
  100%{ transform:scale(1); }
}

/* Tablet */
@media(max-width:992px){
  .benefits-cta{
    text-align:center;
    margin-top: 50px;
  }
  
}

/* Mobile */
@media(max-width:576px){
  .cta-btn{
    padding:16px 42px;
    font-size:1.1rem;
  }
}

/* ================= BENEFITS SECTION ================= */
.benefits-section{
  position:relative;
  overflow:hidden;
  padding-top: 90px;
  font-family:'Poppins', sans-serif;
}

/* Control LEFT–RIGHT gap */
.benefits-row{
  --bs-gutter-x: 1.4rem;
}

/* INNER COLUMN PADDING (FIX TOUCHING ISSUE) */
.benefits-col{
  padding-left:14px;
  padding-right:14px;
}

/* Desktop refinement */
@media(min-width:1200px){
  .benefits-col{
    padding-left:18px;
    padding-right:18px;
  }
}

/* ================= TITLE ================= */
.benefits-title{
  font-size:clamp(1.9rem, 3vw, 2.6rem);
  font-weight:800;
  color:#071a3a;
  line-height:1.25;
  margin-bottom:50px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  letter-spacing:-0.4px;
  position:relative;
}

.benefits-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-14px;
  transform:translateX(-50%);
  width:90px;
  height:3px;
  background:linear-gradient(90deg,#0b3a82,#6a93ff);
  border-radius:10px;
}

.benefits-title span{
  color:#0b3a82;
}

/* ================= TEXT ================= */
.benefits-text{
  font-size:1.05rem;
  color:#071a3a;
  line-height:1.8;
  margin-bottom:34px;
  max-width:520px;
}

/* ================= LIST ================= */
.benefits-list{
  list-style:none;
  padding:0;
  margin:0;
}
.benefits-list li{
  font-size:1rem;
  color:#071a3a;
  margin-bottom:20px;
  display:flex;
  align-items:flex-start;
  gap:14px;
  font-weight:500;
}
.benefits-list li .icon{
  font-size:1.10rem;
  color:#0b3a82;
  flex-shrink:0;
}

/* ================= VIDEO ================= */
.video-wrapper{
  position:relative;
  width:100%;
  padding-bottom:56.25%;
  border-radius:18px;
  overflow:hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.video-wrapper iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:992px){
  .benefits-col{
    padding-left:12px;
    padding-right:12px;
  }

  .benefits-title{
    margin-bottom:30px;
  }

  .benefits-text,
  .benefits-list{

    margin-left:auto;
    margin-right:auto;
  }

  .benefits-list li{
    justify-content:center;
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
  }

.benefits-section{
  position:relative;
  overflow:hidden;
padding-top: 65px;
  font-family:'Poppins', sans-serif;
}
}

/* Mobile */
@media(max-width:576px){


  .benefits-col{
    padding-left:10px;
    padding-right:10px;
  }

  .benefits-title{
    font-size:1.6rem;
  }

  .benefits-title::after{
    width:65px;
  }

  .benefits-text{
    font-size:0.95rem;
  }

  .benefits-list li{
    font-size:1rem;
    gap:10px;
  }
}



    .poland-life-section{
   padding-top: 90px;
     font-family:'Poppins', sans-serif;
    }

    .life-main-box{
      background:#0b3a82;
      color:#fff;
      border-radius:22px;
      padding:42px;
     box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .life-main-box h4{
      font-size:1.35rem;
      font-weight:700;
      margin-bottom:14px;
    }

    .life-main-box p{
      font-size:.95rem;
      line-height:1.8;
      opacity:1;
      margin-bottom:26px;
      font-weight: 500;
    }

    .life-points{
      list-style:none;
      padding:0;
      margin:0;
    }

    .life-points li{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
        font-size:.95rem;
           font-weight: 500;
    }

    .life-points i{
      background:rgba(255,255,255,.15);
      padding:10px;
      border-radius:50%;
      font-size:.8rem;
    }

    .future-box{
      background:#fff;
      border-radius:18px;
      padding:30px 26px;
      height:100%;
 box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .future-box i{
      font-size:1.4rem;
      color:#0b3a82;
      margin-bottom:14px;
    }

    .future-box h5{
      font-size:1rem;
      font-weight:600;
      margin-bottom:8px;
      color:#071a3a;
    }

    .future-box p{
      font-size:.95rem;
      line-height:1.7;
      color:black;
      font-weight: 500;
      margin:0;
    }

    @media(max-width:576px){
      .life-main-box{
        padding:28px;
      }

          .poland-life-section{
padding-top: 65px;
    }
    }


 
    .poland-cost-table{
   padding-top: 90px;
  
    }

    .table-head{
      background:linear-gradient(135deg,#0b3a82,#6a93ff);
      color:#ffffff;
      font-weight:600;
      border-radius:18px;
      padding:18px 0;
      margin-bottom:14px;
    }

    .table-row{
      background:#ffffff;
      border-radius:20px;
      margin-bottom:14px;
      padding:22px 10px;
      box-shadow:0 15px 45px rgba(0,0,0,.08);
    }

    .table-col-title{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:600;
      color:#071a3a;
      font-size:1rem;
    }

    .table-col-title i{
      font-size:1.3rem;
      color:#0b3a82;
    }

    .table-col-price{
      font-weight:700;
      color:#0b3a82;
      font-size:1rem;
      text-align:center;
    }

    .table-col-desc{
      color:black;
      font-size:.95rem;
      line-height:1.6;
      font-weight: 500;
    }

    .table-row-highlight{
      background:#fff7e6;
      border:1px solid #fde68a;
    }

    .highlight{
      color:#d97706;
      font-size:1.05rem;
    }

    /* Tablet */
    @media(max-width:992px){
                .poland-cost-table{
   padding-top: 65px;
  
    }
      .table-col-price{
        text-align:left;
        margin-top:6px;
      }
    }

    /* Mobile */
    @media(max-width:576px){
          .poland-cost-table{
   padding-top: 65px;
  
    }
      .table-head{
        display:none;
      }

      .table-row{
        padding:20px;
      }

      .table-col-desc{
        margin-top:6px;
      }

      /* FIX MOBILE LEFT & RIGHT SPACING */
@media (max-width: 576px) {
  .poland-cost-table .row {
    margin-left: 0;
    margin-right: 0;
  }

  .poland-cost-table .table-row {
    margin-left: 0px;
    margin-right: 0px;
  }
}

    }



.admission-workflow {
  position: relative;
   margin-top: 90px;


  overflow: hidden;

}

/* GRID BOX OVERLAY */
/* GRID BOX OVERLAY */
.admission-workflow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(11, 58, 130, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(11, 58, 130, 0.07) 1px,
      transparent 1px
    );
  background-size: 48px 48px;
  z-index: 0;
}


/* SOFT GLOW LAYER (BOTTOM) */
.admission-workflow::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 420px;
  height: 420px;

  z-index: 0;
}

/* KEEP CONTENT ABOVE GRID */
.admission-workflow .container {
  position: relative;
  z-index: 1;
}

    .workflow { max-width:900px; margin:0 auto; position:relative; }

    /* CENTER LINE */
    .workflow::before {
      content:"";
      position:absolute;
      top:0;
      bottom:0;
      left:50%;
      width:3px;
      background:linear-gradient(180deg,#0b3a82,#6a93ff);
      transform:translateX(-50%);
      z-index:0;
    }

    .workflow-row {
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:start;
      margin-bottom:50px;
      position:relative;
    }

    .workflow-row.left { grid-template-areas:"card dot ."; }
    .workflow-row.right { grid-template-areas:". dot card"; }

    .workflow-card {
      grid-area:card;
      max-width:380px;
      padding:20px 22px;
      background:#ffffff;
      border-radius:12px;
      border:1px solid #dce3f0;
      box-shadow:0 6px 18px rgba(0,0,0,0.07);
      transition:transform 0.3s ease;
      z-index:1;
    }

    .workflow-card:hover { transform:translateY(-3px); }

    .workflow-row.left .workflow-card { text-align:right; margin-right:20px; }
    .workflow-row.right .workflow-card { text-align:left; margin-left:20px; }

    .workflow-dot {
      grid-area:dot;
      width:44px;
      height:44px;
      background:#0b3a82;
      color:#ffffff;
      font-weight:700;
      font-size:1.1rem;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:2;
      box-shadow:0 4px 12px rgba(0,0,0,0.15);
      transition:transform 0.3s ease, background 0.3s ease;
      position:relative;
    }

    .workflow-dot:hover { transform:scale(1.1); background:#6a93ff; }

    .workflow-card h4 { font-size:1.1rem; font-weight:700; color:#071a3a; margin-bottom:6px; }
    .workflow-card p { font-size:.95rem; line-height:1.5; color:#2c2c2c; margin:0; font-weight:500; }


    /* RESPONSIVE FOR ALL DEVICES */
    @media(max-width:1200px){ .workflow { max-width:750px; } }
    @media(max-width:992px){ .workflow { max-width:700px; margin:0 auto; }    .admission-workflow { padding-top: 10px;  } }
    
    /* MOBILE & SMALL DEVICES: CENTERED STACK */
    @media(max-width:768px){
      .workflow::before { left:50%; transform:translateX(-50%); }
      .workflow-row {
        grid-template-columns: auto 1fr;
        grid-template-areas: "dot card";
        margin-bottom:30px;
      }
      .workflow-row.left .workflow-card,
      .workflow-row.right .workflow-card{
        text-align:left;
        margin:0 auto 0 auto;
        max-width:90%;
      }
      .workflow-card { padding:16px 18px; }
      .workflow-dot { width:36px; height:36px; font-size:1rem; margin:0 auto; display:flex; justify-content:center; }
    }

    @media(max-width:576px){
      .admission-workflow { margin-top: 50px; }
      .workflow-row { margin-bottom:24px; }
      .workflow-card { padding:14px 16px; max-width:90%; }
      .workflow-dot { width:32px; height:32px; font-size:.95rem; }
    }

    @media(max-width:480px){
      .workflow-card { padding:12px 14px; max-width:90%; }
      .workflow-dot { width:28px; height:28px; font-size:.85rem; }
    }







/* ===== COURSE DEMAND SECTION ===== */
/* ===== PREMIUM ICON COLORS (EACH COURSE UNIQUE) ===== */
.course-item:nth-child(1) i { color: #1e40af; }   /* Royal Blue */
.course-item:nth-child(2) i { color: #0f766e; }   /* Teal */
.course-item:nth-child(3) i { color: #7c3aed; }   /* Purple */
.course-item:nth-child(4) i { color: #be123c; }   /* Rose */
.course-item:nth-child(5) i { color: #b45309; }   /* Gold */
.course-item:nth-child(6) i { color: #065f46; }   /* Emerald */
.course-item:nth-child(7) i { color: #4338ca; }   /* Indigo */
.course-item:nth-child(8) i { color: #0369a1; }   /* Sky Blue */
.course-item:nth-child(9) i { color: #92400e; }   /* Bronze */
.course-item:nth-child(10) i { color: #1d4ed8; }  /* Electric Blue */
.course-item:nth-child(11) i { color: #374151; }  /* Graphite */
.course-item:nth-child(12) i { color: #166534; }  /* Forest Green */

.course-demand {
  width: 100%;
  padding-top: 90px;
}

/* Grid Layout */
.course-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 80px; /* EXTRA GAP */
}

/* Course Item */
.course-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease;
}

.course-item:hover {
  transform: translateY(-5px);
}

/* Icon */
.course-item i {
  font-size: 2.2rem;
  color: #0b3a82;
  min-width: 42px;
}

/* Text */
.course-info h4 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #071a3a;
}

.course-info p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #2c2c2c;
}

/* Tablet */
@media (max-width: 1024px) {
  .course-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .course-demand {
padding-top: 65px;
  }


  .course-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .course-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}



/* ===== TRUSTED UNIVERSITY PARTNERS (INFINITE SLIDER) ===== */
.partner-section {
  width: 100%;
padding-top: 90px;
  
  overflow: hidden;
}

.partner-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #071a3a;
  margin-bottom: 50px;
}

.partner-title span {
  color: #1d4ed8;
}

/* Slider Wrapper */
.partner-slider {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Each Row */
.partner-row {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 28px;
}

/* Infinite Animation */
.partner-row.animate-left {
  animation: scrollLeft 38s linear infinite;
}

.partner-row.animate-right {
  animation: scrollRight 38s linear infinite;
}

/* Logo Box */
.partner-logo {
  width: 220px;
  height: 120px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.partner-logo img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

/* Hover (subtle & premium) */
.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* Animations */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Tablet */
@media (max-width: 1024px) {
  .partner-logo {
    width: 180px;
    height: 100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .partner-section {
  width: 100%;
padding-top: 70px;

}
  .partner-title {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }

  .partner-slider {
    gap: 24px;
  }

  .partner-row {
    gap: 18px;
  }

  .partner-logo {
    width: 130px;
    height: 80px;
    border-radius: 10px;
  }
}



.premium-cta-modern {
  position: relative;
  margin-top: 90px;
  padding: 0;
  min-height: 240px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #0b3a82, #0b3a82);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* GRID + DOT LAYER */
.premium-cta-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px, 22px 22px;
  opacity: .85;
  z-index: 0;
  border-radius: 20px;
  pointer-events: none;
}

/* LAYOUT */
.cta-inner-modern {
  max-width: 1000px;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* IMAGE */
.cta-image-modern {
  flex: 0 0 35%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -150px;
  z-index: 3;
}

.cta-image-modern img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.cta-image-modern img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.cta-content-modern {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0 20px;
  color: #fff;
  z-index: 3;
}

.cta-content-modern h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.5;
  word-spacing:6px;
}

.cta-content-modern p {
  font-size: 17px;
  margin-bottom: 20px;

}

/* BUTTONS */
.cta-buttons-modern {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* BLUE SOLID BUTTON */
.call-btn-modern {
  background: #1e88e5;
  color: #fff;
}

.call-btn-modern:hover {
  transform: scale(1.08);
  background: #1565c0;
}

/* TRANSPARENT PREMIUM BUTTON */
.free-btn-modern {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}

.free-btn-modern:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.22);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cta-inner-modern {
    flex-direction: column;
    text-align: center;
  }

  .cta-image-modern {
    margin-top: -80px;
    margin-bottom: 20px;
  }

  .cta-image-modern img {
    max-width: 180px;
    max-height: 250px;
  }

  .cta-content-modern h2 {
    font-size: 28px;
  }

  .cta-content-modern p {
    font-size: 15px;
  }
    .cta-image-modern img {
    display: none !important;
  }
    .cta-buttons-modern {
    display: flex;
    align-items: center;
    justify-content: center;
  }

}

@media (max-width: 600px) {
  .premium-cta-modern {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .cta-image-modern img {
    display: none;
  }

  .cta-content-modern h2 {
    font-size: 24px;
  }

  .cta-content-modern p {
    font-size: 14px;
  }

  .cta-buttons-modern {
    flex-direction: column;
  }

  .cta-btn-modern {
    width: 100%;
    font-size: 15px;
    padding: 14px 24px;
  }
}

.hig{
  background:#FFD700;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight:800;
  position:relative;
  display:inline-block;
  animation:shine 2.5s infinite linear;

}
.hig::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:4px;
  background:#FFD700;
  border-radius:2px;
}




.social-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

/* MAIN BUTTON */
.social-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0b3a82;
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
  transition: transform .3s ease;
}

.social-toggle.active {
  transform: rotate(45deg);
}

/* ICON LIST */
.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 70px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .35s ease;
}

.social-list.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ICON LINKS */
.social-list li a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: transform .3s ease;
}

.social-list li a:hover {
  transform: scale(1.15);
}

/* BRAND COLORS */
.instagram { background: #e1306c; }
.facebook { background: #1877f2; }
.youtube { background: #ff0000; }
.whatsapp { background: #25d366; }
.email { background: #607d8b; }
.map { background: #ff5722; }

/* MOBILE SAFE */
@media (max-width: 600px) {
  .social-float {
    left: 14px;
    bottom: 14px;
  }
}
