* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.custom-container {
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}

/* =========================
   TOPBAR (FINAL PERFECT)
========================= */
.topbar {
    padding: 10px 0px;
    position: relative;
    width: 100%;
    z-index: 999;
    background: #3b4672;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Poppins', sans-serif;
}

/* container */
.custom-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

/* wrapper */
.topbar-wrap {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* left + right */
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
}

/* left spacing */
.topbar-left {
    gap: 14px;
}

/* social box */
.social-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 6px 16px;
}

.social-box a {
    color: #ffffff;
    font-size: 13px;
    transition: 0.3s;
}

.social-box a:hover {
    color: #f5c242;
}

/* time text */
.topbar-time {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}
.topbar-time:hover {
    color: #ffc107;
}

/* right section */
.topbar-right {
    gap: 20px;
}

/* info */
.topbar-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}
.topbar-info span:hover {
    color:#ffc107;
}

.topbar-info i {
    font-size: 13px;
}

/* language switch */
.lang-switch {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

/* button */
.lang-switch button {
    width: 100px;
    height: 25px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    cursor: pointer;
    transition: 0.3s;
}

.lang-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* last button border remove */
.lang-switch button:last-child {
    border-bottom: none;
}

/* hover effect */
.lang-switch button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* flag */
.lang-switch .fi {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

/* text + flag group */
.lang-switch button span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* arrow icon */
.lang-switch i {
    font-size: 10px;
    opacity: 0.8;
}


/* =========================
   NAVBAR
========================= */
.main-navbar {
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #142156;
    min-height: 98px;
}

.navbar-brand {
    color: #fff !important;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar-nav {
    gap: 14px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 18px !important;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    transition: 0.3s;
}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, #f5b400, #ffcc33);
    color: #142156 !important;
    box-shadow: 0 6px 14px rgba(245, 180, 0, 0.4);
}

.nav-call {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.call-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #e6a300, #ffd24d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252156;
    font-size: 20px;
    flex-shrink: 0;
}

.call-icon:hover {
    background: #253162;
    color: #ffffff;
}

.call-text small {
    display: block;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.2;
}
.call-text small:hover {
    color: #ffc107;
}

.call-text h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-top: 7px;
}
.call-text h6:hover {
    color: #ffc107;
}

/* mobile lang version */
.mobile-lang-switch {
    flex-direction: column;
    border-radius: 4px;
}

.mobile-lang-switch button {
    width: 60px;
    height: 26px;
    font-size: 11px;
    padding: 0 6px;
}

.mobile-lang-switch i {
    display: none;
    /* arrow hide mobile এ */
}

/* =========================
   POPUP
========================= */
#popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* box */
.popup-box {
    width: 480px;
    background: #f3f4f7;
    border-radius: 24px;
    padding: 28px 30px;
    text-align: center;
    position: relative;
    animation: popupFade 0.4s ease;
}

/* animation */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* image wrapper */
.popup-img {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
}

/* image */
.popup-img img {
    width: 100%;
    display: block;
}

/* title */
.popup-title {
    font-size: 26px;
    font-weight: 800;
    color: #142156;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

/* class block */
.class-item {
    margin-bottom: 12px;
}

/* class title */
.class-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: #142156;
    margin-bottom: 2px;
}

/* date + time */
.class-item p {
    font-size: 13px;
    color: #142156;
    margin: 0;
}

/* bottom text */
.popup-sub {
    font-size: 14px;
    font-weight: 700;
    color: #142156;
    margin-top: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* button */
.popup-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #142156;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
}

/* close button */
#popupClose {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #142156;
    color: #fff;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

/* =========================
   HERO
========================= */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section,
.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
    width: 100%;
    height: 820px;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 150px;
}

/* .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 30, 90, 0.95) 0%,
    rgba(15, 30, 90, 0.85) 30%,
    rgba(15, 30, 90, 0.45) 58%,
    rgba(15, 30, 90, 0.08) 100%
  );
} */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 670px;
    color: #fff;
}

.hero-content h1 {
    font-size: 68px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 28px;
    color: #fff;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 34px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5b400;
    color: #16235c;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 40px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #ffbf1f;
    color: #16235c;
}

/* =========================
   SWIPER ARROWS
========================= */
.swiper-button-prev,
.swiper-button-next {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    color: #fff !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #E6A300;
    color: #142156 !important;
    transform: scale(1.1);
}

