
:root{
  --orange:#ff7a1a;
  --orange2:#ffab72;
  --navy:#101a35;
  --navy2:#172445;
  --cream:#fffaf5;
  --white:#fff;
  --line:#e8eaf0;
  --muted:#687086;
  --shadow:0 18px 55px rgba(16,26,53,.10);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,Arial,sans-serif;
  color:var(--navy);
  background:#fff;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button{font:inherit}

.container{width:min(1240px,92%);margin:auto}

/* ================= HEADER ================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(16,26,53,.08);
}
.header-main{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:48px;height:48px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(145deg,var(--orange),#ff5c14);
  color:white;font-weight:800;font-size:22px;
  box-shadow:0 8px 22px rgba(255,122,26,.25);
}
.brand-copy strong{
  display:block;
  font-family:Poppins,sans-serif;
  font-size:22px;
  letter-spacing:-.6px;
}
.brand-copy span{
  display:block;
  color:var(--orange);
  font-size:10px;
  font-weight:800;
  letter-spacing:1.8px;
  margin-top:1px;
}
.header-right{
  display:flex;
  align-items:center;
  gap:22px;
}
.email{
  font-size:14px;
  font-weight:600;
  color:var(--navy);
}
.email b{color:var(--orange)}
.contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  background:var(--navy);
  color:#fff;
  padding:13px 21px;
  border-radius:12px;
  font-weight:700;
  transition:.25s ease;
}
.contact-btn:hover{
  background:var(--orange);
  transform:translateY(-2px);
}

/* ================= EXAM TICKER ================= */
.exam-ticker{
  background:var(--navy);
  color:white;
  height:44px;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
}
.ticker-track{
  height:100%;
  width:max-content;
  display:flex;
  align-items:center;
  animation:ticker 28s linear infinite;
}
.ticker-set{
  display:flex;
  align-items:center;
}
.ticker-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 27px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.3px;
  white-space:nowrap;
}
.ticker-item:after{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 4px rgba(255,122,26,.12);
}
@keyframes ticker{to{transform:translateX(-50%)}}

/* ================= HERO ================= */
.hero{
  background:#fff;
  padding:22px 0 28px;
}
.banner-wrap{
  width:min(1886px,100%);
  margin:auto;
  position:relative;
  overflow:hidden;
  border-radius:0;
}
.banner-image{
  display:block;
  width:100%;
  height:auto;
}
/* .pencil-ghost{
  position:absolute;
  z-index:2;
  top:0;
  left:calc(78.55% - 8px);
  width:8.8%;
  height:100%;
  background:url("assets/pencil-animation.png") center top/100% 100% no-repeat;
  mix-blend-mode:multiply;
  animation:pencilFloat 4.2s ease-in-out infinite;
  pointer-events:none;
  transform-origin:50% 88%;
  opacity:.92;
} */
@keyframes pencilFloat{
  0%,100%{transform:translateY(0) rotate(0deg)}
  25%{transform:translateY(-5px) rotate(-.7deg)}
  50%{transform:translateY(2px) rotate(.55deg)}
  75%{transform:translateY(-3px) rotate(-.35deg)}
}
.hero-note{
  text-align:center;
  padding-top:14px;
  font-size:12px;
  color:var(--muted);
}

/* ================= SUCCESS / VIDEO ================= */
.success{
  position:relative;
  padding:82px 0 76px;
  background:
    linear-gradient(rgba(16,26,53,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(16,26,53,.055) 1px,transparent 1px),
    #fff;
  background-size:62px 62px;
  overflow:hidden;
}
.success:before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 28%,rgba(255,171,114,.15),transparent 42%);
  pointer-events:none;
}
.section-head{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:920px;
  margin:0 auto 38px;
}
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--orange);
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:11px;
}
.section-kicker:before,.section-kicker:after{
  content:"";height:1px;width:28px;background:var(--orange);
}
.section-head h2{
  font-family:Poppins,sans-serif;
  font-size:clamp(30px,4vw,46px);
  line-height:1.12;
  letter-spacing:-1.3px;
}
.section-head h2 span{color:var(--orange)}
.section-head p{
  max-width:850px;
  margin:14px auto 0;
  color:#5f687c;
  line-height:1.7;
  font-size:15px;
}

/* Video marquee */
.video-window{
  position:relative;
  z-index:2;
  width:100%;
  overflow:hidden;
  padding:10px 0 20px;
  -webkit-mask-image:linear-gradient(to right,transparent 0,#000 7%,#000 93%,transparent 100%);
  mask-image:linear-gradient(to right,transparent 0,#000 7%,#000 93%,transparent 100%);
}
.video-track{
  display:flex;
  gap:18px;
  width:max-content;
  animation:videos 34s linear infinite;
  will-change:transform;
}
.video-window:hover .video-track{animation-play-state:paused}
.video-card{
  width:184px;
  flex:0 0 184px;
  position:relative;
  border-radius:19px;
  overflow:hidden;
  background:#ddd;
  box-shadow:0 14px 32px rgba(16,26,53,.14);
  aspect-ratio: .72;
  transition:.3s ease;
}
.video-card:nth-child(2n){transform:translateY(32px)}
.video-card:nth-child(3n){transform:translateY(-20px)}
.video-card img{
  width:100%;height:100%;object-fit:cover;display:block;
  filter:saturate(.88);
}
.video-card:after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to bottom,transparent 48%,rgba(0,0,0,.55));
}
.play{
  position:absolute;
  z-index:3;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:50px;height:50px;border-radius:50%;
  display:grid;place-items:center;
  background:rgba(16,26,53,.62);
  border:1px solid rgba(255,255,255,.7);
  color:white;
  backdrop-filter:blur(6px);
  font-size:18px;
}
.video-label{
  position:absolute;
  z-index:4;
  left:13px;right:13px;bottom:13px;
  color:#fff;
  font-size:12px;
  font-weight:700;
  line-height:1.3;
}
@keyframes videos{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.success-bottom{
  position:relative;
  z-index:3;
  text-align:center;
  margin-top:44px;
}
.selection-number{
  font-family:Poppins,sans-serif;
  font-size:clamp(28px,4vw,44px);
  font-weight:800;
  color:var(--navy);
}
.selection-number span{color:var(--orange)}
.success-bottom p{
  color:var(--muted);
  margin-top:7px;
}

/* ================= FAQ ================= */
.faq{
  padding:92px 0 100px;
  background:linear-gradient(180deg,#fff 0%,#fffaf6 100%);
}
.faq-grid{
  width:min(1060px,100%);
  margin:auto;
}
.faq-title{
  text-align:center;
  margin-bottom:42px;
}
.faq-title .section-kicker{margin-bottom:12px}
.faq-title h2{
  font-family:Poppins,sans-serif;
  font-size:clamp(31px,4vw,45px);
  letter-spacing:-1.2px;
}
.faq-title h2 span{color:var(--orange)}
.faq-title p{
  color:var(--muted);
  margin-top:10px;
  font-size:14px;
}
.faq-list{display:grid;gap:14px}
.faq-item{
  background:#fff;
  border:1px solid #e6e8ed;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 7px 25px rgba(16,26,53,.045);
  transition:.3s ease;
}
.faq-item.active{
  border-color:rgba(255,122,26,.38);
  box-shadow:0 15px 38px rgba(16,26,53,.09);
}
.faq-question{
  width:100%;
  border:0;
  background:none;
  cursor:pointer;
  padding:22px 24px;
  display:flex;
  align-items:center;
  gap:17px;
  text-align:left;
  color:var(--navy);
}
.faq-number{
  min-width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:12px;
  background:#fff1e8;
  color:var(--orange);
  font-size:12px;
  font-weight:800;
}
.faq-qtext{
  flex:1;
  font-size:16px;
  line-height:1.45;
  font-weight:700;
}
.faq-icon{
  width:30px;height:30px;
  border-radius:50%;
  display:grid;place-items:center;
  color:var(--orange);
  background:#fff6f0;
  font-size:22px;
  transition:.3s ease;
}
.faq-item.active .faq-icon{
  transform:rotate(45deg);
  background:var(--orange);
  color:white;
}
.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .42s cubic-bezier(.2,.75,.2,1);
}
.faq-answer-inner{
  overflow:hidden;
}
.faq-answer p{
  padding:0 82px 24px;
  color:#626b7d;
  line-height:1.75;
  font-size:14px;
}
.faq-item.active .faq-answer{grid-template-rows:1fr}

/* ================= FOOTER ================= */

.footer {
  background: #101a35;
  color: #ffffff;
  padding: 55px 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}


/* FOOTER TITLE */

.footer-column h3 {
  font-size: 23px;
  font-weight: 500;
  margin: 0 0 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ffffff;
  width: fit-content;
}


/* CONTACT */

.footer-column a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: #ffab72;
}


