*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#1d1d1d;
  line-height:1.7;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

section{
  padding:100px 0;
}

h1,h2,h3{
  line-height:1.2;
}

h2{
  font-size:42px;
  margin-bottom:20px;
  color:#111827;
}

p{
  color:#555;
  font-size:16px;
}

/* BUTTON */

.btn{
  display:inline-block;
  background:#546EC8;
  color:#ffffff;
  padding:15px 32px;
  border-radius:14px;
  margin-top:28px;
  font-weight:700;
  transition:0.3s;
}

.btn:hover{
  opacity:0.92;
  transform:translateY(-2px);
}

/* NAVBAR */

nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#546EC8;
  backdrop-filter:blur(10px);
  border-bottom:1px solid #eee;
  z-index:999;
}

.nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo img{
  height:92px;
  width:auto;
  display:block;
}

.menu{
  display:flex;
  gap:18px;
}

.menu a{
  font-size:15px;
  font-weight:500;
  color:#ffffff;
  transition:0.3s;
}

.menu a:hover{
  opacity:0.8;
}

.menu a.active{
  color:#ffffff;
  font-weight:700;
  opacity:1;
}

/* MOBILE MENU */

.mobile-toggle{
  display:none;
  font-size:34px;
  cursor:pointer;
  color:#ffffff;
  font-weight:700;
}

.mobile-menu{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:#ffffff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:34px;
  z-index:9999;

  opacity:0;
  visibility:hidden;
  transition:0.3s;
}

.mobile-menu.active{
  opacity:1;
  visibility:visible;
}

.mobile-menu a{
  font-size:18px;
  font-weight:600;
  color:#111827;
  padding:12px 20px;
  margin:0;
}

.mobile-btn{
  background:#546EC8;
  color:#fff !important;
  padding:16px 30px;
  border-radius:14px;
  margin-top:20px;
}

.close-btn{
  position:absolute;
  top:30px;
  right:30px;
  font-size:38px;
  cursor:pointer;
  color:#546EC8;
  font-weight:700;
}

/* HERO */

.hero{
  min-height:75vh;
  display:flex;
  align-items:center;
  background:#ffffff;
  padding-top:180px;
}

.page-hero{
  min-height:auto;
  padding-top:180px;
  padding-bottom:70px;
}

.hero-content{
  max-width:760px;
}

.hero h1{
  font-size:58px;
  margin-bottom:28px;
  color:#111827;
}

.hero p{
  font-size:20px;
  max-width:650px;
  color:#555;
}



/* GRID */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:50px;
}

/* CARD */

.card{
  background:#fff;
  border-radius:24px;
  padding:35px;
  border:1px solid #f1f1f1;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.card h3{
  color:#546EC8;
  margin-bottom:15px;
}

/* BLUE SECTION */

.blue-section{
  background:#546EC8;
  color:#fff;
}

.blue-section h2,
.blue-section p{
  color:#fff;
}

.blue-section .card{
  background:#fff;
}

.blue-section .card p{
  color:#555;
}

.blue-section .card h3{
  color:#546EC8;
}

/* TESTIMONIAL */

.testimonial{
  background:#f8f9ff;
  padding:35px;
  border-radius:22px;
}

.testimonial strong{
  display:block;
  margin-top:20px;
  color:#546EC8;
}

/* BLOG */

.blog-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  background:rgba(84,110,200,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  font-size:24px;
}

.blog-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:22px;
  color:#546EC8;
  font-weight:600;
}

/* FAQ */

.faq-item{
  padding:28px 0;
  border-bottom:1px solid #e5e7eb;
}

.faq-item h3{
  margin-bottom:10px;
  color:#111827;
}

/* CONTACT */

.contact-box{
  background:#f8f9ff;
  padding:50px;
  border-radius:30px;
  margin-top:40px;
}

input,
textarea{
  width:100%;
  padding:16px;
  margin-bottom:20px;
  border-radius:14px;
  border:1px solid #ddd;
  font-family:'Inter',sans-serif;
  font-size:15px;
}

button{
  border:none;
  cursor:pointer;
}

/* FOOTER */

footer{
  background:#111827;
  padding:50px 0;
  text-align:center;
}

footer img{
  height:70px;
  margin-bottom:20px;
}

footer p{
  color:#cfcfcf;
}

/* MOBILE */