.swiper-button-prev {
    left: 90px !important;
}

.swiper-button-next {
    right: 90px !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 22px !important;
    font-weight: 700;
}

.nx-upcoming-box {
    position: absolute;
    right: 0;
    bottom: 95px;
    z-index: 999;
    width: 285px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px 0 0 50px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    padding: 5px 5px;
    transition: all 0.35s ease;
}

.nx-upcoming-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nx-upcoming-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: #1421562e;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.nx-upcoming-icon:hover {
    background: #ffc107;
}

.nx-upcoming-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.nx-upcoming-text h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #142156;
}

.nx-upcoming-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #142156;
    cursor: pointer;
    transition: 0.3s;
}

.nx-upcoming-close:hover {
    color: #E6A300;
    transform: scale(1.2);
}

/* Hide state */
.nx-upcoming-box.nx-hide {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
}

/* =========================
   COURSE SECTION
========================= */
.course-section {
    position: relative;
    padding: 100px 50px;

    background: url('../images/driving/driving-bg-img.jpeg') no-repeat center center;
    background-size: cover;

}

/* overlay */
/* .course-section::before{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.95) 35%,
    rgba(255,255,255,0.85) 55%,
    rgba(255,255,255,0.4) 75%,
    rgba(255,255,255,0.1) 100%
  );

  z-index: 1;
} */

/* wrapper */
.course-wrapper {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 60px;
}

/* ================= IMAGE ================= */
.course-image {
    position: relative;
    width: 45%;
}

.course-image img {
    width: 85%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* background card */
.img-bg {
    position: absolute;
    width: 85%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    top: 40px;
    left: -50px;
    z-index: 1;
}

/* ================= CONTENT ================= */
.course-content {
    width: 55%;
}

.course-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #142156;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

/* ================= FEATURES ================= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box {
    background: #142156;
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    margin: 10px 0px;
}

/* Hover Glow Effect */
.feature-box:hover {
    box-shadow: 0 0 10px rgba(230,163,0,0.7),
                0 0 25px rgba(230,163,0,0.6),
                0 0 50px rgba(230,163,0,0.5);
}

/* icon */
.feature-box i {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #142156;
    border: 2px solid #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* title */
.feature-box h5 {
    font-size: 14px;
    margin-top: 20px;
    font-weight: 700;
}

/* text */
.feature-box p {
    font-size: 12px;
    opacity: 0.9;
}

/* ================= STATS ================= */
.stats {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    padding-top: 25px;
}

/* BOX */
.stat-box {
    position: relative;
    padding: 15px 30px;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    transition: all 0.35s ease;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.8) 60%,
            rgba(255, 255, 255, 0.7) 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 -6px 14px rgba(245, 180, 0, 0.25);
}

/* bottom glow (lighter + smaller) */
.stat-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%; 

    background: linear-gradient(
        to top,
        rgba(245, 180, 0, 0.35), 
        rgba(245, 180, 0, 0.15),
        transparent
    );

    border-radius: 16px;
    z-index: 0;
}

/* content up */
.stat-box h3,
.stat-box p {
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

/* number */
.stat-box h3 {
    font-size: 36px;
    font-weight: 800;
    color: #142156;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.06);

    transform: translateY(-1px);
}

/* subtle blackish under h3 */
.stat-box h3::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: -6px;
    width: 80%;
    height: 14px;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.12),
        transparent
    );

    border-radius: 50%;
    filter: blur(6px);
    z-index: -1;
}

/* text */
.stat-box p {
    font-size: 15px;
    color: #142156;
    font-weight: 500;
    margin-bottom: 0;
}

.stat-box:hover {
    transform: translateY(-6px) scale(1.02);

    box-shadow:
        0 18px 35px rgb(255, 193, 7),
        inset 0 -8px 18px rgba(255, 193, 7, 0.35);
}

/* glow increase on hover */
.stat-box:hover::after {
    height: 40%;
    background: linear-gradient(
        to top,
        rgba(245, 180, 0, 0.45),
        rgba(245, 180, 0, 0.2),
        transparent
    );
}

/* h3 pop effect */
.stat-box:hover h3 {
    transform: translateY(-3px) scale(1.03);
    font-family: 'Poppins', sans-serif;

    text-shadow:
        0 4px 10px rgba(0, 0, 0, 0.18),
        0 8px 18px rgba(0, 0, 0, 0.12);
}