/* BRANCHES */

.branches-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 50px;
}

.branches-list span {
  font-size: 17px;
  color: #ffffff;
}


/* COPYRIGHT */

.copyright {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 45px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .branches-list {
    grid-template-columns: 1fr 1fr;
    gap: 14px 25px;
  }

}


@media (max-width: 480px) {

  .branches-list {
    grid-template-columns: 1fr;
  }

}



/* =====================================================
   WESHINE ACADEMY ENQUIRY
===================================================== */

.ws-enquiry {
    position: relative;
    width: 100%;
    min-height: 512px;

    overflow: hidden;

    padding: 8px 20px 5px;

    font-family: Arial, Helvetica, sans-serif;
}


/* =====================================================
   BACKGROUND
===================================================== */

.ws-enquiry-background {
    position: absolute;

    inset: 0;

    background-image: url("assets/student-bg.jpg");

    background-size: cover;
    background-position: center;

    filter: grayscale(100%);

    opacity: 0.28;

    z-index: 0;
}


/* LIGHT TRANSPARENT LAYER */

.ws-enquiry-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(250, 248, 238, 0.76);

    z-index: 1;
}


/* =====================================================
   MAIN WRAPPER
===================================================== */

.ws-enquiry-wrapper {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 994px;

    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.ws-enquiry-heading {
    text-align: center;

    margin-bottom: 23px;
}


.ws-enquiry-heading h2 {
    margin: 0 0 18px;

    color: #111827;

    font-size: 27px;

    line-height: 1;

    font-weight: 700;
}


.ws-enquiry-heading p {
    margin: 0;

    color: #111827;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 600;
}


/* =====================================================
   FORM WHITE BOX
===================================================== */

.ws-enquiry-form {
    width: 600px;

    max-width: 100%;

    margin: 10px auto 0;

    padding: 10px 15px 15px;

    background: #ffffff;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.06);
}


/* =====================================================
   ROW
===================================================== */

.ws-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 19px;
}


/* =====================================================
   NORMAL FIELD
===================================================== */

.ws-field {
    width: 100%;
}


.ws-field input,
.ws-field select,
.ws-phone-row input,
.ws-captcha-row input {
    width: 100%;

    height: 39px;

    box-sizing: border-box;

    border: 1px solid #d5d5d5;

    background: #ffffff;

    border-radius: 0;

    padding: 0 10px;

    outline: none;

    color: #333333;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
}


.ws-field input::placeholder,
.ws-phone-row input::placeholder,
.ws-captcha-row input::placeholder {
    color: #555555;

    opacity: 1;
}


/* FOCUS */

.ws-field input:focus,
.ws-field select:focus,
.ws-phone-row input:focus,
.ws-captcha-row input:focus {
    border-color: #2495f2;

    box-shadow:
        0 0 4px rgba(36,149,242,0.35);
}


/* =====================================================
   PHONE
===================================================== */

.ws-phone-row {
    width: 100%;

    display: flex;

    margin-bottom: 19px;
}


.ws-country-code {
    width: 60px;

    height: 39px;

    flex-shrink: 0;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 3px;

    border: 1px solid #d5d5d5;

    border-right: 0;

    background: #ffffff;

    color: #333333;

    font-size: 12px;
}


.ws-country-code span {
    font-size: 13px;

    color: #222222;
}


.ws-phone-row input {
    flex: 1;
}


/* =====================================================
   SELECT
===================================================== */

.ws-select-field {
    position: relative;
}


.ws-select-field select {
    appearance: none;

    -webkit-appearance: none;

    -moz-appearance: none;

    cursor: pointer;

    padding-right: 35px;
}


.ws-select-field::after {
    content: "";

    position: absolute;

    right: 14px;

    top: 50%;

    width: 7px;
    height: 7px;

    border-right: 1px solid #111;
    border-bottom: 1px solid #111;

    transform:
        translateY(-70%)
        rotate(45deg);

    pointer-events: none;
}


/* =====================================================
   FULL WIDTH BRANCH
===================================================== */

.ws-enquiry-form > form > .ws-select-field {
    margin-bottom: 19px;
}


/* =====================================================
   CAPTCHA
===================================================== */

.ws-captcha-row {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 7px;

    margin-bottom: 30px;
}


.ws-captcha {
    position: relative;

    height: 39px;

    border: 1px solid #d5d5d5;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f7f7f7
        );
}


/* CAPTCHA BUBBLES */

.ws-captcha::before,
.ws-captcha::after {
    content: "";

    position: absolute;

    width: 38px;
    height: 25px;

    border-radius: 50%;

    opacity: 0.65;
}


.ws-captcha::before {
    left: 72px;

    background: #52e87b;
}


.ws-captcha::after {
    left: 103px;

    background: #ff8c8c;
}


.ws-captcha-letter {
    position: relative;

    z-index: 2;
}


.ws-captcha .captcha-letter {
    position: relative;

    z-index: 3;

    font-size: 23px;

    font-weight: 700;

    color: #222;

    margin: 0 1px;
}


.ws-captcha .c1 {
    transform: rotate(-7deg);
}


.ws-captcha .c2 {
    transform: rotate(4deg);
}


.ws-captcha .c3 {
    transform: rotate(-3deg);
}


.ws-captcha .c4 {
    transform: rotate(5deg);
}


.ws-captcha .c5 {
    transform: rotate(-4deg);
}


.ws-captcha .c6 {
    transform: rotate(2deg);
}


/* CAPTCHA REFRESH */

#refreshCaptcha {
    position: absolute;

    right: 7px;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    border: 0;

    background: transparent;

    cursor: pointer;

    font-size: 19px;

    color: #333;

    padding: 0;
}


/* =====================================================
   CONSENT
===================================================== */

.ws-consent {
    width: 100%;

    margin-bottom: 31px;
}


.ws-consent label {
    display: flex;

    align-items: flex-start;

    gap: 7px;

    cursor: pointer;

    color: #111827;

    font-size: 12px;

    line-height: 1.45;
}


.ws-consent input {
    width: 14px;
    height: 14px;

    margin: 1px 0 0;

    flex-shrink: 0;

    cursor: pointer;
}


/* =====================================================
   SUBMIT
===================================================== */

.ws-submit {
    display: block;

    width: 500px;

    max-width: 100%;

    height: 47px;

    margin: 0 auto;

    border: 0;

    border-radius: 15px;

    background: #ff7a1a;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.ws-submit:hover {
    background: #ae1726;

    transform: translateY(-1px);
}


.ws-submit:active {
    transform: translateY(0);
}


/* =====================================================
   FORM MESSAGE
===================================================== */

.ws-form-message {
    min-height: 18px;

    margin-top: 7px;

    text-align: center;

    font-size: 12px;

    font-weight: 600;
}


/* =====================================================
   FLOATING BUTTONS
===================================================== */

.ws-floating-buttons {
    position: fixed;

    right: 28px;

    bottom: 18px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 10px;
}


.ws-floating-buttons a {
    text-decoration: none;

    color: #ffffff;

    display: flex;

    align-items: center;

    box-sizing: border-box;

    transition: 0.25s ease;
}


/* CALL */

.ws-call {
    width: 225px;

    height: 43px;

    padding: 0 14px;

    gap: 9px;

    border-radius: 8px;

    background: #c51627;

    box-shadow:
        0 3px 10px rgba(0,0,0,0.15);

    font-size: 16px;

    font-weight: 700;
}


