body {
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #1b7f5c;
    --secondary: #2fa36b;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 75px;
}

/* NAVBAR MENU BOLD */

.navbar-nav .nav-link{
    font-weight: 600;
    color: #222 !important;
    font-size: 16px;
    transition: 0.3s ease;
    position: relative;
}

/* HOVER EFFECT */
.navbar-nav .nav-link:hover{
    color: #1b7f5c !important;
}

/* UNDERLINE ANIMATION */
.navbar-nav .nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #1b7f5c;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after{
    width: 100%;
}

/* MOBILE */
@media(max-width:768px){

    .navbar-nav .nav-link{
        padding: 10px 0;
        font-size: 17px;
    }
}

.btn-primary {
    background: var(--primary);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #e8f5f1, #ffffff);
    padding: 30px 0;
}

.hero h1 {
    font-weight: 700;
    color: #1b1b1b;
}

.hero span {
    color: var(--primary);
}

/* HERO POINTS */
.hero-points{
    padding: 0;
    margin: 0;
    list-style: none;
}

/* ITEM */
.hero-points li{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 500;
    color: #222;
}

/* ICON */
.point-icon{
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg,#1b7f5c,#2fa36b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(27,127,92,0.18);
    transition: 0.3s ease;
}

/* HOVER */
.hero-points li:hover .point-icon{
    transform: rotate(-8deg) scale(1.08);
}

/* MOBILE */
@media(max-width:576px){

    .hero-points li{
        font-size: 15px;
        gap: 12px;
    }

    .point-icon{
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
        border-radius: 12px;
    }
}

/* FORM */
.form-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* SECTION */
.section {
    padding: 35px 0;
}

.section-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