/* shadow under h3 stronger */
.stat-box:hover h3::after {
    opacity: 0.6;
    transform: scale(1.1);
}

/* text slight lift */
.stat-box:hover p {
    transform: translateY(-1px);
}




/* Section Background */
.instructor-section {
    position: relative;
    padding: 100px 0;
    background: url('../images/team/team-bg.jpeg') no-repeat center center;
    background-size: cover;
}


/* Container */
.container-inst {
    max-width: 1500px;
    margin: auto;
    padding: 10px 40px;
}

/* Title */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #142156;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}

/* Cards Layout */
.card-ins-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 column */
    gap: 25px;
}

/* Card */
.card-inst {
    width: 100%;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
}

.card-inst::after {
    z-index: 0;
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;

    background: radial-gradient(
        circle at center,
        rgba(255, 180, 0, 0.2),
        transparent 70%
    );

    opacity: 0;
    transition: 0.4s;
}

.card-inst:hover::after {
    opacity: 1;
}

.card-inst:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 0 10px rgba(230,163,0,0.7),
                0 0 25px rgba(230,163,0,0.6),
                0 0 50px rgba(230,163,0,0.5);
}

/* Image */
.card-inst img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* image */
.card-inst-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-inst-img,
.card-info {
    position: relative;
    z-index: 1;
}

/* hover zoom */
.card-inst:hover .card-inst-img img {
    transform: scale(1.05);
}

.card-inst:hover img {
    transform: scale(1.03);
}

/* Gradient overlay */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(to top, rgba(247, 233, 195, 0.5), transparent);
    transition: 0.5s;
}
.card-inst:hover .overlay {
    transform: scale(1.05) translateY(3px);
    border-radius: 0px 0px 14px 14px;
}



/* info box relative */
.card-info {
    position: absolute;
    bottom: -40px;
    left: 15px;
    right: 15px;
    background: #3b4672;
    border-radius: 0px 0px 40px 0px;
    padding: 10px 15px 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.card-info::before {
    content: "";
    position: absolute;
    left: 0;       
    top: 0;
    height: 100%;
    width: 6px;   
    background: #ffb400;
    z-index: 0;
}
.card-inst:hover .card-info {
    transform: translateY(-5px);
}
.card-info h4{
    font-size: 20px;
}
.card-info p{
    margin-bottom: 0;
    color: #ffffffad;
}
/* share exact position */
.share-box {
    position: absolute;
    top: -15px;   
    right: 20px; 
    z-index: 5;
}

/* main icon */
.share-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}
.share-icon:hover {
    background: #ffb400;
    color: #000;
}

.social-icons {
    position: absolute;
    bottom: 40px;  
    right: 0;

    display: flex;
    flex-direction: column;
    gap: 6px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px); 
    transition: 0.3s;
}

/* hover */
.share-box:hover .social-icons {
    opacity: 1;
    visibility: visible;

    transform: translateY(0); 
}
.share-icon i {
    opacity: 0.8;
    font-size: 14px;
}

/* social style */
.social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.social-icons a:hover {
    background: #ffb400;
    color: #000;
}

/* Section */
.programs {
    padding: 60px 0;
}

/* Wrapper */
.programs-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: url('../images/program/programs-bg-img.jpeg') no-repeat center;
    background-size: cover;
    background-position: left center;
}

/*  Dark blue overlay (right side) */


/* Content */
.programs-content {
    position: relative;
    z-index: 2;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 50%;
    color: #fff;
}

/* Title */
.programs-content h2 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
}

.program-btn {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* subtitle */
.programs-content p {
    font-size: 30px;
    margin: 0;
}

/* button */
.prog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffb400;
    color: #000;
    padding: 2px 22px; 
    border-radius: 30px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap; 
}

.prog-btn:hover {
    background: #e6a300;
    color:#142156;
}




/* ====== Section =======*/
.services {
    margin-bottom: 70px;
    padding: 80px 20px;
    background: url('../images/service/service-bg-img.jpeg') no-repeat center;
    background-size: cover;
}

/* Container */
.container-service {
    max-width: 1500px;
    margin: auto;
    padding: 0 15px;
}

/* Title */
.title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #1c2b5a;
    margin-bottom: 50px;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ================= CARD ================= */