.ws-call:hover {
    transform: translateX(-3px);
}


.ws-call-icon {
    width: 33px;
    height: 33px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #ffffff;

    color: #c51627;

    font-size: 16px;
}


/* WHATSAPP */

.ws-whatsapp {
    min-width: 230px;

    height: 43px;

    padding: 0 17px;

    gap: 8px;

    border-radius: 24px;

    background: #20c96b;

    font-size: 15px;

    font-weight: 700;

    box-shadow:
        0 3px 10px rgba(0,0,0,0.13);
}


.ws-whatsapp:hover {
    transform: translateY(-2px);
}


.ws-whatsapp-icon {
    width: 25px;
    height: 25px;

    display: grid;

    place-items: center;

    border: 2px solid #ffffff;

    border-radius: 50%;

    font-size: 13px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

    .ws-enquiry {
        padding-left: 15px;
        padding-right: 15px;

        min-height: auto;

        padding-bottom: 40px;
    }

    .ws-enquiry-form {
        width: 100%;

        max-width: 600px;
    }

    .ws-floating-buttons {
        right: 12px;
        bottom: 12px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .ws-enquiry {
        padding-top: 30px;
    }


    .ws-enquiry-heading h2 {
        font-size: 25px;

        margin-bottom: 13px;
    }


    .ws-enquiry-heading p {
        font-size: 12px;

        line-height: 1.5;
    }


    .ws-enquiry-form {
        padding: 12px;

        margin-top: 12px;
    }


    .ws-row {
        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;
    }


    .ws-row .ws-field {
        margin-bottom: 14px;
    }


    .ws-phone-row {
        margin-bottom: 14px;
    }


    .ws-enquiry-form > form > .ws-select-field {
        margin-bottom: 14px;
    }


    .ws-captcha-row {
        grid-template-columns: 1fr;

        gap: 8px;

        margin-bottom: 20px;
    }


    .ws-consent {
        margin-bottom: 22px;
    }


    .ws-consent label {
        font-size: 10px;
    }


    .ws-submit {
        height: 44px;

        font-size: 15px;
    }


    /* Floating buttons become circles */

    .ws-floating-buttons {
        right: 10px;

        bottom: 10px;

        gap: 8px;
    }


    .ws-call,
    .ws-whatsapp {
        width: 48px;
        min-width: 48px;

        height: 48px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }


    .ws-call-text,
    .ws-whatsapp > span:last-child {
        display: none;
    }


    .ws-call-icon {
        width: auto;
        height: auto;

        background: transparent;

        color: #ffffff;
    }


    .ws-whatsapp-icon {
        margin: 0;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .ws-enquiry-form {
        padding: 10px;
    }

    .ws-field input,
    .ws-field select,
    .ws-phone-row input,
    .ws-captcha-row input {
        height: 40px;

        font-size: 11px;
    }

}
/* =====================================================
   YOUTUBE POPUP
   DOES NOT CHANGE MOVING VIDEO DESIGN
===================================================== */

.youtube-modal {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.72);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.youtube-modal.active {

    opacity: 1;

    visibility: visible;
}


/* POPUP BOX */

.youtube-modal-box {

    position: relative;

    width: 900px;

    max-width: 95vw;

    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.45);

    transform: scale(0.94);

    transition:
        transform 0.3s ease;
}


.youtube-modal.active .youtube-modal-box {

    transform: scale(1);
}


/* CLOSE BUTTON */

.youtube-close {

    position: absolute;

    top: 12px;

    right: 12px;

    z-index: 20;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background: rgba(20, 20, 20, 0.72);

    color: #ffffff;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.25s ease;
}


.youtube-close:hover {

    background: #e51b3e;

    transform: rotate(90deg);
}


/* VIDEO */

.youtube-video-container {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    background: #000000;
}


.youtube-video-container iframe {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    border: 0;
}


/* FOOTER */

.youtube-modal-footer {

    min-height: 68px;

    padding: 12px 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    background: #ffffff;
}


.youtube-modal-footer div {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.youtube-modal-footer strong {

    color: #101a35;

    font-size: 16px;
}


.youtube-modal-footer span {

    color: #777777;

    font-size: 12px;
}


/* WATCH ON YOUTUBE */

.watch-youtube {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 18px;

    border-radius: 6px;

    background: #ff0033;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition: 0.25s ease;
}


.watch-youtube span {

    color: #ffffff;

    font-size: 14px;
}


.watch-youtube:hover {

    background: #cc0029;

    transform: translateY(-1px);
}


/* MOBILE */

@media (max-width: 650px) {

    .youtube-modal {

        padding: 12px;
    }


    .youtube-modal-box {

        width: 100%;

        border-radius: 8px;
    }


    .youtube-close {

        width: 36px;

        height: 36px;

        top: 8px;

        right: 8px;

        font-size: 25px;
    }


    .youtube-modal-footer {

        flex-direction: column;

        align-items: stretch;

        padding: 14px;
    }


    .youtube-modal-footer div {

        text-align: center;

        align-items: center;
    }


    .watch-youtube {

        justify-content: center;

        width: 100%;

        box-sizing: border-box;
    }

}


/* =====================================================
   VIDEO MARQUEE FIX
   JavaScript controls the movement, so disable the
   original CSS keyframe animation.
===================================================== */
.video-track {
  animation: none !important;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* =========================================================
   TNPSC ENQUIRY SECTION
========================================================= */

.tnpsc-enquiry-section {
  width: 100%;
  padding: 70px 20px 80px;
  background: #f7f7f7;
}

.tnpsc-enquiry-container {
  width: min(1020px, 100%);
  margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.tnpsc-section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.tnpsc-section-heading h2 {
  margin: 0;
  color: #101a35;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 500;
}


/* =========================================================
   TWO COLUMN
========================================================= */

.tnpsc-enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}


/* =========================================================
   LEFT COURSE CARD
========================================================= */

.tnpsc-course-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 25px;
  overflow: hidden;

  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.06);
}


/* IMAGE */

.tnpsc-course-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.tnpsc-course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* CONTENT */

.tnpsc-course-content {
  padding: 25px;
}

.tnpsc-course-content h3 {
  margin: 0 0 22px;
  text-align: center;

  color: #101a35;

  font-size: 27px;
  font-weight: 600;
}


/* =========================================================
   FEATURES
========================================================= */

.tnpsc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 25px;
  row-gap: 20px;

  margin-bottom: 28px;
}

.tnpsc-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: #102044;

  font-size: 13px;
  line-height: 1.45;
}

.feature-check {
  flex-shrink: 0;

  width: 16px;
  height: 16px;

  border: 2px solid #9bc9bb;
  border-radius: 50%;

  color: #299e7d;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 9px;
  font-weight: 900;

  margin-top: 1px;
}


/* =========================================================
   PRICE
========================================================= */

.tnpsc-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.tnpsc-price-box {
  background: #f7f7f7;

  border-radius: 9px;

  min-height: 115px;

  padding: 16px 10px;

  text-align: center;
}

.tnpsc-price-box h4 {
  margin: 0;

  color: #065e57;

  font-size: 14px;

  line-height: 1.35;
}

.tnpsc-price {
  margin-top: 8px;
  color: #c51627;
  font-size: 23px;
  font-weight: 700;
}

.tnpsc-price-note {
  text-align: center;

  margin: 10px 0 28px;

  color: #555;

  font-size: 12px;
}


/* JOIN BUTTON */

.tnpsc-join-btn {
  width: 100%;

  border: none;
  border-radius: 9px;

  padding: 14px;

  background: #ff7a1a;

  color: #fff;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.25s ease;
}

.tnpsc-join-btn:hover {
  background: #ff0033;
  transform: translateY(-1px);
}


/* =========================================================
   RIGHT FORM CARD
========================================================= */

.tnpsc-form-card {
  background: #fff;

  border-radius: 20px;

  padding: 27px 25px 24px;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.18);
}


/* FORM HEADING */

.tnpsc-form-heading {
  text-align: center;

  margin-bottom: 25px;
}

.tnpsc-form-heading h3 {
  margin: 0;

  color: #005b55;

  font-size: 21px;

  font-weight: 600;
}

