

.notice-bar {
    /* background: #ff6a3d; */
 background: white;
    color: Black;
    overflow: hidden;
    white-space: nowrap;
    height: 50px;
    display: flex;
    align-items: center;
}

.notice-track {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 12s linear infinite;
    font-weight: bold;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.notice-link {
    text-decoration: none;
}


.direction-btn{
    display:inline-block;
     background:#3f51b5;
    color:#fff;
    padding:12px 20px;
    font-size:16px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}
.direction-btn:hover{
  
 background:#ff6a3d;
    transform:scale(1.05);
}

/* .video-hero{
    position:relative;
    height:600px;
    overflow:hidden;
}

.video-hero video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-hero::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:white;
    text-align:center;
    z-index:2;
} */
body 
{ 
margin:0; 
font-family:Arial;  
}
a
{
   text-decoration: none; color:black;
}

/* TOPBAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background: #0a2a5e;
    color: #fff;
    flex-wrap: wrap;
}

/* LEFT BUTTON */
.call-box {
    background: linear-gradient(135deg, #ff6a3d, #ff8c42);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

/* STUDENT BUTTON */
.student-box {
    background: #ffffff;
    color: #0a2a5e;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

/* RIGHT SIDE */
.top-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FONT BUTTONS */
.font-controls {
    display: flex;
    gap: 5px;
}

.font-controls button {
    background: #2e9e2e;
    color: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* ICON BUTTON */
.btn-icon {
    background: #fff;
    color: #0a2a5e;
    padding: 6px 8px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* LANGUAGE */
.tool-icon select {
    padding: 6px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 600px) {

    .topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .top-tools {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .call-box,
    .student-box {
        text-align: center;
    }
}



/* TOP BAR 
.topbar{
display:flex;justify-content:space-between;align-items:center;
background:linear-gradient(to right,#ff6a3d 30%,#3f51b5 30%);
color:white;padding:8px 20px;flex-wrap:wrap;
}*/

/* HEADER */
header{
display:flex;justify-content:space-between;align-items:center;
padding:15px 30px;background:#fff;
position:sticky;top:0;z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo img{height:75px;}

 
nav{
    position: relative;
}
nav ul{
    list-style:none;
    display:flex;
    gap:25px;
    align-items:center;
}

nav ul li{
    position: relative;
    cursor: pointer;
    padding: 8px 10px;
    display: inline-block;    
}

nav ul li span{
    display:block;
}

nav ul li i{
    margin-right: 6px;
}


nav ul{
    position: relative;    
}

.submenu{
    display: block;        
    width: max-content;    
}

.sub-submenu{
    width: max-content;    
}


/* LINKS */
nav ul li a{
    display:block;
    text-decoration:none;
    color:inherit;
}

/* underline */
nav ul li::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:#ff6a3d;
    left:0;
    bottom:-3px;
    transition:.3s;
}
nav ul li:hover::after{width:100%;}

/* hover FIX */
nav ul li:hover{
    color:#ff6a3d;
}

/* DROPDOWN */
.dropdown{position:relative;}

.submenu{
    position:absolute;
    top:100%;
    left:0;
    background:white;
    min-width:220px;
    padding:10px 0;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
    border-radius:6px;
    z-index:999;
}

/* show dropdown */
.dropdown:hover > .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.submenu li{
    padding:10px 15px;
    display:block;
}

.submenu li:hover{
    background:#f2f2f2;
    padding-left:20px;
    color:#3f51b5;
}


.submenu li,
.sub-submenu li{
    display: block !important;
}

/* SUB SUB MENU */
.dropdown-sub{
    position:relative;
}

.sub-submenu{
    position:absolute;
    top:0;
    left:100%;
    background:white;
    min-width:200px;
    padding:10px 0;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    opacity:0;
    visibility:hidden;
    transform:translateX(10px);
    transition:.3s;
}

/* show */
.dropdown-sub:hover > .sub-submenu{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}

.sub-submenu li{
    padding:10px 15px;
    display:block;
}

.sub-submenu li:hover{
    background:#f2f2f2;
    padding-left:20px;
    color:#3f51b5;
}

/* HAMBURGER */
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}


 
.sub-submenu {
    display: block;
}

.sub-submenu li {
    display: block;
    width: 100%;
}

 
.submenu li {
    display: block;
}


/* =========================================
   MOBILE HEADER FIX
========================================= */

@media(max-width:768px){

    /* HEADER */
    header{
        padding:10px 15px;
        flex-wrap:nowrap;
    }

    /* LOGO */
    .logo{
        flex:1;
    }

    .logo img{
        height:45px;
        width:auto;
        max-width:100%;
        display:block;
    }

    /* MENU ICON */
    .menu-toggle{
        display:block;
        font-size:28px;
        color:#0a2a5e;
    }

    /* MOBILE MENU */
    nav ul{
        position:absolute;
        top:65px;
        right:10px;
        width:250px;
        background:#fff;
        border-radius:10px;
        padding:10px 0;
        box-shadow:0 10px 25px rgba(0,0,0,0.15);

        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:0;

        z-index:9999;
    }

    nav ul.active{
        display:flex;
    }

    nav ul li{
        width:100%;
        padding:12px 18px;
        border-bottom:1px solid #eee;
    }

    nav ul li:last-child{
        border-bottom:none;
    }

    nav ul li a{
        width:100%;
        display:block;
        font-size:15px;
    }

    /* SUB MENU */
    .submenu,
    .sub-submenu{
        width:100%;
        background:#f8f8f8;
        margin-top:8px;
        border-radius:6px;
    }

    .submenu li,
    .sub-submenu li{
        padding:10px 15px;
    }

    /* TOPBAR FIX */
    .topbar{
        padding:8px 10px;
    }

    .call-box,
    .student-box{
        font-size:12px;
        padding:6px 10px;
    }

    /* NOTICE BAR */
    .notice-bar{
        height:auto;
        padding:8px 0;
    }

    .notice-track{
        font-size:13px;
    }

    /* HERO TEXT */
    .slide-content{
        width:90%;
    }

    .slide-content h2{
        font-size:28px;
        line-height:1.3;
    }

    .slide-content p{
        font-size:14px;
        line-height:1.6;
    }

    /* CALLBACK FORM */
    .callback-form input{
        width:100%;
    }

    /* ENQUIRY FORM */
    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form button{
        width:100%;
    }

}

/* CALLBACK */
.callback-bar{
background:#ff6a3d;
padding:15px;
text-align:center;
color:white;
}

.callback-form{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.callback-form input{
padding:10px;
width:220px;
height:40px;
border:none;
border-radius:5px;
}

.callback-form button{
background:#3f51b5;
color:white;
height:40px;
padding:0 20px;
border:none;
border-radius:20px;
cursor:pointer;
}

 


/* CALLBACK */
.callback-bar{
background:#ff6a3d;
padding:15px;
text-align:center;
color:white;
}

.callback-form{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.callback-form input{
padding:10px;
width:220px;
height:40px;
border:none;
border-radius:5px;
}

.callback-form button{
background:#3f51b5;
color:white;
height:40px;
padding:0 20px;
border:none;
border-radius:20px;
cursor:pointer;
}

/* SLIDER */
.slider{
    position:relative;
    height:100vh;
    width:100%;
    overflow:hidden;
}

/* SLIDE */
.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

/* IMAGE */
.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1);
    transition: transform 6s ease;
}

.slide.active img{
    transform:scale(1.1);
}

/* OVERLAY */
.slide::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    top:0;
    left:0;
    z-index:1;
}

/* CONTENT */
.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
    width:80%;
}

/* HEADING */
.slide-content h2{
    font-size:60px;
    margin-bottom:20px;
    opacity:0;
    transform:translateY(50px);
    animation: fadeUp 1s forwards;
}

/* TEXT */
.slide-content p{
    font-size:20px;
    margin-bottom:30px;
    opacity:0;
    transform:translateY(50px);
    animation: fadeUp 1.2s forwards;
}

/* BUTTON */
.btn{
    display:inline-block;
    padding:12px 30px;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    border-radius:30px;
    transition:0.3s;
    opacity:0;
    transform:translateY(50px);
    animation: fadeUp 1.4s forwards;
}

.btn:hover{
    background:#e65c00;
}

/* ANIMATION */
@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .slide-content h2{
        font-size:35px;
    }
    .slide-content p{
        font-size:16px;
    }
}
.enquiry-bar {
    background: #3f51b5;
    padding: 20px;
    text-align: center;
    color: white;
}

.enquiry-bar h3 {
    margin-bottom: 15px;
}

/* FORM LAYOUT */
.enquiry-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* INPUTS */
.enquiry-form input,
.enquiry-form select {
    padding: 12px;
    width: 230px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #e6e6e6;
}

/* BUTTON */
.enquiry-form button {
    background: #ff6a3d;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
    .enquiry-form {
        flex-direction: column;
    }

    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form button {
        width: 90%;
    }
}

.about-section {
    padding: 60px 20px;
    background: #f8f8f8;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

/* IMAGE */
.about-image {
    flex: 1;
    border: 8px solid #3f51b5;
    padding: 5px;
}

.about-image img {
    width: 100%;
    display: block;
}

/* CONTENT */
.about-content {
    flex: 1;
}

.about-content h5 {
    color: #ff6a3d;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-content p {
    color: #555;
    line-height: 1.6;
}

.highlight {
    color: #ff6a3d;
    font-weight: bold;
}

/* BUTTON */
.read-btn {
    display: inline-block;
    margin-top: 15px;
    background: #3f51b5;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}


/* =========================
   COURSES SECTION
========================= */
.courses-section {
    padding: 60px 20px;
    background: #fff;
}

.courses-section h2 {
    margin-bottom: 30px;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================
   GRID LAYOUT
========================= */
.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

/* =========================
   CARD DESIGN
========================= */
.course-card {
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
}

/* =========================
   IMAGE FIX (NO CROPPING)
========================= */
.course-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;         /* mobile */
    border-radius: 15px;
    object-position: center;
}

/* ✅ Laptop fix */
@media (min-width: 1024px){
    .course-card img{
        object-fit: contain;   /* no crop */
        background: #f2f2f2;
        padding: 10px;
    }
}

/* =========================
   CONTENT
========================= */
.course-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-content h3 {
    margin-bottom: 10px;
}

.course-content p {
    font-size: 14px;
    color: #555;
    flex-grow: 1;
}

/* =========================
   BUTTON / LINK
========================= */
.course-content a {
    color: #ff6a3d;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

.course-content a:hover {
    color: #3f51b5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .courses-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .courses-container {
        grid-template-columns: 1fr;
    }
}
.strength-section {
    background: #0d3b46;
    color: white;
    padding: 60px 20px;
}

.strength-container {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

/* LEFT */
.strength-content {
    flex: 1;
}

.strength-content h2 {
    margin-bottom: 30px;
}

/* POINTS */
.point {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.icon {
    width: 50px;
    height: 50px;
    background: #ff6a3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    color: white;
    font-size: 20px;
}

.point h3 {
    margin-bottom: 5px;
}

/* RIGHT IMAGE */
.strength-image {
    flex: 1;
}

.strength-image img {
    width: 100%;
    border-radius: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .strength-container {
        flex-direction: column;
        text-align: center;
    }

    .point {
        flex-direction: column;
        align-items: center;
    }
}


.faq-section {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 30px;
}

/* CONTAINER */
.faq-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

/* ITEM */
.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* QUESTION */
.faq-question {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

/* PLUS ICON */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
}

/* ANSWER */
.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px;
}

.faq-item.active .faq-question::after {
    content: "-";
}


/* ===== PRE LOADER ===== */
#pre-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Logo */
#pre-loader img {
  width: 120px;
  animation: pre-bounce 1s infinite ease-in-out;
}

/* Bounce Animation */
@keyframes pre-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
}

/* Hide loader */
.pre-hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

/* ===== MAIN CONTENT ===== */
#pre-content {
  display: none;
  padding: 50px;
}


.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Button Base */
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  //box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* Icons */
.float-btn img {
  width: 75px;
  height: 75px;
}

/* WhatsApp Style */
.whatsapp {
  //background: #25D366;
}

/* Call Style */
.call {
  background: #007BFF;
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.1);
}



.testimonials {
    padding: 60px 20px;
    text-align: center;
    background: #f5f7fb;
}

.testimonials h4 {
    color: #ff6a3d;
    margin-bottom: 5px;
}

.testimonials h2 {
    margin-bottom: 30px;
}

/* CONTAINER */
.review-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;

    scrollbar-width: none;
}

.review-container::-webkit-scrollbar {
    display: none;
}

/* CARD */
.review-card {
    min-width: 300px;
    flex: 0 0 auto;
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

/* HEADER */
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-header img {
    border-radius: 50%;
}

/* STARS */
.stars {
    color: #fbbc05;
    font-size: 14px;
}

/* TEXT */
.review-card p {
    font-size: 14px;
    line-height: 1.6;
}




.footer {
    background: #1e3c72;
    color: white;
    padding: 50px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* HEADINGS */
.footer h3 {
    margin-bottom: 15px;
    position: relative;
}

.footer h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff6a3d;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* TEXT */
.footer p {
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.footer ul li:hover {
    color: #ff6a3d;
    padding-left: 5px;
}

/* SOCIAL */
.social-icons {
    margin-top: 15px;
}

.social-icons i {
    margin-right: 10px;
    background: #2e4a88;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

/* POSTS */
.post {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.post img {
    width: 60px;
    height: 50px;
    object-fit: cover;
}

.post span {
    color: #ff6a3d;
    font-size: 12px;
}

/* CONTACT ICONS */
.footer i {
    margin-right: 8px;
    color: #ff6a3d;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


.newsletter {
    background: #ff6a3d;
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.newsletter-box {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-box input {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 5px;
}

.newsletter-box button {
    padding: 10px 20px;
    border: none;
    background: #3f51b5;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.copyright {
    background: #0d2c5a;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* POPUP NOTICE OVERLAY */
#noticePopup{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

/* BOX */
.popup-box{
    background:white;
    width:90%;
    max-width:350px;
    border-radius:10px;
    text-align:center;
    padding:20px;
    position:relative;
    animation: popupAnim 0.4s ease;
}

/* IMAGE */
.popup-box img{
    width:100%;
    border-radius:8px;
    margin-bottom:10px;
}

/* BUTTON */
.popup-btn{
    display:inline-block;
    margin-top:10px;
    background:#ff6a3d;
    color:white;
    padding:10px 20px;
    text-decoration:none;
    border-radius:5px;
}

/* CLOSE */
.close-btn{
    position:absolute;
    top:10px;
    right:15px;
    font-size:22px;
    cursor:pointer;
}

/* ANIMATION */
@keyframes popupAnim{
    from{transform:scale(0.7); opacity:0;}
    to{transform:scale(1); opacity:1;}
}



/* HERO SECTION */
.hero {
  position: relative;
  height: 350px;
  background: url('computer.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
}

.hero p {
  font-size: 20px;
  margin-top: 10px;
}

 
.breadcrumb {
  background: #ff5722;
  padding: 12px 25px;
  width: fit-content;
  margin: -25px auto 30px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  border: 2px solid #fff;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb span {
  margin: 0 8px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero {
    height: 250px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .breadcrumb {
    font-size: 12px;
    padding: 10px 15px;
  }

  .content h2 {
    font-size: 22px;
  }

  .content p {
    font-size: 14px;
  }
}



/* SUB-SUB MENU */
.dropdown-sub {
    position: relative;
}

.sub-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 180px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.dropdown-sub:hover .sub-submenu {
    opacity: 1;
    visibility: visible;
}



@media(max-width:768px){
.sub-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
}

.dropdown-sub.active .sub-submenu {
    display: block;
}
}



/* SECTION */
.why-section {
    padding: 60px 20px;
    background: #f5f7fb;
    text-align: center;
}

/* TITLE */
.why-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: #0a2540;
}

/* CARD BOX */
.why-card {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* RED BORDER ACCENT */
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #ff3b3b);
    border-top-right-radius: 15px;
}

/* SUB TITLE */
.why-subtitle {
    color: #ff3b3b;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 2px solid #ff3b3b;
    padding-bottom: 5px;
}

/* LIST */
.why-list {
    text-align: left;
    margin-top: 20px;
}

/* ITEM */
.why-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

/* DOT */
.why-dot {
    width: 10px;
    height: 10px;
    background: #ff3b3b;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 6px;
}

/* TEXT */
.why-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.why-text strong {
    color: #0a2540;
}

/* HOVER EFFECT */
.why-item:hover {
    transform: translateX(5px);
    transition: 0.3s;
}

/* RESPONSIVE */
@media(max-width:768px){
    .why-title {
        font-size: 24px;
    }

    .why-card {
        padding: 20px;
    }
}





/* SECTION GRID */
.hlcse-section {
    padding: 60px 20px;
    background: #f5f9ff;
}

.hlcse-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #0a2540;
}

.hlcse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* CARD */
.hlcse-card {
    background: linear-gradient(135deg, #ffffff, #f7f9fc);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.hlcse-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TOP BORDER */
.hlcse-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6a3d, #ff9a5a);
}

/* BADGE */
.hlcse-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.hlcse-beginner { background: #4caf50; }
.hlcse-popular { background: #ff6a3d; }
.hlcse-advanced { background: #3f51b5; }

/* ICON */
.hlcse-icon {
    font-size: 40px;
    color: #ff6a3d;
    margin-bottom: 10px;
}

/* TITLE */
.hlcse-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #0a2540;
}

/* SUBTITLE */
.hlcse-sub {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

/* LIST */
.hlcse-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.hlcse-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.hlcse-card ul li::before {
    content: "✔";
    color: #ff6a3d;
    margin-right: 8px;
}

/* BUTTON */
.hlcse-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #ff6a3d, #ff8c42);
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hlcse-btn:hover {
    background: linear-gradient(135deg, #ff5722, #ff7a2f);
}

/* RESPONSIVE */
@media(max-width:768px){
    .hlcse-card h3 {
        font-size: 20px;
    }
}



/* ===============================
   HLC SCROLL ICON SECTION
================================ */

.hlc-scroll-icons {
    background: #f5f9ff;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

/* Row */
.hlc-row {
    overflow: hidden;
    white-space: nowrap;
    margin: 12px 0;
}

/* Track */
.hlc-track {
    display: inline-flex;
    align-items: center;
    gap: 45px;
    width: max-content;
}

/* Icons */
.hlc-track img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.9;
}

/* Hover effect */
.hlc-track img:hover {
    transform: scale(1.2);
    opacity: 1;
}

/* ===============================
   ANIMATION
================================ */

/* LEFT → RIGHT */
.hlc-left .hlc-track {
    animation: hlcScrollRight 25s linear infinite;
}

/* RIGHT → LEFT */
.hlc-right .hlc-track {
    animation: hlcScrollLeft 25s linear infinite;
}

/* Keyframes */
@keyframes hlcScrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes hlcScrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ===============================
   PREMIUM EDGE FADE (OPTIONAL)
================================ */

.hlc-scroll-icons::before,
.hlc-scroll-icons::after {
    content: "";
    position: absolute;
    top: 0;
    width: 70px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hlc-scroll-icons::before {
    left: 0;
    background: linear-gradient(to right, #f5f9ff, transparent);
}

.hlc-scroll-icons::after {
    right: 0;
    background: linear-gradient(to left, #f5f9ff, transparent);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .hlc-track {
        gap: 25px;
    }

    .hlc-track img {
        width: 40px;
        height: 40px;
    }
}





.hlc-trust-section {
    padding: 50px 20px;
    background: #ffffff;
    text-align: center;
}

.hlc-trust-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #0a2a66;
}

/* Grid */
.hlc-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Card */
.hlc-trust-card {
    background: #f5f9ff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hlc-trust-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.hlc-trust-card i {
    font-size: 30px;
    color: #1a73e8;
    margin-bottom: 10px;
}

.hlc-trust-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.hlc-trust-card p {
    font-size: 14px;
    color: #555;
}





/* ===============================
   CAREER SECTION
================================ */

.hlc-career-section {
    padding: 60px 20px;
    background: #f5f9ff;
    text-align: center;
}

.hlc-career-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #0a2a66;
    line-height: 1.3;
}

.hlc-career-intro {
    max-width: 750px;
    margin: 0 auto 35px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* ===============================
   GRID
================================ */

.hlc-career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: auto;
}

/* ===============================
   CARD
================================ */

.hlc-career-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    border: 1px solid #eef2ff;
}

.hlc-career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hlc-career-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a73e8;
}

.hlc-career-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* ===============================
   CTA
================================ */

.hlc-career-cta {
    margin-top: 40px;
}

.hlc-career-cta p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #222;
}

.hlc-btn {
    display: inline-block;
    margin: 8px;
    padding: 12px 22px;
    background: #1a73e8;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.hlc-btn:hover {
    background: #0a58ca;
}

.hlc-btn.whatsapp {
    background: #25D366;
}

.hlc-btn.whatsapp:hover {
    background: #1ebe5d;
}

/* ===============================
   TABLET VIEW
================================ */

@media (max-width: 992px) {
    .hlc-career-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hlc-career-section h2 {
        font-size: 26px;
    }
}

/* ===============================
   MOBILE VIEW
================================ */

@media (max-width: 600px) {

    .hlc-career-section {
        padding: 40px 15px;
    }

    .hlc-career-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hlc-career-section h2 {
        font-size: 22px;
    }

    .hlc-career-intro {
        font-size: 14px;
    }

    .hlc-career-card {
        padding: 18px;
    }

    .hlc-career-card h3 {
        font-size: 16px;
    }

    .hlc-career-card p {
        font-size: 13px;
    }

    .hlc-btn {
        width: 90%;
        display: block;
        margin: 8px auto;
        text-align: center;
    }
}