@media(max-width:768px){

  section{
    padding:80px 0;
  }

  .hero{
    padding-top:140px;
  }

  .hero h1{
    font-size:48px;
    line-height:1.15;
  }

  .hero p{
    font-size:18px;
  }

  h2{
    font-size:34px;
  }

  .menu{
    display:none;
  }

  .mobile-toggle{
    display:block;
  }

  .logo img{
    height:70px;
  }

}



/* TUTOR CARD */

.tutor-card{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:50px;
    align-items:start;
    margin-bottom:80px;
}

.tutor-card.reverse{
    grid-template-columns:1fr 380px;
}

.tutor-card.reverse .tutor-image{
    order:2;
}

.tutor-card.reverse .tutor-content{
    order:1;
}

/* IMAGE */

.tutor-image img{
    width:100%;
    max-width:280px;
    border-radius:20px;
    display:block;
}

.tutor-image{
    align-self:start;
}

/* CONTENT */

.tutor-content h3{
    font-size:38px;
    margin-bottom:12px;
    color:#111827;
}

.tutor-role{
    display:inline-block;
    margin-bottom:24px;
    font-weight:600;
    color:#5b6fd8;
    font-size:16px;
}

.tutor-content p{
    font-size:18px;
    line-height:1.9;
    color:#444;
    margin-bottom:24px;
}

/* BULLETS */

.tutor-points{
    padding-left:20px;
}

.tutor-points li{
    margin-bottom:14px;
    color:#333;
    line-height:1.7;
    font-size:17px;
}

/* TESTIMONIALS */

.testimonial-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-bottom:100px;
}