.tnpsc-form-heading p {
  margin: 7px 0 0;

  color: #777;

  font-size: 12px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.tnpsc-form-group {
  margin-bottom: 17px;
}

.tnpsc-form-group label {
  display: block;

  margin-bottom: 7px;

  color: #101a35;

  font-size: 13px;

  font-weight: 500;
}


/* INPUT */

.tnpsc-form-group input,
.tnpsc-form-group select {
  width: 100%;

  height: 41px;

  box-sizing: border-box;

  border: 1px solid #9b9b9b;

  border-radius: 7px;

  background: #fff;

  padding: 0 12px;

  color: #24324a;

  font-size: 13px;

  outline: none;

  transition: 0.2s ease;
}

.tnpsc-form-group input::placeholder {
  color: #788294;
}

.tnpsc-form-group input:focus,
.tnpsc-form-group select:focus {
  border-color: #299e7d;

  box-shadow:
    0 0 0 2px rgba(41, 158, 125, 0.08);
}


/* SELECT */

.tnpsc-form-group select {
  cursor: pointer;
}


/* =========================================================
   MOBILE NUMBER
========================================================= */

.mobile-input-wrapper {
  display: flex;

  height: 41px;

  border: 1px solid #9b9b9b;

  border-radius: 7px;

  overflow: hidden;

  background: #fff;
}

.mobile-input-wrapper:focus-within {
  border-color: #299e7d;

  box-shadow:
    0 0 0 2px rgba(41, 158, 125, 0.08);
}

.country-code {
  display: flex;

  align-items: center;

  padding: 0 12px;

  background: #f4f4f4;

  color: #26354c;

  font-size: 13px;

  border-right: 1px solid #ddd;
}

.mobile-input-wrapper input {
  border: 0 !important;

  border-radius: 0 !important;

  height: 100% !important;

  box-shadow: none !important;
}


/* =========================================================
   CAPTCHA
========================================================= */

.captcha-wrapper {
  display: grid;

  grid-template-columns: 120px 42px 1fr;

  gap: 7px;

  align-items: center;
}


.captcha-code {
  height: 41px;

  border-radius: 7px;

  background:
    repeating-linear-gradient(
      -45deg,
      #eef3ef,
      #eef3ef 4px,
      #d9e8e0 4px,
      #d9e8e0 8px
    );

  border: 1px solid #b7cbc1;

  color: #075b50;

  font-size: 18px;

  font-weight: 800;

  letter-spacing: 4px;

  display: flex;

  align-items: center;

  justify-content: center;

  user-select: none;

  font-family: Georgia, serif;

  font-style: italic;
}


.captcha-refresh {
  height: 41px;

  border: 1px solid #b7cbc1;

  border-radius: 7px;

  background: #f2f7f4;

  color: #08725f;

  font-size: 21px;

  cursor: pointer;

  transition: 0.2s ease;
}

.captcha-refresh:hover {
  background: #dceee7;

  transform: rotate(15deg);
}


/* =========================================================
   ERROR MESSAGE
========================================================= */

.tnpsc-form-message {
  min-height: 18px;

  margin-bottom: 5px;

  color: #d93434;

  font-size: 12px;

  text-align: center;
}


/* =========================================================
   SUBMIT
========================================================= */

.tnpsc-submit-btn {
  width: 100%;

  height: 46px;

  border: 0;

  border-radius: 10px;

  background: #d7d7d7;

  color: #fff;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.25s ease;
}

.tnpsc-submit-btn:hover {
  background: #2cad82;
}

.tnpsc-submit-btn.active {
  background: #2cad82;
}


/* =========================================================
   SUCCESS POPUP
========================================================= */

.tnpsc-success-popup {
  position: fixed;

  inset: 0;

  z-index: 999999;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(0, 0, 0, 0.65);
}

.tnpsc-success-popup.active {
  display: flex;
}

.tnpsc-success-box {
  width: min(400px, 100%);

  background: #fff;

  border-radius: 18px;

  padding: 35px 25px;

  text-align: center;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.25);
}

.success-icon {
  width: 55px;
  height: 55px;

  margin: 0 auto 15px;

  border-radius: 50%;

  background: #2cad82;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 700;
}

.tnpsc-success-box h3 {
  margin: 0 0 8px;

  color: #101a35;

  font-size: 24px;
}

.tnpsc-success-box p {
  margin: 0 0 20px;

  color: #666;

  font-size: 14px;

  line-height: 1.6;
}

.tnpsc-success-box button {
  border: 0;

  background: #2cad82;

  color: #fff;

  padding: 11px 30px;

  border-radius: 8px;

  font-weight: 700;

  cursor: pointer;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .tnpsc-enquiry-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .tnpsc-enquiry-section {
    padding: 50px 14px 60px;
  }

  .tnpsc-section-heading {
    margin-bottom: 30px;
  }

  .tnpsc-section-heading h2 {
    font-size: 25px;
  }


  .tnpsc-course-image {
    height: 210px;
  }


  .tnpsc-course-content {
    padding: 20px 17px;
  }

  .tnpsc-course-content h3 {
    font-size: 23px;
  }


  .tnpsc-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }


  .tnpsc-price-grid {
    grid-template-columns: 1fr;
  }


  .tnpsc-form-card {
    padding: 23px 17px;
    border-radius: 15px;
  }


  .tnpsc-form-heading h3 {
    font-size: 20px;
  }


  .captcha-wrapper {
    grid-template-columns: 105px 40px 1fr;
  }


  .captcha-code {
    font-size: 16px;
    letter-spacing: 3px;
  }

}
/* =========================================================
   ENQUIRY FORM - ORANGE + RED SHINING GLOW
========================================================= */

/* =========================================================
   ENQUIRY FORM - INNER COLOR + WHITE GLOWING BORDER
========================================================= */

.tnpsc-form-card {
  position: relative;
  z-index: 1;

  /* Inside box color */
  /* background: #ffd1bd !important; */

  /* White border */
  border: 2px solid #ffffff !important;
  border-radius: 20px;

  /* Orange + red outer glow */
  box-shadow:
    0 0 8px #ffffff,
    0 0 18px rgba(255, 122, 26, 0.85),
    0 0 35px rgba(197, 22, 39, 0.65),
    0 10px 30px rgba(0, 0, 0, 0.20);

  animation: formWhiteGlow 3s ease-in-out infinite;
}


/* Remove previous gradient overlay */
.tnpsc-form-card::before {
  display: none !important;
}


/* =========================================================
   WHITE BORDER SHINING EFFECT
========================================================= */

@keyframes formWhiteGlow {

  0% {
    border-color: #ffffff;

    box-shadow:
      0 0 6px #ffffff,
      0 0 15px rgba(255, 122, 26, 0.55),
      0 0 28px rgba(197, 22, 39, 0.35),
      0 10px 30px rgba(0, 0, 0, 0.20);
  }

  50% {
    border-color: #ffffff;

    box-shadow:
      0 0 12px #ffffff,
      0 0 28px rgba(255, 122, 26, 0.95),
      0 0 50px rgba(197, 22, 39, 0.75),
      0 10px 30px rgba(0, 0, 0, 0.20);
  }

  100% {
    border-color: #ffffff;

    box-shadow:
      0 0 6px #ffffff,
      0 0 15px rgba(255, 122, 26, 0.55),
      0 0 28px rgba(197, 22, 39, 0.35),
      0 10px 30px rgba(0, 0, 0, 0.20);
  }

}


/* Keep form contents above the glow */

.tnpsc-form-card > * {
  position: relative;
  z-index: 2;
}

/* =========================================================
   TNPSC HIGHLIGHTED BOOKS SECTION
========================================================= */

.tnpsc-books-section {
  position: relative;
  width: 100%;
  padding: 85px 20px 90px;
  background: #ffffff;
  overflow: hidden;
}


/* CONTAINER */

.tnpsc-books-container {
  max-width: 1250px;
  margin: auto;
}


/* =========================================================
   HEADING
========================================================= */

.tnpsc-books-heading {
  text-align: center;
  margin-bottom: 55px;
}