/* CARDS */
.card-custom {
    border: none;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-custom:hover {
    transform: translateY(-5px);
}

/* CTA */
.cta {
    background: var(--primary);
    color: #fff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

/* MOBILE */
@media(max-width:768px) {
    .hero {
        text-align: center;
    }

    .form-box {
        margin-top: 20px;
    }
}

/* APPLY BUTTON */
.apply-btn {
    background: linear-gradient(135deg, #1b7f5c, #2fa36b);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(27, 127, 92, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 127, 92, 0.4);
    color: #fff;
}

/* GLOW ANIMATION */
.apply-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: -100%;
    transition: 0.4s;
}

.apply-btn:hover::after {
    left: 100%;
}

/* PULSE EFFECT */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(47, 163, 107, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(47, 163, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(47, 163, 107, 0);
    }
}

/* APPLY BUTTON FIXED */
.apply-btn{
    background: linear-gradient(135deg,#1b7f5c,#2fa36b);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(27,127,92,0.25);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* HOVER */
.apply-btn:hover{
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27,127,92,0.35);
}

/* SHINE EFFECT */
.apply-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transition: 0.6s;
}

.apply-btn:hover::before{
    left: 100%;
}

/* MOBILE FIX */
@media(max-width:768px) {
    .apply-btn {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}

/* UNIVERSITY SECTION */
.university-section {
    background: #f8fdfb;
}

/* CARD */
.uni-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.uni-card img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.uni-card p {
    font-weight: 600;
    margin: 0;
}

/* HOVER EFFECT */
.uni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* SWIPER SPACING */
.swiper {
    padding: 20px 0;
}

/* DESKTOP + MOBILE ONLY LEFT ALIGN */
p,
ul,
li {
    text-align: left;
    list-style-position: inside;
}

/* DESKTOP */
@media(min-width:992px) {
    p,
    ul,
    li {
        margin-left: 10px;
    }
}

/* MOBILE */
@media(max-width:767px) {

    p,
    ul,
    li {
        margin-left: 15px;
    }
}

/* TABLET CENTER */
@media(min-width:768px) and (max-width:991px) {

    p,
    ul,
    li {
        margin-left: 0;
        text-align: center;
    }
}

.uni-card p {
    text-align: center !important;
    margin-bottom: 0;
    font-weight: 600;
}

/* HERO BUTTON */
.hero .btn-primary,
.cta .btn-light {
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    transition: 0.3s;
}

.hero .btn-primary:hover,
.cta .btn-light:hover {
    transform: translateY(-3px);
}

/* ATTRACTIVE MODAL */
.custom-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.custom-modal .modal-header {
    background: linear-gradient(135deg, #1b7f5c, #2fa36b);
    color: #fff;
    border: none;
    padding: 18px 25px;
}

.custom-modal .modal-title {
    font-weight: 700;
}

.custom-modal .btn-close {
    filter: brightness(0) invert(1);
}

.custom-modal .modal-body {
    padding: 30px 25px;
    background: #f8fdfb;
}

.custom-modal .form-control,
.custom-modal .form-select {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #dce7e2;
    box-shadow: none;
    margin-bottom: 15px;
}

.custom-modal .form-control:focus,
.custom-modal .form-select:focus {
    border-color: #1b7f5c;
    box-shadow: 0 0 0 0.2rem rgba(27, 127, 92, 0.15);
}

.modal-submit-btn {
    background: linear-gradient(135deg, #1b7f5c, #2fa36b);
    border: none;
    color: #fff;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 127, 92, 0.25);
}

/* MOBILE */
@media(max-width:768px) {

    .hero h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .custom-modal .modal-body {
        padding: 22px 18px;
    }

    .navbar-brand img {
        height: 60px;
    }

    ul {
        padding-left: 0;
    }
}

/* =========================
        RANKING SECTION
        ========================= */

.ranking-section {
    background: linear-gradient(135deg, #eef8f4, #f7fffb);
    padding: 35px 0;
    position: relative;
    overflow: hidden;
}

/* HEADING */
.section-heading h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.section-heading h2 span {
    color: #1b7f5c;
}

.section-heading p {
    max-width: 760px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

/* CARD */
.rank-card {
    background: #fff;
    border-radius: 22px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(27, 127, 92, 0.08);
    border: 1px solid rgba(27, 127, 92, 0.08);
    position: relative;
    overflow: hidden;
}

/* TOP SHINE EFFECT */
.rank-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    left: -100%;
    top: 0;
    transition: 0.6s;
}

.rank-card:hover::before {
    left: 100%;
}

/* HOVER */
.rank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(27, 127, 92, 0.18);
}

/* IMAGE */
.rank-card img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    transition: 0.3s;
}

.rank-card:hover img {
    transform: scale(1.05);
}

/* MOBILE */
@media(max-width:991px) {

    .section-heading h2 {
        font-size: 36px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .rank-card {
        height: 145px;
    }
}

/* SMALL MOBILE */
@media(max-width:576px) {
    .ranking-section {
        padding: 20px 0;
    }

    .section-heading h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .section-heading p {
        font-size: 14px;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .rank-card {
        height: 100px;
        border-radius: 18px;
        padding: 10px;
    }

    .rank-card img {
        max-height: 120px;
    }
}

/* =========================
SPECIALIZATION SECTION
========================= */
.specialization-section {
    padding: 15px 0;
    background: linear-gradient(135deg, #f5fffb, #eef8f4);
    position: relative;
    overflow: hidden;
}

/* TITLE */
.special-title {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.special-title span {
    color: #1b7f5c;
}

.special-subtitle {
    color: #666;
    font-size: 17px;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* SWIPER */
.specializationSwiper {
    padding: 10px 5px 25px;
}

/* CARD */
.special-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px 15px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(27, 127, 92, 0.08);
    border: 1px solid rgba(27, 127, 92, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* TOP BORDER */
.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1b7f5c, #2fa36b);
}

/* HOVER */
.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 127, 92, 0.18);
}

/* ICON */
.icon-box {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #1b7f5c, #2fa36b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    font-size: 38px;
    box-shadow: 0 10px 20px rgba(27, 127, 92, 0.2);
}

/* TITLE */
.special-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

/* TEXT */
.special-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* BUTTON */
.special-btn {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #1b7f5c, #2fa36b);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.special-btn:hover {
    color: #fff;
    transform: scale(1.05);
}

/* MOBILE */
@media(max-width:991px) {

    .special-title {
        font-size: 36px;
    }

    .special-card {
        padding: 30px 20px;
    }
}

/* SMALL MOBILE */
@media(max-width:576px) {
    .specialization-section {
        padding: 25px 0;
    }

    .special-title {
        font-size: 28px;
    }

    .special-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .special-card {
        border-radius: 18px;
    }

    .special-card h4 {
        font-size: 20px;
    }

    .icon-box {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }
}

/* SAME HEIGHT FOR ALL SPECIALIZATION CARDS */
.specializationSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.special-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px !important;
    /* SAME HEIGHT */
}

/* BUTTON ALWAYS BOTTOM */
.special-btn {
    margin-top: auto;
}

/* MOBILE */
@media(max-width:576px) {
    .special-card {
        min-height: 250px !important;
    }
}

/* =========================
   WHY CHOOSE SECTION
========================= */

.why-section{
    padding: 70px 0;
    background: linear-gradient(135deg,#f5fffb,#eef8f4);
    position: relative;
    overflow: hidden;
}

/* HEADING */
.why-heading{
    margin-bottom: 50px;
}

.why-heading h2{
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.why-heading h2 span{
    color: #1b7f5c;
}

.why-heading p{
    max-width: 760px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

/* LEFT CARD */
.why-info-card{
    background: linear-gradient(135deg,#1b7f5c,#2fa36b);
    border-radius: 28px;
    padding: 35px 28px;
    color: #fff;
    height: 100%;
    box-shadow: 0 15px 40px rgba(27,127,92,0.2);
}

.why-info-card ul{
    margin: 0;
    padding-left: 18px;
}

.why-info-card li{
    color: #fff;
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.8;
}

/* MAIN CARD */
.why-card{
    background: #fff;
    border-radius: 28px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(27,127,92,0.08);
    border: 1px solid rgba(27,127,92,0.08);
    position: relative;
    overflow: hidden;
}

/* TOP BORDER */
.why-card::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,#1b7f5c,#2fa36b);
}

/* HOVER */
.why-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(27,127,92,0.18);
}

/* HEADER */
.why-card-header{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* ICON */
.why-icon{
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg,#1b7f5c,#2fa36b);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(27,127,92,0.2);
}

/* TITLE */
.why-card h4{
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.4;
}

/* TEXT */
.why-card p{
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* BUTTON */
.why-btn{
    background: linear-gradient(135deg,#1b7f5c,#2fa36b);
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 14px 20px;
    border-radius: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: auto;
    display: block;
}

.why-btn:hover{
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27,127,92,0.2);
}

/* SAME HEIGHT */
.row.align-items-stretch > [class*='col-']{
    display: flex;
}

/* TABLET */
@media(max-width:991px){

    .why-heading h2{
        font-size: 36px;
    }

    .why-card,
    .why-info-card{
        border-radius: 22px;
    }
}

/* MOBILE */
@media(max-width:576px){

    .why-section{
        padding: 25px 0;
    }

    .why-heading{
        margin-bottom: 35px;
    }

    .why-heading h2{
        font-size: 28px;
        line-height: 1.4;
    }

    .why-heading p{
        font-size: 14px;
        padding: 0 10px;
    }

    .why-card,
    .why-info-card{
        padding: 25px 20px;
        border-radius: 20px;
    }

    .why-card-header{
        gap: 12px;
    }

    .why-icon{
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 24px;
        border-radius: 15px;
    }

    .why-card h4{
        font-size: 20px;
    }

    .why-card p,
    .why-info-card li{
        font-size: 14px;
        line-height: 1.8;
    }

    .why-btn{
        padding: 12px 18px;
        border-radius: 14px;
    }
}

/* LEFT INFO CARD LIST */
.why-info-card ul{
    padding-left: 0;
    margin: 0;
    list-style: none;
}

/* LIST ITEM */
.why-info-card li{
    position: relative;
    padding-left: 32px;
    margin-bottom: 5px;
    text-align: left;
    line-height: 1.9;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
}

/* CUSTOM ICON */
.why-info-card li::before{
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #fff;
    font-size: 18px;
}

/* MOBILE */
@media(max-width:576px){

    .why-info-card li{
        font-size: 14px;
        padding-left: 28px;
        margin-bottom: 5px;
    }

    .why-info-card li::before{
        font-size: 16px;
        top: 2px;
    }
}

/* =========================
   ADMISSION PROCESS
========================= */
.admission-section{
    padding: 25px 0;
    background: linear-gradient(135deg,#f5fffb,#eef8f4);
    position: relative;
    overflow: hidden;
}

/* HEADING */
.admission-heading{
    margin-bottom: 25px;
}

.admission-heading h2{
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.admission-heading h2 span{
    color: #1b7f5c;
}

.admission-heading p{
    max-width: 720px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* WRAPPER */
.process-wrapper{
    background: #fff;
    border-radius: 32px;
    padding: 60px 20px 40px;
    position: relative;
    box-shadow: 0 15px 45px rgba(27,127,92,0.08);
    overflow: hidden;
}

/* LINE */
.process-line{
    position: absolute;
    top: 105px;
    left: 14%;
    width: 72%;
    height: 4px;
    background: linear-gradient(90deg,#1b7f5c,#2fa36b);
    z-index: 1;
    border-radius: 20px;
}

/* CARD */
.process-card{
    position: relative;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

/* STEP CIRCLE */
.step-circle{
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg,#1b7f5c,#2fa36b);
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    box-shadow: 0 12px 30px rgba(27,127,92,0.2);
    border: 8px solid #fff;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

/* HOVER */
.process-card:hover .step-circle{
    transform: translateY(-8px) scale(1.05);
}

/* STEP NUMBER */
.step-number{
    display: inline-block;
    margin-top: 18px;
    background: rgba(27,127,92,0.1);
    color: #1b7f5c;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
}

/* TITLE */
.process-card h4{
    font-size: 28px;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 14px;
    color: #111;
}

/* TEXT */
.process-card p{
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 0;
}

/* TABLET */
@media(max-width:991px){

    .admission-heading h2{
        font-size: 38px;
    }

    .process-wrapper{
        padding: 50px 25px 30px;
    }

    .process-line{
        display: none;
    }

    .process-card{
        margin-bottom: 10px;
    }
}

/* MOBILE */
@media(max-width:576px){

    .admission-section{
        padding: 50px 0;
    }

    .admission-heading{
        margin-bottom: 35px;
    }

    .admission-heading h2{
        font-size: 30px;
        line-height: 1.4;
    }

    .admission-heading p{
        font-size: 14px;
        padding: 0 10px;
    }

    .process-wrapper{
        padding: 35px 20px 20px;
        border-radius: 22px;
    }

    .step-circle{
        width: 75px;
        height: 75px;
        font-size: 28px;
        border-width: 6px;
    }

    .process-card h4{
        font-size: 22px;
    }

    .process-card p{
        font-size: 14px;
        line-height: 1.8;
    }

    .step-number{
        font-size: 12px;
        padding: 5px 14px;
    }
}

/* VALIDATION ERROR */
.text-danger{
    font-size: 13px;
    display: block;
    margin-top: -6px;
    margin-bottom: 6px !important;
    line-height: 1.2;
}

/* REMOVE EXTRA GAP */
.form-control,
.form-select{
    margin-bottom: 14px !important;
}

/* INVALID BORDER */
.is-invalid{
    border-color: #dc3545 !important;
    box-shadow: none !important;
}

/* PARTNERS SECTION */
.partners-section {
    background: #f4f6f8;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
}

.logo-item {
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.logo-item img {
    max-height: 50px;
    max-width: 100%;
}

/* hover effect */
.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 15px;
    animation: scroll 20s linear infinite;
    align-items: center;
}

.logo-item {
    width: 150px;          /* fixed width */
    height: 80px;          /* fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;   /* IMPORTANT */
}

/* Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* MOBILE */
@media(max-width:768px){
    .logo-item {
        width: 120px;
        height: 80px;
    }
}

/* FIX ANCHOR SCROLL ISSUE */
section {
    scroll-margin-top: 90px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}