.service-card {
    display: flex;
    background: #1f2f63;
    border-radius: 12px 12px 30px 12px;
    overflow: hidden;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 10px rgba(230,163,0,0.7),
                0 0 25px rgba(230,163,0,0.6),
                0 0 50px rgba(230,163,0,0.5);
}

/* ================= IMAGE ================= */
.card-img {
    width: 50%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= CONTENT ================= */
.card-content {
    width: 50%;
    padding-left: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ================= BADGE ================= */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    padding: 4px 8px;
    border-radius: 12px 4px 4px 4px;
    width: fit-content;
}

.badge span:first-child {
    font-size: 12px;
    font-weight: 600;
}

.badge .level {
    background: #ffb400;
    color: #000;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}

/* ================= TITLE ================= */
.card-content h3 {
    font-size: 15px;
    line-height: 1.4;
}

/* ================= META ================= */
.meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* User */
.user {
    display: flex;
    gap: 6px;
    align-items: center;
    position: relative;
}

.user img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.user p {
    font-size: 11px;
    margin: 0;
}

.user small {
    font-size: 10px;
    opacity: 0.7;
}

/* Divider (gradient line) */
.user::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.7),
        rgba(255,255,255,0.2)
    );
}

/* Duration */
.duration {
    font-size: 11px;
    color: #ffb400;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 5px;
}

/* ================= BUTTON ================= */
.service-btn {
    width: 50%;
    display: inline-block;
    padding: 6px 14px;
    background: #ffb400;
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    margin-top: auto;
    transition: 0.3s;
}

.service-btn:hover {
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
    }
    to {
        box-shadow: 
            0 0 20px rgba(255, 193, 7, 0.9),
            0 0 35px rgba(255, 193, 7, 0.6);
    }
}





/* Section */
.discount {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    background: url('../images/discount/discount-bg.jpeg') no-repeat center;
    background-size: cover;
    margin-bottom: 70px;
}

/* Yellow overlay */
/* .discount::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 180, 0, 0.6),
        rgba(255, 180, 0, 0.2)
    );
} */

/* Content */
.discount-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

/* Top text */
.discount-top {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

/* Price */
.price {
    font-size: 100px;
    font-weight: 900;
    color: #1c2b5a;
    margin-bottom: 40px;
}

/* Bottom box */
.discount-note {
    background: #1c2b5a;
    color: #E6A300;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;

    /* slanted shape */
    transform: skewX(-10deg);
}
.discount-note:hover {
    color: #ffffff;
}

/* Fix text skew */
.discount-note {
    transform: skewX(-10deg);
}

.discount-note::before {
    content: "";
    display: block;
    transform: skewX(10deg);
}




/* SECTION */

.drive-learning {
    margin-bottom: 70px;
    padding: 110px 20px;
    background: url('../images/drive-learning/drive-learning-bg.jpg') center/cover no-repeat;
}


/* CONTAINER */
.drive-container {
    max-width: 1500px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* LEFT */
.drive-left {
    width: 40%;
    position: relative;
}

/* BACK SHAPE */
.drive-bg-shape {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 90%;
    height: 90%;
    background: #f1f1f1;
    border-radius: 40px;
    z-index: 1;
}

/* IMAGE */
.drive-img-box {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: visible;
}

.drive-img-box img {
    width: 100%;
    display: block;
    border-radius: 40px;
}



.drive-badge {
    position: absolute;
    bottom: -20px;
    left: 330px;
    background: #1a2c6b;
    color: #fff;
    padding: 10px 18px;
    border-radius: 0px 0px 15px 0px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ICON IMAGE */
.drive-badge img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 4px;
}

/* RIGHT */
.drive-right {
    width: 55%;
}

.drive-right h2 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 100px;
}

/* CARDS */
.drive-cards {
    display: flex;
    gap: 25px;
}

/* CARD */
.drive-card {
    background: #fff;
    padding: 40px 20px 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: .3s;
}

.drive-card:hover{
    box-shadow: 0 0 10px rgba(230,163,0,0.7),
                0 0 25px rgba(230,163,0,0.6),
                0 0 50px rgba(230,163,0,0.5);
    transform: translateY(-5px);
}

.drive-icon {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        to bottom,
        rgba(255, 190, 0, 0.45) 0%,   
        rgba(255, 190, 0, 0.25) 40%,
        rgba(0, 0, 0, 0.18) 100%    
    );
}
/* WHITE INNER CIRCLE */
.drive-icon::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
}