.testimonial-card{
    background:#fff;
    padding:32px;
    border-radius:24px;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-card p{
    line-height:1.8;
    color:#444;
    margin-bottom:18px;
    font-size:17px;
}

.testimonial-card h4{
    color:#111827;
    font-size:18px;
}

/* MOBILE */

@media(max-width:900px){

    .tutor-card,
    .tutor-card.reverse{
        grid-template-columns:1fr;
        gap:40px;
    }

    .tutor-card.reverse .tutor-image,
    .tutor-card.reverse .tutor-content{
        order:unset;
    }

    .tutor-image img{
        height:400px;
    }

    .section-heading h2{
        font-size:38px;
    }

    .tutor-content h3{
        font-size:30px;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

}

/* TUTOR BADGES */

.tutor-badges{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.tutor-badges span{
    background:#eef2ff;
    color:#4f46e5;
    padding:10px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
}

/* BETTER MOBILE SPACING */

@media(max-width:900px){

    section{
        padding:80px 0;
    }

    .hero{
        padding-top:160px;
        padding-bottom:100px;
    }

    .hero h1{
        font-size:52px;
        line-height:1.1;
    }

    .hero p{
        font-size:18px;
        line-height:1.8;
    }

    .container{
        width:90%;
    }

    .tutor-card{
        margin-bottom:60px;
    }

    .tutor-image img{
        height:360px;
        border-radius:20px;
    }

    .testimonial-card{
        padding:24px;
    }

    .testimonial-card p{
        font-size:16px;
    }

    .tutor-content p{
        font-size:17px;
    }

}

/* SMALL MOBILE */

@media(max-width:600px){

    .hero h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .tutor-content h3{
        font-size:28px;
    }

    .tutor-image img{
        height:320px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

}

/* PROGRAMME CATEGORY */

.programme-category{
    margin-bottom:90px;
}

.programme-category > h3{
    font-size:34px;
    margin-bottom:34px;
    color:#546EC8;
    position:relative;
    padding-left:18px;
    font-weight:700;
}

.programme-category > h3::before{
    content:"";
    position:absolute;
    left:0;
    top:4px;
    width:6px;
    height:38px;
    background:#546EC8;
    border-radius:999px;
}

/* SCHEDULE */

.schedule-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
    margin-top:60px;
}

.schedule-card{
    background:#ffffff;
    padding:34px;
    border-radius:24px;
    box-shadow:0 6px 24px rgba(0,0,0,0.08);
    transition:0.3s;
}

.schedule-card:hover{
    transform:translateY(-6px);
}

.schedule-day{
    display:inline-block;
    background:#eef2ff;
    color:#546EC8;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.schedule-card h3{
    color:#111827;
    margin-bottom:16px;
    font-size:24px;
    line-height:1.4;
}

.schedule-card p{
    font-size:18px;
    color:#333;
    margin-bottom:14px;
    font-weight:600;
}

.schedule-card small{
    color:#666;
    font-size:15px;
    line-height:1.6;
}

/* SCHEDULE NOTE */

.schedule-note{
    margin-top:50px;
    text-align:center;
}

.schedule-note p{
    color:#e8e8e8;
    margin-bottom:12px;
    font-size:16px;
    line-height:1.8;
}

/* CTA SECTION */

.contact-box h2{
    margin-bottom:10px;
}

/* MOBILE */

@media(max-width:900px){

    .programme-category{
        margin-bottom:70px;
    }

    .programme-category h3{
        font-size:30px;
    }

    .schedule-card{
        padding:28px;
    }

    .schedule-card h3{
        font-size:22px;
    }

}

@media(max-width:600px){

    .programme-category h3{
        font-size:28px;
    }

    .schedule-grid{
        gap:22px;
    }

    .schedule-card{
        padding:24px;
        border-radius:20px;
    }

    .schedule-card h3{
        font-size:20px;
    }

    .schedule-card p{
        font-size:17px;
    }

}

/* PROGRAMME SECTION COLORS */

.programme-light{
    background:#ffffff;
}

.programme-blue{
    background:#546EC8;
}

.programme-section{
    padding:90px 0;
}

/* SMOOTHER SECTION FLOW */

.programme-section + .programme-section{
    margin-top:-2px;
}

/* BETTER CARD TEXT */

.card p{
    line-height:1.9;
}

/* CLEANER HERO SPACING */

.hero-content{
    padding-bottom:10px;
}

/* BETTER MOBILE NAV */

.mobile-menu a{
    text-align:center;
}

/* CTA BUTTON IMPROVEMENT */

.contact-box .btn{
    margin-top:32px;
}

/* PROGRAMME CARD HEIGHT */

.programme-category .card{
    height:100%;
}

/* SECTION TRANSITION */

.programme-light,
.programme-blue{
    transition:0.3s;
}

/* PROGRAMME CARD TITLE FIX */

.programme-category .card h3{
    color:#111827;
    padding-left:0;
}

.programme-category .card h3::before{
    display:none;
}

/* SCHEDULE SUBJECT */

.schedule-subject{
    margin-bottom:80px;
}

.schedule-subject h3{
    font-size:32px;
    color:#ffffff;
    margin-bottom:30px;
}

/* STATUS BADGES */

.status-open{
    display:inline-block;
    background:#dcfce7;
    color:#166534;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.status-private{
    display:inline-block;
    background:#ede9fe;
    color:#5b21b6;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

/* AVAILABLE SLOTS */

.available-slots{
    margin-top:90px;
}

.available-slots h3{
    color:#ffffff;
    font-size:32px;
    margin-bottom:34px;
}

.slots-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.slot-card{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:24px;
    padding:32px;
    backdrop-filter:blur(10px);
}

.slot-card h4{
    color:#ffffff;
    margin-bottom:18px;
    font-size:22px;
}

.slot-card p{
    color:#e5e7eb;
    margin-bottom:12px;
    line-height:1.8;
}

/* SCHEDULE UPDATE */

.schedule-update{
    opacity:0.8;
    font-size:15px;
    margin-top:10px;
}

/* BETTER BLUE SECTION */

.programme-blue .section-heading p{
    color:#dbe4ff;
}

/* MOBILE */

@media(max-width:768px){

    .schedule-subject{
        margin-bottom:60px;
    }

    .schedule-subject h3,
    .available-slots h3{
        font-size:28px;
    }

    .slot-card{
        padding:26px;
    }

}

/* WHITE TEXT ON BLUE SECTION */

.programme-blue h2,
.programme-blue h3,
.programme-blue p{
    color:#ffffff;
}

.programme-blue .schedule-card h3,
.programme-blue .schedule-card p,
.programme-blue .schedule-card small{
    color:#111827;
}

/* GOOGLE MAP */

.map-container{
    margin-top:40px;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.map-container iframe{
    width:100%;
    height:450px;
    border:0;
}

/* RESULTS PAGE */

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#ffffff;
    padding:36px;
    border-radius:28px;
    box-shadow:0 8px 30px rgba(0,0,0,0.06);
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-6px);
}

.testimonial-card p{
    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:24px;
}

.testimonial-card h4{
    color:#546EC8;
    font-size:16px;
    font-weight:700;
}

/* FIX WHITE TEXT INSIDE WHITE CARDS */

.programme-blue .card h3,
.programme-blue .card p,
.programme-blue .testimonial-card h4,
.programme-blue .testimonial-card p,
.programme-blue .contact-box h2,
.programme-blue .contact-box p{
    color:#4b5563;
    opacity:1;
}

.programme-blue .contact-box{
    background:#ffffff;
}

.programme-blue .contact-box p{
    color:#555;
}

/* RESULTS CTA TEXT FIX */

.programme-blue .contact-box p{
    color:#4b5563;
    opacity:1;
}

.programme-blue .contact-box{
    background:#ffffff;
}

/* HERO IMAGE */

.hero-wrapper{
    display:grid;
    grid-template-columns:45% 55%;
    gap:40px;
    align-items:start;
}

.hero-image{
    margin-top:10px;
}

.hero-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    display:block;
}

@media(max-width:900px){

    .hero-wrapper{
        grid-template-columns:1fr;
        gap:40px;
        align-items:center;
    }

    .hero-image{
        margin-top:0;
    }

    .hero-image img{
        width:100%;
    }

}

.blue-section .card ul{
    margin-top:15px;
    padding-left:20px;
}

.blue-section .card li{
    margin-bottom:10px;
    color:#555;
    line-height:1.6;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
    position:fixed;
    bottom:30px;
    right:30px;
    z-index:9999;
}

.whatsapp-float img{
    width:85px;
    height:85px;
    transition:0.3s ease;
}

.whatsapp-float img:hover{
    transform:scale(1.1);
}

/* CONTACT FORM */

.contact-box label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#111827;
}

.contact-box select{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    font-family:'Inter',sans-serif;
    margin-bottom:16px;
}

@media(max-width:768px){

    .contact-box{
        padding:25px;
    }

    .contact-box form{
        width:100%;
    }

    .whatsapp-float{

        bottom:80px;
        right:15px;
    }

    .whatsapp-float img{

        width:55px;
        height:55px;
    }

}

/* ABOUT PAGE */

.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-heading h2{
    margin-bottom:15px;
}

.section-heading p{
    color:#666;
    line-height:1.8;
}

/* TUTOR */

.tutor-card{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:50px;
    align-items:start;
    margin-bottom:80px;
}

.tutor-card.reverse{
    grid-template-columns:1fr 320px;
}

.tutor-card.reverse .tutor-image{
    order:2;
}

.tutor-card.reverse .tutor-content{
    order:1;
}

.tutor-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    display:block;
}