.tnpsc-books-heading span {
  display: inline-block;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;

  color: #ff7a1a;

  margin-bottom: 10px;
}

.tnpsc-books-heading h2 {
  margin: 0;

  font-size: 40px;
  line-height: 1.2;

  font-weight: 700;

  color: #101a35;
}

.tnpsc-books-heading h2 strong {
  color: #c51627;
}

.tnpsc-books-heading p {
  max-width: 650px;

  margin: 15px auto 0;

  font-size: 16px;
  line-height: 1.7;

  color: #666;
}


/* =========================================================
   BOOK GRID
========================================================= */

.tnpsc-books-slider {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 30px;

  align-items: end;
}


/* =========================================================
   BOOK CARD
========================================================= */

.tnpsc-book-card {
  position: relative;

  text-align: center;

  cursor: pointer;

  transition:
    transform 0.4s ease;
}

.tnpsc-book-card:hover {
  transform: translateY(-12px);
}


/* =========================================================
   BOOK VISUAL
========================================================= */

.book-visual {
  position: relative;

  height: 390px;

  display: flex;

  justify-content: center;
  align-items: center;

  overflow: hidden;

  border-radius: 20px;
}


/* =========================================================
   BLUE / TURQUOISE SHAPE
========================================================= */

.book-shape {
  position: absolute;

  width: 88%;
  height: 72%;

  bottom: 25px;
  left: 6%;

  border-radius:
    25px 100px 100px 25px;

  background:
    linear-gradient(
      135deg,
      #55dfc0,
      #1ea6d7
    );

  opacity: 0.95;

  transform: rotate(-2deg);

  z-index: 0;
}


/* =========================================================
   WHITE INNER CIRCLE
========================================================= */

.book-shape::after {
  content: "";

  position: absolute;

  width: 58%;
  height: 90%;

  right: -8%;

  top: 5%;

  border-radius: 50%;

  background: #ffffff;

  opacity: 0.95;
}


/* =========================================================
   BOOK IMAGE
========================================================= */

.book-image {
  position: relative;

  z-index: 3;

  max-width: 67%;
  max-height: 340px;

  object-fit: contain;

  filter:
    drop-shadow(
      12px 15px 10px
      rgba(0, 0, 0, 0.22)
    );

  transform:
    translateY(-5px)
    rotate(-1deg);

  animation:
    bookFloat 4s ease-in-out infinite;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}


/* Hover */

.tnpsc-book-card:hover .book-image {
  transform:
    translateY(-18px)
    scale(1.04)
    rotate(0deg);

  filter:
    drop-shadow(
      18px 25px 18px
      rgba(0, 0, 0, 0.28)
    );
}


/* =========================================================
   FLOATING ANIMATION
========================================================= */

@keyframes bookFloat {

  0% {
    transform:
      translateY(-5px)
      rotate(-1deg);
  }

  50% {
    transform:
      translateY(-14px)
      rotate(1deg);
  }

  100% {
    transform:
      translateY(-5px)
      rotate(-1deg);
  }

}


/* =========================================================
   SOFT GLOW
========================================================= */

.book-glow {
  position: absolute;

  width: 150px;
  height: 150px;

  left: 50%;
  top: 40%;

  transform:
    translate(-50%, -50%);

  background:
    rgba(255, 255, 255, 0.75);

  filter: blur(35px);

  border-radius: 50%;

  z-index: 1;

  animation:
    bookLight 4s ease-in-out infinite;
}

@keyframes bookLight {

  0% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.65;
  }

  100% {
    opacity: 0.25;
  }

}


/* =========================================================
   RED MEDIUM BADGE
========================================================= */

.medium-badge {
  position: absolute;

  left: 0;
  bottom: 25px;

  z-index: 5;

  width: 125px;
  height: 125px;

  display: flex;

  align-items: center;
  justify-content: center;

  text-align: left;

  padding-left: 15px;

  color: #ffffff;

  font-size: 15px;
  line-height: 1.45;

  font-weight: 600;

  background:
    #ff1717;

  border-radius:
    0 100% 0 0;

  box-shadow:
    5px 5px 15px
    rgba(197, 22, 39, 0.25);
}


/* =========================================================
   BOOK TITLE
========================================================= */

.tnpsc-book-card h3 {
  margin: 18px 0 0;

  color: #222;

  font-size: 19px;

  font-weight: 600;
}


/* =========================================================
   MORE MATERIALS
========================================================= */

.books-more {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  margin-top: 55px;
}

.books-more span {

  width: 60px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #ff7a1a
    );
}

.books-more span:last-child {

  background:
    linear-gradient(
      90deg,
      #c51627,
      transparent
    );
}

.books-more p {

  margin: 0;

  font-size: 15px;

  color: #777;

  font-weight: 500;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .tnpsc-books-slider {
    grid-template-columns:
      repeat(2, 1fr);

    max-width: 800px;

    margin: auto;
  }

}


@media (max-width: 600px) {

  .tnpsc-books-section {
    padding:
      60px 15px 65px;
  }


  .tnpsc-books-heading {
    margin-bottom: 35px;
  }


  .tnpsc-books-heading h2 {
    font-size: 28px;
  }


  .tnpsc-books-heading p {
    font-size: 14px;
  }


  .tnpsc-books-slider {

    grid-template-columns:
      repeat(2, 1fr);

    gap: 12px;
  }


  .book-visual {
    height: 270px;
  }


  .book-image {
    max-width: 70%;
    max-height: 230px;
  }


  .medium-badge {

    width: 82px;
    height: 82px;

    bottom: 15px;

    padding-left: 9px;

    font-size: 10px;
  }


  .tnpsc-book-card h3 {
    font-size: 14px;
    margin-top: 12px;
  }


  .books-more {
    margin-top: 35px;
  }

  .books-more p {
    font-size: 12px;
    text-align: center;
  }

}
/* =========================================================
   AUTOMATIC BOOK HIGHLIGHT
========================================================= */

.tnpsc-book-card.active-book {
  transform: translateY(-10px);
}

.tnpsc-book-card.active-book .book-image {
  transform:
    translateY(-18px)
    scale(1.05)
    rotate(0deg);

  filter:
    drop-shadow(
      18px 25px 20px
      rgba(0, 0, 0, 0.28)
    );
}

.tnpsc-book-card.active-book .book-shape {
  box-shadow:
    0 0 25px
    rgba(53, 202, 190, 0.30);
}
/* =====================================================
   EVENTS / ACHIEVEMENTS GALLERY
===================================================== */

.events-gallery-section {
  width: 100%;
  padding: 40px 0 70px;
  background: #ffffff;
  overflow: hidden;
  background-color: #101a35;
}


/* MAIN CONTAINER */

.events-gallery-container {
  width: 100%;
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 25px;
}


/* FOUR CARDS */

.events-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}


/* CARD */

.event-card {
  position: relative;

  background: #ffffff;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

  cursor: pointer;
}


/* HOVER */

.event-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.16);
}


/* IMAGE AREA */

.event-image {
  width: 100%;

  height: 300px;

  overflow: hidden;

  background: #f5f5f5;
}


/* IMAGE */

.event-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}


/* IMAGE HOVER */

.event-card:hover .event-image img {
  transform: scale(1.04);
}


/* RED TITLE */