/* YELLOW ICON CIRCLE */
.drive-icon::after {
    content: "";
    position: absolute;
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 2;
}

/* ICON */
.drive-icon img {
    width: 45px;
    position: relative;
    z-index: 3;
    height: 45px;
    border-radius: 0px;
}

/* TEXT */
.drive-card h3 {
    margin-top: 25px;
    font-size: 18px;
    color: #1a2c6b;
    margin-bottom: 18px;
}

/* BUTTON */
.drive-card a {
    display: inline-block;
    background: #ffb400;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;

    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

/* shine layer */
.drive-card a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
}

/*  hover e continuous animation */
.drive-card a:hover::before {
    animation: shineMove 1s linear infinite;
}

/* animation */
@keyframes shineMove {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.drive-card a:hover::before {
    left: 100%;
}

/* HOVER */
.drive-card:hover {
    transform: translateY(-10px);
}







/* SECTION */
.newsletter {
    padding: 100px 20px;
    background: #f4f4f4;
}

/* CONTAINER */
.newsletter-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 800;
    color: #2b3558;
    margin-bottom: 50px;
}

/* CARDS */
.newsletter-cards {
    display: flex;
    gap: 30px;
}

/* SINGLE CARD */
.news-card {
    background: #1f2f63;
    border-radius: 25px;
    overflow: hidden;
    flex: 1;
    text-align: left;
    position: relative;
}

.news-card:hover{
    box-shadow: 0 0 10px rgba(230,163,0,0.7),
                0 0 25px rgba(230,163,0,0.6),
                0 0 50px rgba(230,163,0,0.5);
    transform: translateY(-5px);
}

/* IMAGE */
.news-img {
    position: relative;
    height: 220px;
    overflow: visible;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WHITE SHAPE (top right circle cut) */
.news-img::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: -50px;
    width: 80px;
    height: 100px;
    background: #ffffff47;
    border-radius: 40px 0px 40px 40px;
}
.news-img:hover::after {
    background: #ffc10757;
}

/* CONTENT */
.news-content {
    padding: 25px;
}

.news-content h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 30px;
    margin-top: 25px;
}

/* LABEL */
.news-label {
    color: #ffb400;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

/* DATE */
.news-date {
    color: #d1d6e0;
    font-size: 13px;
    margin-bottom: 20px;
}

/* BUTTON */
.news-content a {
    display: inline-block;
    background: #ffb400;
    color: #000;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.news-content a:hover {
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
    }
    to {
        box-shadow:
            0 0 20px rgba(255, 193, 7, 0.9),
            0 0 35px rgba(255, 193, 7, 0.6);
    }
}








/* SECTION */
.mva-section {
    position: relative;
    padding: 140px 20px;
    overflow: hidden;

    background: url('../images/MVA/mva-bg-img.jpg') center/cover no-repeat;
}

/* OVERLAY */

/* CONTAINER */
.mva-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* TITLE */
.mva-container h2 {
    font-size: 38px;
    font-weight: 800;
    color: #2b3558;
    margin-bottom: 70px;
}

/* CARDS WRAPPER */
.mva-cards {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.mva-card:hover{
    box-shadow: 0 0 10px rgba(230,163,0,0.7),
                0 0 25px rgba(230,163,0,0.6),
                0 0 50px rgba(230,163,0,0.5);
    transform: translateY(-5px);
}


/* CARD */
.mva-card {
    position: relative;
    background: #2c3b73;
    color: #fff;
    padding: 50px 40px;
    border-radius: 35px;
    width: 420px;
    text-align: left;

    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ICON FLOAT (DOUBLE LAYER) */
.mva-icon {
    position: absolute;
    top: -40px;
    left: -25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    color: #2c3b73;
    box-shadow: 0 0 0 12px #ffffff3b, 0 10px 25px #ffc10766;
}

.mva-icon img {
    width: 60px;
    height: 60;
    object-fit: contain;
    display: block; 
}

/* TEXT */
.mva-card p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-left: 20px;
}


/* SECTION BG */
.nx-mva-news {
    margin-bottom: 70px;
    padding: 120px 20px;
    background: url('../images/mva-new-bg-img.jpeg') center/cover no-repeat;
}

/* CONTAINER */
.nx-mva-container {
    max-width: 900px;
    margin: auto;
}

/*  OUTER GREY CARD */
.nx-mva-outer {
    border-radius: 35px;
    box-shadow: 0 20px 20px rgba(0,0,0,0.25);
}

.nx-mva-outer:hover{
    box-shadow: 0 0 10px rgba(230,163,0,0.7),
                0 0 25px rgba(230,163,0,0.6),
                0 0 50px rgba(230,163,0,0.5);
    transform: translateY(-5px);
}

/*  MIDDLE YELLOW CARD */
.nx-mva-middle {
    position: relative; /*  MUST */
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
}

/*  TOP RIGHT GRADIENT EFFECT */
.nx-mva-middle::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at top right, #ffc1072e, transparent 70%);
    z-index: 1;
}
.nx-mva-middle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;

    background: radial-gradient(
        circle at bottom left,
        #ffffff59,
        transparent 70%
    );

    z-index: 1;
}
/* content always above */
.nx-mva-middle * {
    position: relative;
    z-index: 2;
}