.tutor-image{
    align-self:start;
}

.tutor-role{
    display:inline-block;
    margin-bottom:20px;
    color:#4f68c6;
    font-weight:600;
}

.tutor-content p{
    line-height:1.9;
    color:#555;
}

.tutor-points{
    margin:25px 0;
    padding-left:20px;
}

.tutor-points li{
    margin-bottom:12px;
    line-height:1.7;
}

/* BADGES */

.tutor-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.tutor-badges span{
    background:#eef2ff;
    color:#4f68c6;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
}

/* TESTIMONIALS */

.testimonial-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:80px;
}

.testimonial-card{
    background:#f8f9ff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

.testimonial-card p{
    line-height:1.8;
    margin-bottom:20px;
    color:#555;
}

.testimonial-card h4{
    color:#4f68c6;
    margin:0;
}

/* MOBILE */

@media(max-width:900px){

    .tutor-card,
    .tutor-card.reverse{
        grid-template-columns:1fr;
        gap:30px;
    }

    .tutor-card.reverse .tutor-image,
    .tutor-card.reverse .tutor-content{
        order:unset;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

}

.blue-section .section-heading p{
    color:rgba(255,255,255,0.9);
}

.tutor-content h4{
    margin-top:30px;
    margin-bottom:12px;
    color:#546EC8;
    font-size:20px;
}

.tutor-content p{
    line-height:1.8;
}

.tutor-quote{
    margin:25px 0;
    padding:15px 20px;
    border-left:4px solid #546EC8;
    background:#f8faff;
    font-style:italic;
    font-weight:600;
    color:#444;
    line-height:1.8;
    border-radius:8px;
}

@media(max-width:768px){

    .tutor-image{
        text-align:center;
    }

    .tutor-image img{
        width:280px;
        max-width:100%;
        height:auto;
        object-fit:cover;
    }

}

/* SAMPLE NOTES */

.materials-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.material-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.material-card:hover{
    transform:translateY(-5px);
}

.material-card img{
    width:100%;
    display:block;
}

/* MOBILE */

@media(max-width:768px){

    .materials-gallery{
        grid-template-columns:1fr;
    }

}

.material-caption{
    padding:15px;
    text-align:center;
    font-weight:600;
}

.home-method-cta{
    margin-top:60px;
    background:#f8faff;
    border-radius:20px;
    padding:50px;
    text-align:center;
}

.home-method-cta h3{
    margin-bottom:15px;
    color:#111827;
}

.home-method-cta p{
    max-width:700px;
    margin:0 auto 25px;
}

/* LEARNING PROCESS */

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.process-card span{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    color:#546EC8;
    margin-bottom:15px;
}

.process-card h3{
    margin-bottom:15px;
}

@media(max-width:900px){

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .process-grid{
        grid-template-columns:1fr;
    }

}

.process-section{
    text-align:center;
}

.process-section .process-card{
    background:#fff;
}

.process-section .section-heading{
    margin-bottom:50px;
}

.process-section .process-card p{
    color:#555;
}

.process-section .process-card h3{
    color:#111827;
}

.process-section .process-card span{
    color:#546EC8;
}

.process-section .process-card{
    background:#fff;
}

.process-section .process-card p{
    color:#555 !important;
}

.process-section .process-card h3{
    color:#111827 !important;
}

.process-section .process-card span{
    color:#546EC8 !important;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.testimonial-card p{
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#546EC8;
}

.blue-section .contact-box{
    color:#111827;
}

.blue-section .contact-box h3{
    color:#111827;
}

.blue-section .contact-box p{
    color:#555;
}

/* RESOURCES */

.blog-icon{
    font-size:40px;
    margin-bottom:15px;
}

.resources-intro{
    max-width:800px;
    margin:0 auto;
    text-align:center;
}

.resource-card{
    cursor:pointer;
}

.resource-content{
    display:none;
    margin-top:20px;
}

.resource-card.active .resource-content{
    display:block;
}

.resource-preview{
    margin-top:15px;
    color:#666;
    line-height:1.7;
}

.resource-toggle{
    display:inline-block;
    margin-top:15px;
    color:#546EC8;
    font-weight:600;
    font-size:14px;
}

.resource-grid{
    align-items:start;
}

.lms-section .lms-link{
    color:#ffffff;
    font-weight:700;
    border-bottom:2px solid rgba(255,255,255,.5);
    text-decoration:none;
}

.lms-link:hover{
    text-decoration:underline;
}

.lms-section .card{

    transition:0.3s ease;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.12);
}

.lms-section .card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.20);
}