.event-title {
  width: 100%;

  min-height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 10px 12px;

  background: #a90000;

  color: #ffffff;

  font-size: 18px;

  font-weight: 700;

  text-align: center;

  line-height: 1.25;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

  .events-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .event-image {
    height: 280px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .events-gallery-section {
    padding: 30px 0 50px;
  }

  .events-gallery-container {
    padding: 0 15px;
  }

  .events-gallery {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .event-image {
    height: 260px;
  }

  .event-title {
    min-height: 55px;
    font-size: 16px;
  }

}
/* =========================================================
   OTHER COURSES SECTION
========================================================= */

.other-courses-section {
  width: 100%;
  padding: 70px 0 65px;

  background:
    linear-gradient(
      180deg,
      #f7f8fa 0%,
      #f3f5f8 100%
    );

  overflow: hidden;
}


.other-courses-container {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  padding: 0 25px;
}


/* =========================================================
   HEADING
========================================================= */

.other-courses-heading {
  text-align: center;

  margin-bottom: 45px;
}

.other-courses-heading h2 {
  margin: 0;

  color: #101a35;

  font-size: 36px;

  line-height: 1.2;

  font-weight: 700;
}


/* =========================================================
   SLIDER
========================================================= */

.course-slider-wrapper {
  position: relative;

  display: flex;

  align-items: center;

  width: 100%;
}


.course-slider-viewport {
  width: 100%;

  overflow: hidden;

  margin: 0 45px;
}


.course-slider-track {
  display: flex;

  transition:
    transform 0.55s
    cubic-bezier(0.4, 0, 0.2, 1);

  will-change: transform;
}


/* =========================================================
   EACH SLIDE
========================================================= */

.course-slide {
  flex: 0 0 33.333333%;

  box-sizing: border-box;

  padding: 0 10px;
}


/* =========================================================
   COURSE CARD
========================================================= */

.course-card {
  width: 100%;

  min-height: 505px;

  background: #ffffff;

  border-radius: 15px;

  overflow: hidden;

  box-shadow:
    0 4px 18px
    rgba(16, 26, 53, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.course-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 15px 35px
    rgba(16, 26, 53, 0.15);
}


/* =========================================================
   COURSE IMAGE
========================================================= */

.course-image {
  position: relative;

  width: 100%;

  height: 215px;

  overflow: hidden;

  background: #e8edf4;
}


.course-image::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 55%;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(16, 26, 53, 0.03)
    );
}


.course-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}


.course-card:hover .course-image img {
  transform: scale(1.05);
}


/* =========================================================
   CONTENT
========================================================= */

.course-content {
  padding: 25px 20px 20px;
}


/* =========================================================
   TAG
========================================================= */

.course-tag {
  display: inline-block;

  padding: 5px 11px;

  border-radius: 20px;

  background: #fff1e8;

  color: #c51627;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 10px;
}


/* =========================================================
   TITLE
========================================================= */

.course-content h3 {
  margin: 0 0 6px;

  color: #101a35;

  font-size: 21px;

  line-height: 1.25;

  font-weight: 700;
}


/* =========================================================
   SUBTITLE
========================================================= */

.course-subtitle {
  margin: 0 0 13px;

  color: #666;

  font-size: 13px;

  line-height: 1.5;
}


/* =========================================================
   POINTS
========================================================= */

.course-points {
  border-bottom: 1px solid #e7e9ed;

  margin-bottom: 8px;
}


.course-points div {
  padding: 8px 0;

  border-top: 1px solid #edf0f3;

  color: #444;

  font-size: 12.5px;

  line-height: 1.4;
}


.course-points div::first-letter {
  color: #ff7a1a;
}


/* =========================================================
   BUTTON
========================================================= */

.course-button {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  width: 100%;

  min-height: 45px;

  margin-top: 12px;

  text-decoration: none;

  color: #ff7a1a;

  font-size: 13px;

  font-weight: 700;

  border-radius: 8px;

  transition:
    color 0.25s ease,
    background 0.25s ease;
}


.course-button span {
  font-size: 22px;

  line-height: 1;

  transition:
    transform 0.25s ease;
}


.course-button:hover {
  color: #c51627;

  background: #fff5ef;
}


.course-button:hover span {
  transform: translateX(4px);
}


/* =========================================================
   ARROWS
========================================================= */

.course-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: none;

  border-radius: 50%;

  background: #ffffff;

  color: #101a35;

  font-size: 22px;

  line-height: 1;

  cursor: pointer;

  box-shadow:
    0 3px 12px
    rgba(0, 0, 0, 0.12);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}


.course-arrow:hover {
  background: #ff7a1a;

  color: #ffffff;

  transform:
    translateY(-50%)
    scale(1.08);
}


.course-prev {
  left: 0;
}


.course-next {
  right: 0;
}


/* =========================================================
   DOTS
========================================================= */

.course-dots {

  display: flex;

  justify-content: center;
  align-items: center;

  gap: 7px;

  margin-top: 25px;
}


.course-dot {

  width: 8px;
  height: 8px;

  padding: 0;

  border: none;

  border-radius: 50%;

  background: #d2d5db;

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}


.course-dot.active {

  width: 25px;

  border-radius: 10px;

  background: #ff7a1a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .course-slide {
    flex: 0 0 50%;
  }

  .course-image {
    height: 220px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .other-courses-section {
    padding: 50px 0;
  }


  .other-courses-container {
    padding: 0 15px;
  }


  .other-courses-heading {
    margin-bottom: 30px;
  }


  .other-courses-heading h2 {
    font-size: 28px;
  }


  .course-slider-viewport {
    margin: 0 35px;
  }


  .course-slide {
    flex: 0 0 100%;

    padding: 0;
  }


  .course-card {
    min-height: auto;
  }


  .course-image {
    height: 210px;
  }


  .course-content {
    padding: 22px 18px 18px;
  }


  .course-content h3 {
    font-size: 20px;
  }


  .course-arrow {
    width: 36px;
    height: 36px;

    font-size: 18px;
  }


  .course-prev {
    left: -2px;
  }


  .course-next {
    right: -2px;
  }

}

/* ================================
   MORE STUDY MATERIALS BUTTON
================================ */

.books-more {
  text-align: center;
  margin-top: 35px;
}

.more-books-btn {
  border: none;
  outline: none;
  cursor: pointer;

  padding: 13px 30px;

  background: linear-gradient(
    135deg,
    #ff7a1a,
    #c51627
  );

  color: #ffffff;

  font-size: 16px;
  font-weight: 700;

  border-radius: 30px;

  box-shadow:
    0 8px 20px rgba(197, 22, 39, 0.25);

  transition: all 0.3s ease;
}

.more-books-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 28px rgba(255, 122, 26, 0.40);
}

.more-books-btn.active {
  background: linear-gradient(
    135deg,
    #c51627,
    #ff7a1a
  );
}


/* ================================
   HIDDEN BOOKS
================================ */

.tnpsc-more-books {
  display: none;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 35px 24px;

  margin-top: 45px;

  animation: booksReveal 0.6s ease;
}

.tnpsc-more-books.show {
  display: grid;
}

@keyframes booksReveal {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 1000px) {

  .tnpsc-more-books {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 25px 18px;
  }

}


@media (max-width: 600px) {

  .tnpsc-more-books {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .more-books-btn {
    width: auto;
    padding: 12px 25px;
    font-size: 15px;
  }

}
/* =========================================================
   STUDENT REVIEWS SECTION
========================================================= */

.student-reviews {
  position: relative;
  padding: 44px 20px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 171, 114, 0.15), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(16, 26, 53, 0.10), transparent 30%),
    #f8fafc;
  overflow: hidden;
}


/* Decorative circles */

.student-reviews::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 35px solid rgba(255, 171, 114, 0.08);
  top: -100px;
  left: -100px;
}

.student-reviews::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 30px solid rgba(16, 26, 53, 0.06);
  bottom: -100px;
  right: -80px;
}


.reviews-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.reviews-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.reviews-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e97832;
  margin-bottom: 12px;
}

.reviews-heading h2 {
  margin: 0;
  color: #101a35;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 800;
}

.reviews-heading h2 strong {
  color: #e97832;
}

.reviews-heading p {
  margin: 18px auto 0;
  max-width: 680px;
  color: #667085;
  font-size: 16px;
  line-height: 1.8;
}


/* =========================================================
   SLIDER
========================================================= */

.reviews-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}


.reviews-slider {
  width: 100%;
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}


/* =========================================================
   REVIEW CARD
========================================================= */

.review-card {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;

  background: #ffffff;
  border-radius: 22px;

  padding: 32px 38px;

  border: 1px solid #e8edf4;

  box-shadow:
    0 15px 45px rgba(16, 26, 53, 0.08);

  position: relative;
  overflow: hidden;
}


/* Orange top line */

.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;

  background: linear-gradient(
    90deg,
    #ffab72,
    #e97832,
    #101a35
  );
}


/* =========================================================
   PROFILE
========================================================= */

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}