/* TEXT */
.nx-mva-sub {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 35px;
}

.nx-mva-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;
}

/*  INNER WHITE CARD */
.nx-mva-inner {
    background: #f3f3f3;
    padding: 45px 40px;
    border-radius: 20px;

    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

/* INNER TEXT */
.nx-mva-inner h3 {
    font-size: 25px;
    font-weight: 700;
}

.nx-mva-inner h4 {
    font-size: 25px;
    margin-bottom: 30px;
    color: #444;
}

.nx-mva-inner p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BUTTON */
.nx-mva-btn {
    display: inline-block;
    background: #ffb400;
    color: #fff;
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px #21252954;
    transition: all 0.3s ease;
}

/* Hover Effect */
.nx-mva-btn:hover {
    background: #e6a300;
    box-shadow: 0 0 10px rgba(230,163,0,0.7),
                0 0 25px rgba(230,163,0,0.5);
    transform: translateY(-3px);
}




/* SECTION */
.testimonial-section {
    padding: 100px 20px;
    background: url('../images/testimonial/testimonial-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* CONTAINER */
.testimonial-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* TITLE */
.testimonial-container h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
}

/* CARD */
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    position: relative;
}

.testi-img {
    position: relative;   
    display: inline-block;
}
/* IMAGE */
.testi-img img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.testi-img::after {
    content: "";
    position: absolute;
    top: -26px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: #ffb400;
    border-radius: 50%;
    z-index: 2;
    border: 8px solid #ffffff;
}

/* CONTENT */
.testi-content {
    text-align: left;
    position: relative;
}

/* TOP */
.testi-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}


/* STARS */
.stars i {
    color: #ffb400;
    font-size: 18px;
}

/* TEXT */
.testi-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* NAME */
.testi-content h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.testi-content span {
    font-size: 16px;
    color: #777;
}

/* ARROWS */
.testi-arrows {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 70px;
}

.arrow {
    width: 45px;
    height: 45px;
    background: #eee;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s;
}

/* ICON */
.arrow i {
    color: #555;
    font-size: 24px;
}

/* HOVER */
.arrow:hover {
    background: #ffb400;
}

.arrow:hover i {
    color: #fff;
}
/* SLIDER ADD */
.testimonial-wrapper {
    position: relative;
    background: #ffffff;
    padding: 50px;
    border-radius: 0px 40px 40px 40px;
}

.testimonial-wrapper:hover{
    box-shadow: 0 0 10px rgba(230,163,0,0.7),
                0 0 25px rgba(230,163,0,0.6),
                0 0 50px rgba(230,163,0,0.5);
    transform: translateY(-5px);
}

/* hide all */
.testi-slide {
    display: none;
}

/* show active */
.testi-slide.active {
    display: flex;
    animation: fade 0.5s ease;
    gap: 35px;
}

/* animation */
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}




/* SECTION */
.faq-section {
    padding: 100px 20px;
    background: #ffffff;
}

/* CONTAINER */
.faq-container {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* TITLE */
.faq-container h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    
}

/* LIST */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.faq-item {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.3s;
}

.faq-item:hover {
    background: #fffaf0; /* soft golden tint */
    box-shadow: 0 0 10px rgba(230,163,0,0.4),
                0 0 25px rgba(230,163,0,0.3);
    transform: translateY(-4px);
    border-left: 4px solid #E6A300;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2c3b73;
}

/* ANSWER */
.faq-answer {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;

    display: none;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    display: block;
}