.lms-section{

    margin-top:80px;

    background:#5D73C9;

    border-radius:24px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.25);

    position:relative;

    overflow:hidden;
}

.lms-section::before{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,0.08);
}

.lms-btn{
    background:#ffffff;
    color:#546EC8;

    border-radius:10px;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.15);

    transition:all .3s ease;
}

.lms-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.25);

    background:#f8f8f8;
}

.lms-actions{
    margin-top:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.lms-btn,
.lms-btn-secondary{

    min-width:240px;
    height:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:8px;
    font-weight:700;
    text-decoration:none;

    box-sizing:border-box;
}

.lms-btn-secondary{

    background:#FFB547;
    color:#111827;

    border:none;

    border-radius:10px;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.2);

    transition:all .3s ease;
}

.lms-btn-secondary:hover{

    transform:translateY(-3px);

    background:#0b1633;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.3);
}

.lms-student-text{
    color:#fff;
    text-align:center;
    margin-top:30px;
    margin-bottom:15px;
    font-weight:600;
}

.lms-login-heading{
    color:#fff;
    text-align:center;
    margin-top:60px;
    margin-bottom:15px;
    font-size:24px;
}

.nav-login,
.nav-trial{

    display:flex;
    align-items:center;
    justify-content:center;

    height:28px;
    padding:0 14px;

    font-size:8px;

    border-radius:8px;
    text-decoration:none;

    box-sizing:border-box;
}

.nav-login{

    border:1px solid rgba(255,255,255,.5);
    color:#fff;
    margin-left:15px;
}

.nav-trial{

    background:#000080;
    color:#fff !important;
    font-weight:700;
    margin-left:10px;

    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.mobile-trial-btn{

  display:block;

  margin:10px 20px 20px;

  padding:16px 30px;

  background:#000080;

  color:#fff !important;

  border-radius:14px;

  text-align:center;

  text-decoration:none;

  font-weight:700;
}

.mobile-login-btn:hover{

    background:#546EC8;

    color:#fff;
}