.student-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}


.student-avatar {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 21px;
  font-weight: 800;

  border: 4px solid #ffffff;

  box-shadow:
    0 5px 18px rgba(16, 26, 53, 0.15);
}


.avatar-orange {
  background: linear-gradient(135deg, #ffab72, #e97832);
}

.avatar-blue {
  background: linear-gradient(135deg, #315a9d, #101a35);
}

.avatar-purple {
  background: linear-gradient(135deg, #8067c7, #4d3a85);
}

.avatar-green {
  background: linear-gradient(135deg, #42a878, #176b48);
}


.student-info h3 {
  margin: 0 0 5px;

  color: #101a35;
  font-size: 16px;
  font-weight: 750;
}


.student-info span {
  color: #8a94a6;
  font-size: 13px;
}


/* =========================================================
   REVIEW BADGE
========================================================= */

.review-badge {
  padding: 8px 13px;

  border-radius: 30px;

  background: #fff4ec;
  color: #df6f2b;

  font-size: 12px;
  font-weight: 700;

  white-space: nowrap;
}


/* =========================================================
   STAR RATING
========================================================= */

.review-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.review-rating span {
  color: #f4a623;
  font-size: 19px;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.review-text {
  margin: 0;

  color: #475467;

  font-size: 17px;
  line-height: 1.9;

  max-width: 980px;
}


/* =========================================================
   REVIEW FOOTER
========================================================= */

.review-footer {
  margin-top: 27px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: #7b8495;
  font-size: 13px;
  font-weight: 600;
}


.review-quote {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #101a35;
  color: #ffffff;

  border-radius: 50%;

  font-size: 22px;
  font-family: Georgia, serif;
}


/* =========================================================
   ARROWS
========================================================= */

.review-arrow {
  position: absolute;
  z-index: 5;

  width: 48px;
  height: 48px;

  border-radius: 50%;

  border: none;

  background: #ffffff;
  color: #101a35;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;

  cursor: pointer;

  box-shadow:
    0 8px 25px rgba(16, 26, 53, 0.15);

  transition: all 0.25s ease;
}


.review-arrow:hover {
  background: #101a35;
  color: #ffffff;
  transform: scale(1.08);
}


.review-prev {
  left: -24px;
}


.review-next {
  right: -24px;
}


/* =========================================================
   DOTS
========================================================= */

.review-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;

  margin-top: 30px;
}


.review-dot {
  width: 9px;
  height: 9px;

  border: none;
  padding: 0;

  border-radius: 50%;

  background: #ccd3dd;

  cursor: pointer;

  transition: all 0.3s ease;
}


.review-dot.active {
  width: 28px;
  border-radius: 20px;
  background: #e97832;
}


/* =========================================================
   BOTTOM INFO
========================================================= */

.reviews-bottom {
  margin-top: 45px;

  padding: 22px 28px;

  background: #101a35;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 35px;

  color: #ffffff;
}


.review-bottom-item {
  display: flex;
  flex-direction: column;
  gap: 5px;

  text-align: center;
}


.review-bottom-item strong {
  font-size: 15px;
  font-weight: 750;
}


.review-bottom-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}


.review-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .student-reviews {
    padding: 70px 20px;
  }

  .review-prev {
    left: -10px;
  }

  .review-next {
    right: -10px;
  }

  .review-card {
    padding: 28px 30px;
  }

  .reviews-bottom {
    gap: 20px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .student-reviews {
    padding: 60px 15px;
  }


  .reviews-heading {
    margin-bottom: 35px;
  }


  .reviews-heading h2 {
    font-size: 31px;
  }


  .reviews-heading p {
    font-size: 14px;
    line-height: 1.7;
  }


  .review-card {
    padding: 27px 22px;
    border-radius: 18px;
  }


  .review-card-top {
    align-items: flex-start;
  }


  .student-avatar {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }


  .student-info h3 {
    font-size: 14px;
  }


  .student-info span {
    font-size: 12px;
  }


  .review-badge {
    font-size: 10px;
    padding: 7px 9px;
  }


  .review-text {
    font-size: 15px;
    line-height: 1.75;
  }


  .review-rating span {
    font-size: 17px;
  }


  .review-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }


  .review-prev {
    left: -5px;
  }


  .review-next {
    right: -5px;
  }


  .reviews-bottom {
    flex-direction: column;
    gap: 18px;
    padding: 22px 15px;
  }


  .review-divider {
    width: 60%;
    height: 1px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .review-card {
    padding: 24px 18px;
  }

  .review-card-top {
    gap: 10px;
  }

  .review-badge {
    display: none;
  }

  .review-text {
    font-size: 14px;
  }

}
/* =========================================================
   STUDENT REVIEWS
========================================================= */

.student-reviews {

  position: relative;

  padding: 44px 20px;

  background:
    linear-gradient(
      135deg,
      #fffaf6 0%,
      #f7f9fc 50%,
      #f4f7fb 100%
    );

  overflow: hidden;
}


/* =========================================================
   ANIMATED BACKGROUND CIRCLES
========================================================= */

.review-bg-shape {

  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  z-index: 0;

  filter: blur(1px);

  opacity: 0.45;
}


/* Large orange circle */

.review-circle-1 {

  width: 330px;
  height: 330px;

  top: -150px;
  left: -100px;

  background:
    radial-gradient(
      circle,
      rgba(255,171,114,0.32) 0%,
      rgba(255,171,114,0.08) 55%,
      transparent 72%
    );

  animation: reviewFloatOne 14s ease-in-out infinite;
}


/* Blue circle */

.review-circle-2 {

  width: 400px;
  height: 400px;

  right: -180px;
  top: 15%;

  background:
    radial-gradient(
      circle,
      rgba(16,26,53,0.14) 0%,
      rgba(16,26,53,0.05) 55%,
      transparent 72%
    );

  animation: reviewFloatTwo 18s ease-in-out infinite;
}


/* Small orange circle */

.review-circle-3 {

  width: 180px;
  height: 180px;

  left: 15%;
  bottom: -80px;

  background:
    radial-gradient(
      circle,
      rgba(255,171,114,0.20),
      transparent 70%
    );

  animation: reviewFloatThree 11s ease-in-out infinite;
}


/* Small blue circle */

.review-circle-4 {

  width: 220px;
  height: 220px;

  right: 20%;
  bottom: 8%;

  background:
    radial-gradient(
      circle,
      rgba(53,89,150,0.10),
      transparent 70%
    );

  animation: reviewFloatFour 15s ease-in-out infinite;
}


/* =========================================================
   CIRCLE ANIMATIONS
========================================================= */

@keyframes reviewFloatOne {

  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(90px, 55px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

}


@keyframes reviewFloatTwo {

  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-80px, 70px, 0) scale(0.92);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

}


@keyframes reviewFloatThree {

  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(70px, -45px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }

}


@keyframes reviewFloatFour {

  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-60px, -50px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }

}


/* =========================================================
   CONTAINER
========================================================= */

.reviews-container {

  position: relative;

  z-index: 2;

  max-width: 1250px;

  margin: 0 auto;

}


/* =========================================================
   HEADING
========================================================= */

.reviews-heading {

  text-align: center;

  max-width: 760px;

  margin: 0 auto 55px;

}


.reviews-kicker {

  display: inline-block;

  color: #e97832;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 12px;

}


.reviews-heading h2 {

  margin: 0;

  color: #101a35;

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.15;

  font-weight: 800;

}


.reviews-heading h2 strong {

  color: #e97832;

}


.reviews-heading p {

  margin: 18px auto 0;

  max-width: 680px;

  color: #667085;

  font-size: 16px;

  line-height: 1.8;

}


/* =========================================================
   SLIDER AREA
========================================================= */

.reviews-slider-area {

  position: relative;

  padding: 0 35px;

}


/* =========================================================
   VIEWPORT
========================================================= */

.reviews-viewport {

  width: 100%;

  overflow: hidden;

}


/* =========================================================
   TRACK
========================================================= */

.reviews-track {

  display: flex;

  gap: 24px;

  transition: transform 0.65s cubic-bezier(.22,.61,.36,1);

  will-change: transform;

}


/* =========================================================
   REVIEW CARD
========================================================= */

.review-card {

  flex: 0 0 calc((100% - 48px) / 3);

  min-width: 0;

  box-sizing: border-box;

  background: rgba(255,255,255,0.94);

  border: 1px solid rgba(16,26,53,0.08);

  border-radius: 22px;

  padding: 30px;

  position: relative;

  overflow: hidden;

  box-shadow:
    0 14px 40px rgba(16,26,53,0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

}


.review-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 22px 50px rgba(16,26,53,0.12);

}


/* Top orange line */

.review-card::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 4px;

  background:
    linear-gradient(
      90deg,
      #ffab72,
      #e97832,
      #101a35
    );

}


/* Small decorative circle */

.review-card::after {

  content: "";

  position: absolute;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  right: -45px;

  bottom: -45px;

  background: rgba(255,171,114,0.08);

}


/* =========================================================
   PROFILE
========================================================= */

.review-card-top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  margin-bottom: 22px;

}