/* ICON ROTATE */
.faq-item.active i {
    transform: rotate(180deg);
}




/* SECTION */
.contact-section {
    position: relative;
    padding: 120px 20px;
    background: url('../images/contact-bg.jpeg') center/cover no-repeat;
    overflow: visible;
}


/* CONTAINER */
.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.contact-left {
    width: 45%;
}

.contact-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: #2b3558;
    margin-bottom: 15px;
}

.contact-left p {
    color: #2b3558;
    font-size: 18px;
}

/* FORM BOX */
.contact-form-box {
    width: 55%;
}

/* TITLE */
.contact-form-box h3 {
    margin-top: 10px;
    margin-bottom: 40px;
    font-weight: 800;
    text-align: center;
}

/* FORM GRID */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* INPUT */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: none;
    background: #ffffff;
    font-size: 14px;
    outline: none;
    margin-bottom: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* TEXTAREA FULL WIDTH */
.contact-form textarea {
    grid-column: span 2;
    height: 200px;
    resize: none;
}

/* BUTTON */
.contact-form button {
    width: 60%;
    grid-column: span 2;
    background: #1f2f63;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    justify-self: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Hover */
.contact-form button:hover {
    background: #E6A300;
    color: #142156;
    box-shadow: 0 0 10px rgba(230,163,0,0.6),
                0 0 25px rgba(230,163,0,0.4);
    transform: translateY(-3px);
}








/* MAP */
.map-section {
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;

    pointer-events: none;
}

.map-section:hover iframe {
    pointer-events: auto;
}



/* Footer */
.footer {
    background: #1e2b5c;
    color: #fff;
    padding: 70px 20px 30px;
}

.container {
    max-width: 1500px;
    margin: auto;
}

/* Top */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-top h2 {
    font-size: 40px;
    font-weight: 800;
    display: flex;
    align-items: center; 
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}


.square {
    position: relative;
    width: 25px;
    height: 25px;
    display: inline-block;
}

/* white box (back) */
.square::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background: #ffffff;

    top: -6px;
    left: -6px;

    z-index: 1;
}

/* yellow box (front) */
.square::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background: #f4b400;

    top: 0;
    left: 0;

    z-index: 2;
}
/* Call */
.call p {
    margin: 0;
    opacity: 0.7;
}

.call h3 {
    margin: 5px 0 0;
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* Text */
.footer-col h3 {
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
}

/* Divider */
.divider {
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 20px 0;
}

/* Social */
.social a {
    display: inline-block;
    margin-right: 12px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    text-align: center;
    line-height: 35px;
    color: #fff;
    transition: 0.3s;
}

.social a:hover {
    background: #f4b400;
    color: #000;
}

/* List */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-col ul li:hover {
    color: #EEBC2C;
    transform: translateX(5px);
}

/* Contact icons */
.contact li i {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Newsletter */
.footer-col input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
}

.footer-col button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: linear-gradient(to bottom, #f7c948, #e0a800);
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}

.footer-col button:hover {
    border: 1px solid #ffcc33;
    box-shadow: 
        0 0 10px rgba(255, 193, 7, 0.8),
        0 0 25px rgba(255, 193, 7, 0.6),
        0 0 40px rgba(255, 193, 7, 0.4);
}

/* ✨ shiny moving light */
.footer-col button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transition: 0.5s;
}

/* animate shine */
.footer-col button:hover::before {
    left: 100%;
}

/* Bottom */
.footer-bottom p {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    position: relative;
}

.footer-bottom p span {
    color: #EEBC2C;
    transition: 0.3s;
}

/* hover e animation */
.footer-bottom p span:hover {
    animation: glowText 1.5s ease-in-out infinite alternate;
}

/* animation */
@keyframes glowText {
    from {
        text-shadow: 0 0 4px #EEBC2C;
    }
    to {
        text-shadow: 0 0 10px #EEBC2C,
                     0 0 20px #ffcc33;
    }
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 60px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #EEBC2C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

/* arrow */
.scroll-top i {
    position: absolute;
    font-size: 18px;
    color: #0c2a2a;
}

/*  progress circle */
.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke: #0c2a2a;
    stroke-width: 3;
    stroke-linecap: round;

    stroke-dasharray: 138;
    stroke-dashoffset: 138;

    transition: stroke-dashoffset 0.2s linear;
}