.student-profile {

  display: flex;

  align-items: center;

  gap: 13px;

}


.student-avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;

  border-radius: 50%;

  overflow: hidden;

  background: #f1f3f6;

  border: 3px solid #ffffff;

  box-shadow:
    0 5px 16px rgba(16, 26, 53, 0.15);
}

.student-avatar img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;
}


.avatar-orange {

  background:
    linear-gradient(135deg,#ffab72,#e97832);

}


.avatar-blue {

  background:
    linear-gradient(135deg,#315a9d,#101a35);

}


.avatar-purple {

  background:
    linear-gradient(135deg,#8067c7,#4d3a85);

}


.avatar-green {

  background:
    linear-gradient(135deg,#42a878,#176b48);

}


.student-info h3 {

  margin: 0 0 4px;

  color: #101a35;

  font-size: 14px;

  line-height: 1.4;

  font-weight: 750;

}


.student-info span {

  color: #8a94a6;

  font-size: 12px;

}


/* =========================================================
   BADGE
========================================================= */

.review-badge {

  padding: 7px 10px;

  border-radius: 30px;

  background: #fff3ea;

  color: #df6f2b;

  font-size: 10px;

  font-weight: 750;

  white-space: nowrap;

}


/* =========================================================
   RATING
========================================================= */

.review-rating {

  display: flex;

  gap: 3px;

  margin-bottom: 15px;

}


.review-rating span {

  color: #f3a623;

  font-size: 17px;

}


/* =========================================================
   TEXT
========================================================= */

.review-text {

  margin: 0;

  color: #475467;

  font-size: 14px;

  line-height: 1.8;

  min-height: 150px;

}


/* =========================================================
   FOOTER
========================================================= */

.review-footer {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 20px;

  color: #7b8495;

  font-size: 11px;

  font-weight: 650;

}


.review-quote {

  width: 29px;

  height: 29px;

  flex: 0 0 29px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #101a35;

  color: #fff;

  font-size: 20px;

  font-family: Georgia, serif;

}


/* =========================================================
   ARROWS
========================================================= */

.review-arrow {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  width: 48px;

  height: 48px;

  border: none;

  border-radius: 50%;

  background: #ffffff;

  color: #101a35;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  font-size: 17px;

  box-shadow:
    0 8px 25px rgba(16,26,53,0.15);

  transition: all 0.25s ease;

}


.review-arrow:hover {

  background: #101a35;

  color: #ffffff;

  transform:
    translateY(-50%)
    scale(1.08);

}


.review-prev {

  left: -2px;

}


.review-next {

  right: -2px;

}


/* =========================================================
   DOTS
========================================================= */

.review-dots {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  margin-top: 30px;

}


.review-dot {

  width: 9px;

  height: 9px;

  padding: 0;

  border: none;

  border-radius: 50%;

  background: #cbd3df;

  cursor: pointer;

  transition: all 0.3s ease;

}


.review-dot.active {

  width: 28px;

  border-radius: 20px;

  background: #e97832;

}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.reviews-bottom {

  margin-top: 45px;

  padding: 23px 30px;

  border-radius: 18px;

  background: #101a35;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 35px;

  box-shadow:
    0 12px 35px rgba(16,26,53,0.12);

}


.review-bottom-item {

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  gap: 5px;

}


.review-bottom-item strong {

  color: #fff;

  font-size: 14px;

}


.review-bottom-item span {

  color: rgba(255,255,255,0.65);

  font-size: 11px;

}


.review-divider {

  width: 1px;

  height: 40px;

  background: rgba(255,255,255,0.2);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .review-card {

    flex: 0 0 calc((100% - 24px) / 2);

  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .student-reviews {

    padding: 65px 15px;

  }


  .reviews-heading {

    margin-bottom: 35px;

  }


  .reviews-heading h2 {

    font-size: 32px;

  }


  .reviews-heading p {

    font-size: 14px;

    line-height: 1.7;

  }


  .reviews-slider-area {

    padding: 0 10px;

  }


  .review-card {

    flex: 0 0 100%;

    padding: 26px 22px;

  }


  .review-text {

    min-height: 0;

    font-size: 14px;

  }


  .review-badge {

    display: none;

  }


  .review-arrow {

    width: 40px;

    height: 40px;

    font-size: 14px;

  }


  .review-prev {

    left: -3px;

  }


  .review-next {

    right: -3px;

  }


  .reviews-bottom {

    flex-direction: column;

    gap: 18px;

    padding: 22px 15px;

  }


  .review-divider {

    width: 60%;

    height: 1px;

  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .student-profile {

    gap: 9px;

  }


  .student-avatar {

    width: 48px;

    height: 48px;

    flex-basis: 48px;

  }


  .student-info h3 {

    font-size: 13px;

  }


  .review-card {

    padding: 24px 18px;

  }

}


/* =========================================================
   RESPONSIVE NAVBAR
========================================================= */

/* Desktop */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.site-logo {
  width: 248px;
  height: 65px;
  display: block;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.email {
  white-space: nowrap;
  font-size: 13px;
  text-decoration: none;
}

.contact-btn {
  flex-shrink: 0;
}


/* =========================================================
   TABLET
   769px - 1000px
========================================================= */

@media (max-width: 1000px) {

  .header-main {
    padding-left: 20px;
    padding-right: 20px;
    gap: 15px;
  }

  .site-logo {
    width: 205px;
    height: 58px;
  }

  .header-right {
    gap: 12px;
  }

  .email {
    font-size: 11px;
  }

  .contact-btn {
    padding: 10px 13px;
    font-size: 12px;
  }

}


/* =========================================================
   MOBILE
   481px - 768px
========================================================= */

@media (max-width: 768px) {

  .header-main {
    width: 100%;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 15px;

    gap: 10px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .site-logo {
    width: 175px;
    height: 52px;
    object-fit: contain;
  }

  .header-right {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 8px;
  }

  .email {
    font-size: 5px;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 88px;
    height: 40px;

    padding: 0 11px;

    border-radius: 8px;

    font-size: 11px;
    line-height: 1.1;

    text-align: center;
  }

  .phone-icon {
    font-size: 12px;
    margin-right: 4px;
  }

}


/* =========================================================
   SMALL MOBILE
   360px - 480px
========================================================= */

@media (max-width: 480px) {

  .header-main {
    padding: 8px 12px;
    gap: 8px;
  }

  .site-logo {
    width: 145px;
    height: 46px;
  }

  .header-right {
    gap: 5px;
  }

  .contact-btn {
    min-width: 76px;
    height: 36px;

    padding: 0 8px;

    border-radius: 7px;

    font-size: 10px;
  }

  .phone-icon {
    font-size: 11px;
  }

}


/* =========================================================
   VERY SMALL DEVICES
   Below 360px
========================================================= */

@media (max-width: 359px) {

  .header-main {
    padding: 7px 9px;
  }

  .site-logo {
    width: 125px;
    height: 42px;
  }

  .contact-btn {
    min-width: 68px;
    height: 34px;

    padding: 0 6px;

    font-size: 9px;
  }

  .phone-icon {
    display: none;
  }

}