@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --navy: #0d1b4c;
    --navy-dark: #091335;
    --green: #2e9e46;
    --green-dark: #227a35;
    --orange: #f5a623;
    --orange-dark: #e8940f;
    --light-blue: #eaf3fb;
    --text-muted: #6c7486;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #2b2f3a;
    overflow-x: hidden;
}



h1,
h2,
h3,
h4,
.brand-font {
    font-family: 'Poppins', sans-serif;
}

/* ============ SCROLL REVEAL ANIMATION ============ */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(.85);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

.stagger.active .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .6s ease, transform .6s ease;
}

.stagger-item:nth-child(1) {
    transition-delay: .05s;
}

.stagger-item:nth-child(2) {
    transition-delay: .15s;
}

.stagger-item:nth-child(3) {
    transition-delay: .25s;
}

.stagger-item:nth-child(4) {
    transition-delay: .35s;
}

.stagger-item:nth-child(5) {
    transition-delay: .45s;
}

.stagger-item:nth-child(6) {
    transition-delay: .55s;
}

/* ============ TOP BAR ============ */
.topbar {
    background: var(--navy-dark);
    color: #cfd6e8;
    font-size: .8rem;
    padding: 6px 0;
}

.topbar a {
    color: #cfd6e8;
    text-decoration: none;
    transition: color .25s ease;
}

.topbar a:hover {
    color: var(--orange);
}

.topbar .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    margin-left: 6px;
    transition: all .3s ease;
}

.topbar .social a:hover {
    background: var(--orange);
    color: var(--navy-dark);
    transform: translateY(-3px) rotate(8deg);
}

/* ============ HEADER ============ */
.main-header {
    background: #fff;
    padding: 14px 0;
}

.logo-badge {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.logo-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .4) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shine 4s infinite;
}

@keyframes shine {

    0%,
    60% {
        transform: translateX(-120%);
    }

    80% {
        transform: translateX(120%);
    }

    100% {
        transform: translateX(120%);
    }
}

.brand-title {
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0;
    line-height: 1.1;
}

.brand-sub {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-item i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all .3s ease;
}

.contact-item:hover i {
    background: var(--navy);
    color: #fff;
    transform: scale(1.1);
}

.contact-item .label {
    font-size: .75rem;
    color: var(--text-muted);
    display: block;
}

.contact-item .value {
    font-weight: 600;
    color: var(--navy);
    font-size: .92rem;
}

.btn-apply {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 6px 16px rgba(245, 166, 35, .35);
    text-decoration: none;
}

.btn-apply small {
    display: block;
    font-weight: 400;
    font-size: .7rem;
    opacity: .9;
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(245, 166, 35, .45);
    color: #fff;
}

/* ============ NAVBAR (STICKY) ============ */
.navbar-main {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow .3s ease, padding .3s ease;
}

.navbar-main.scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    padding: 0;
}

.navbar-main .nav-link {
    color: #e7eaf5 !important;
    font-weight: 500;
    font-size: .92rem;
    padding: 16px 18px !important;
    position: relative;
    transition: color .25s ease;
    letter-spacing: .3px;
}

.navbar-main .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--orange) !important;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-main .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    animation: dropdownFade .35s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stylish mega-ish dropdown for COURSES */
.mega-dropdown {
    border: none;
    border-radius: 14px;
    padding: 18px;
    margin-top: 0;
    min-width: 560px;
    box-shadow: 0 20px 45px rgba(9, 19, 53, .25);
    background: #fff;
    border-top: 4px solid var(--orange);
}

.mega-dropdown .mega-col-title {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 10px;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all .25s ease;
}

.mega-link i {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.05rem;
    transition: all .25s ease;
    flex-shrink: 0;
}

.mega-link:hover {
    background: var(--light-blue);
    color: var(--navy);
    transform: translateX(6px);
}

.mega-link:hover i {
    background: var(--navy);
    color: #fff;
}

.mega-link .mlt {
    font-weight: 600;
    font-size: .9rem;
    display: block;
}

.mega-link .mls {
    font-size: .74rem;
    color: var(--text-muted);
}

.mega-dropdown .mega-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 12px;
    color: #fff;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* simple dropdown for other menus */
.navbar-main .dropdown-menu {
    border: none;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(9, 19, 53, .2);
    border-top: 3px solid var(--green);
}

.navbar-main .dropdown-menu li a {
    border-radius: 7px;
    padding: 9px 14px;
    font-size: .88rem;
    color: #333;
    transition: all .2s ease;
}

.navbar-main .dropdown-menu li a:hover {
    background: var(--light-blue);
    color: var(--navy);
    padding-left: 20px;
}

/* ============ HERO ============ */
.hero {
    background: linear-gradient(180deg, var(--light-blue) 0%, #f7fbfe 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 158, 70, .08), transparent 70%);
    top: -100px;
    left: -100px;
}

.hero h1 {
    font-weight: 700;
    font-size: 2.0rem;
    line-height: 1.15;
    color: var(--navy);
    text-transform: uppercase;
}

.hero h1 .accent {
    background: linear-gradient(90deg, var(--green), #3fb95c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    font-size: 54px;
}

.bluetext {
    color: #002041;
    font-size: 54px;
}

.hero p.lead-text {
    color: var(--text-muted);
    font-size: 1.02rem;
    max-width: 520px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature .ic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: transform .3s ease, background .3s ease;
}

.hero-feature:hover .ic {
    background: var(--green);
    transform: rotateY(360deg);
}

.hero-feature span {
    font-size: .82rem;
    font-weight: 600;
    color: #333;
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all .3s ease;
    text-decoration: none;
}

.btn-navy:hover {
    background: var(--navy-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 27, 76, .3);
}

.btn-green {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all .3s ease;
    text-decoration: none;
}

.btn-green:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 158, 70, .3);
}

/* Hero image collage */
.hero-collage {
    position: relative;
    height: 420px;
}

.collage-img {
    position: absolute;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(9, 19, 53, .2);
    transition: transform .4s ease;
}

.collage-img:hover {
    transform: scale(1.04) rotate(0deg) !important;
    z-index: 5;
}

.c1 {
    width: 56%;
    height: 60%;
    top: 0;
    left: 6%;
    transform: rotate(-2deg);
    animation: float1 5s ease-in-out infinite;
}

.c2 {
    width: 42%;
    height: 46%;
    top: 4%;
    right: 0;
    transform: rotate(3deg);
    animation: float2 6s ease-in-out infinite;
}

.c3 {
    width: 48%;
    height: 50%;
    bottom: 0;
    left: 0;
    transform: rotate(2deg);
    animation: float2 5.5s ease-in-out infinite;
}

.c4 {
    width: 44%;
    height: 46%;
    bottom: 2%;
    right: 2%;
    transform: rotate(-3deg);
    animation: float1 6.5s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-14px) rotate(-2deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(3deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.hero-dots {
    display: flex;
    gap: 6px;
    margin-top: 16px;
}

.hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c7d0e6;
}

.hero-dots span.active {
    background: var(--green);
    width: 22px;
    border-radius: 5px;
    transition: all .3s ease;
}

/* ============ ABOUT ============ */
.section-pad {
    padding: 32px 0;
}

.trade-icon i {
    font-size: 35px;
}

.greentitle {
    color: #2c9944 !important;
    font-size: 30px !important;

}

.startitemborder {
    border-right: 1px solid #fff;
}

.eyebrow {
    color: #0d1b4c;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title {
    font-weight: 800;
    color: var(--navy);
    font-size: 2rem;
}

.section-title .hl {
    color: var(--green);
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(9, 19, 53, .15);
    transition: transform .5s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.03);
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.check-list i {
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
}

.notice-board {
    border: 2px dashed var(--orange);
    border-radius: 14px;
    padding: 20px;
    background: #0d1b4c;
    position: relative;
}

.notice-board::before {
    content: "\f4a4";
    font-family: "bootstrap-icons";
    position: absolute;
    top: -16px;
    left: 20px;
    background: var(--orange);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(245, 166, 35, .4);
}

.notice-board h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 14px;
}

.notice-board ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-board li {
    padding: 9px 0;
    border-bottom: 1px dashed #e6d4ae;
    font-size: .85rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: all .25s ease;
}

.notice-board li:hover {
    color: var(--orange);
    padding-left: 6px;
}

.process-strip {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.process-step small {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #222;
    max-width: 120px;
}

/* Connector */
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 60%;
    width: 90%;
    border-top: 2px dashed #b8c0cc;
    z-index: 1;
}

/* Arrow */
.process-step:not(:last-child)::before {
    content: "➜";
    position: absolute;
    top: 10px;
    right: -10px;
    color: #0b2d5c;
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
}

.notice-board li:last-child {
    border-bottom: none;
}

.btnbg1 {
    background: #e9f8ec !important;
}

.btnbg2 {
    background: #fff1d9 !important;
}

.btnbg3 {
    background: #d9e2ff !important;
}

.btnbg4 {
    background: #e3d0fe !important;
}

.btnbg5 {
    background: #ffcecc !important;
}

.btnbg6 {
    background: #e6f7f6 !important;
}

/* ============ TRADE CARDS ============ */
.trade-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 18px;
    text-align: center;
    border: 1px solid #eef0f6;
    height: 100%;
    transition: all .35s ease;
    cursor: pointer;
}

.trade-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(9, 19, 53, .12);
    border-color: transparent;
}

.trade-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    transition: all .4s ease;
}

.trade-card:hover .trade-icon {
    transform: rotateY(360deg);
}

.trade-card h6 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.trade-card small {
    color: var(--text-muted);
    display: block;
    margin-bottom: 14px;
}

.trade-btn {
    border: 1.5px solid;
    background: transparent;
    border-radius: 7px;
    padding: 7px 18px;
    font-size: .82rem;
    font-weight: 600;
    transition: all .3s ease;
    text-decoration: none;
}

/* ============ FACILITIES ============ */
.facility-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 20px rgba(9, 19, 53, .06);
    transition: all .35s ease;
}

.facility-card:hover {
    background: var(--navy);
    transform: translateY(-8px);
}

.facility-card:hover h6,
.facility-card:hover i {
    color: #fff !important;
}

.facility-card i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 12px;
    display: block;
    transition: .3s;
}

.facility-card h6 {
    font-weight: 600;
    margin-bottom: 0;
    transition: .3s;
}

.facility-row {
    display: flex;
    gap: 1px;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
}

.facility-item {
    flex: 1;
    min-width: 0;
}

.facility-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px 11px;
    text-align: center;
    height: 100%;
    transition: .3s;
}

#facilities {
    background: #f8f8f8;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.facility-card i {
    font-size: 42px;
    margin-bottom: 18px;
    display: block;
}

.facility-card h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* Different icon colors like the design */
.facility-item:nth-child(1) i {
    color: #1b8f3a;
}

.facility-item:nth-child(2) i {
    color: #1fa84b;
}

.facility-item:nth-child(3) i {
    color: #f4b000;
}

.facility-item:nth-child(4) i {
    color: #3d2ca5;
}

.facility-item:nth-child(5) i {
    color: #d32f2f;
}

/* ============ WHY CHOOSE US / STATS ============ */
.why-box {
    background: var(--navy);
    color: #fff;
    border-radius: 16px;
    padding: 21px;
}

.why-box h5 {
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 16px;
}

.why-box ul {
    list-style: none;
    padding: 0;
}

.why-box li {
    margin-bottom: 10px;
    font-size: .9rem;
}

.why-box li i {
    color: var(--green);
    margin-right: 8px;
}

.stats-box {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 16px;
    padding: 28px;
    color: #fff;
    height: 100%;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 1.8rem;
    margin-bottom: 6px;
    display: block;
}

.stat-num {
    font-weight: 800;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: .8rem;
    opacity: .9;
}

.placement-box {
    background: var(--navy-dark);
    color: #fff;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: transform .3s ease;
}

.placement-box:hover {
    transform: translateY(-6px);
}

.placement-box a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
}

.placement-box a i {
    transition: transform .3s ease;
}

.placement-box a:hover i {
    transform: translateX(6px);
}

/* ============ ACHIEVEMENTS / GALLERY / NOTICES ============ */
.info-panel {
    background: #f8f8f8;
    border-radius: 14px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(9, 19, 53, .06);
}

.info-panel h6.title {
    color: var(--navy);
    font-weight: 700;
    letter-spacing: .5px;
    font-size: .85rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.achieve-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .88rem;
    font-weight: 500;
}

.achieve-item i {
    color: var(--orange);
    font-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.gallery-grid img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .4s ease, filter .4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.notice-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.notice-date {
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    min-width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.notice-item .ntext {
    font-size: .85rem;
    font-weight: 500;
    color: #333;
}

.notice-item .ntext small {
    color: var(--text-muted);
    display: block;
    font-weight: 400;
}

/* ============ ADMISSION PROCESS ============ */
.process-strip {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(9, 19, 53, .06);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 12px;
    color: #fff;
    transition: transform .3s ease;
}

.process-step:hover .process-num {
    transform: scale(1.15) rotate(10deg);
}

.process-step small {
    font-weight: 600;
    color: #333;
    display: block;
    font-size: .82rem;
}

.helpline-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    height: 100%;
}

.helpline-box .num {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--orange);
}

/* ============ PARTNERS & TESTIMONIALS ============ */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    filter: grayscale(100%);
    opacity: .65;
    transition: all .35s ease;
    font-weight: 800;
    font-size: 1.1rem;
    color: #555;
    border: 1px solid #b9b4b4;
    border-radius: 7px;
}

.partner-logo img {
    width: 100%;
}

.logo-badge2 {
    background: #fff;
    border-radius: 18px;
    width: auto
}



.logo-badge2 img {
    padding: 15px;
    width: 120px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.testimonial-box {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(9, 19, 53, .08);
    position: relative;
}

.testimonial-box i.quote {
    font-size: 1.6rem;
    color: var(--light-blue);
    position: absolute;
    top: 14px;
    right: 18px;
}

.testimonial-box img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

/* ============ FOOTER ============ */
footer {
    background: var(--navy-dark);
    color: #c6cbdd;
    padding-top: 50px;
}

footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: .95rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #c6cbdd;
    text-decoration: none;
    font-size: .88rem;
    transition: all .25s ease;
}

footer ul li a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #fff;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-4px);
}

.copyright-strip {
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    margin-top: 40px;
}

/* Back to top */
.back-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(9, 19, 53, .35);
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
    z-index: 1000;
    text-decoration: none;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

.back-top:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-5px);
}

.diamond-grid {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform: rotate(45deg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    z-index: 2;
    border-radius: 12px;
    overflow: visible;
    margin-top: -185px;
    margin-right: -105px;
}

.diamond-cell {
    overflow: hidden;
    background: #ccc;
    /* border: 6px solid #fff; */
    box-shadow: 0 10px 25px rgba(10, 30, 60, .25);
    border-radius: 25px;
}

.diamond-cell img {
    width: 100%;
    height: auto;

    transform: rotate(-45deg) scale(2);
}

.diamond-accent {
    position: absolute;
    top: -14%;
    right: -14%;
    width: 34%;
    height: 34%;
    background: var(--orange);
    border: 6px solid #fff;
    z-index: 3;
}

.hero-visual-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-bg {
    position: absolute;
    inset: 6%;
    border-radius: 28px;

    transition: background 1s ease;
    z-index: 1;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Background Images */

.bg-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.bg-slider img.active {
    opacity: 1;
}

/* White Overlay */

.content {
    position: relative;
    z-index: 3;
}

/************************About us***********/
.about-box {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.about-box:hover {
    transform: translateY(-6px);
}

.about-box i {
    font-size: 42px;
    color: #00af3b;
    margin-bottom: 15px;
}

.smallheading {
    font-size: 17px;
    font-weight: 600;
}

.vision-section {
    background: #dbdbdb;
}

/* Vision */

.vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    height: 100%;
    transition: .3s;
}

.vision-card:hover {
    transform: translateY(-8px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
}

.icon-circle i {
    font-size: 34px;
}

/* Features */

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 7px 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #227a35;
    color: #fff;
}

.feature-card:hover p {
    color: #fff;
}

.feature-card i {
    font-size: 48px;
    color: #f88e00;
    margin-bottom: 20px;
}

.feature-card:hover i {
    color: #fff;
}

.hero-section {
    background: linear-gradient(135deg, #eef6ff, #ffffff);
}

.hero-badge {
    display: inline-block;
    background: #ffe6be;
    color: #0d1b4c;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title span {
    color: #00af3b;
}

.hero-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.hero-logo {

    background: #fff;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .12);
}

/* Common */

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

/**********************Admission******************/
.admission-hero {
    padding: 50px 0;

    background:
        linear-gradient(135deg, #eef5ff, #ffffff);

    overflow: hidden;

}

.hero-tag {

    display: inline-block;

    padding: 10px 22px;

    background: #dbeafe;

    border-radius: 40px;

    font-weight: 600;

    color: #0d6efd;

}

.hero-heading {

    font-size: 55px;

    font-weight: 700;

    line-height: 1.2;

}

.hero-heading span {

    color: #0d6efd;

}

.hero-desc {

    font-size: 18px;

    line-height: 1.9;

    color: #666;

}

.btn-admission {

    background: #0d6efd;

    color: #fff;

    padding: 14px 35px;

    border-radius: 40px;

    font-weight: 600;

    transition: .35s;

}

.btn-admission:hover {

    transform: translateY(-4px);

    background: #084298;

    color: #fff;

}

.hero-counter {

    background: #fff;

    padding: 22px;

    text-align: center;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;

}

.hero-counter:hover {

    transform: translateY(-8px);

}

.hero-counter h2 {
    color: #f5a623;

    font-weight: 700;

}

.hero-image-box {

    background: #fff;

    padding: 35px;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

    position: relative;

    transition: .4s;

}

.hero-image-box:hover {

    transform: rotate(-2deg) scale(1.02);

}


/*==============================
    Section Title
    ===============================*/

.section-subtitle {

    color: #0d6efd;

    font-weight: 600;

    letter-spacing: 2px;

}

.section-title {

    font-size: 42px;

    font-weight: 700;

    margin-top: 15px;

}


/*==============================
    Why Choose
    ===============================*/

.why-admission {

    background: #f8fbff;

}

.why-card {

    background: #fff;

    padding: 14px;

    border-radius: 25px;

    text-align: center;

    height: 100%;

    transition: .4s;

    position: relative;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.why-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 5px;

    background: #2e9e46;

    transition: .4s;

}

.why-card:hover::before {

    left: 0;

}

.why-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 45px rgba(13, 110, 253, .18);

}

.icon-box {

    width: 80px;

    height: 80px;

    margin: auto;

    border-radius: 50%;

    background: hsl(213, 100%, 96%);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    color: #f5a623;

    margin-bottom: 25px;

    transition: .35s;

}

.why-card:hover .icon-box {

    background: #2e9e46;

    color: #fff;

    transform: rotate(360deg);

}

.why-card h4 {

    font-weight: 700;

    margin-bottom: 15px;

}

.why-card p {

    color: #666;

    line-height: 1.8;

}

/***************Staff Page***********/
.teacher-hero {

    padding: 40px 0;

    background: linear-gradient(135deg, #edf5ff, #ffffff);

}

.teacher-tag {

    background: #dbeafe;

    padding: 10px 20px;

    border-radius: 40px;

    color: #0d6efd;

    font-weight: 600;

}

.teacher-title {

    font-size: 54px;

    font-weight: 700;

    line-height: 1.2;

}

.teacher-title span {

    color: #0d6efd;

}

.teacher-desc {

    font-size: 18px;

    line-height: 1.9;

    color: #666;

}

.hero-image {

    background: #fff;

    padding: 30px;

    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);

    transition: .4s;

}

.hero-image:hover {

    transform: translateY(-8px);

}


/* Principal */

.principal-box {

    background: #fff;

    border-radius: 25px;

    padding: 50px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.principal-img {

    width: 220px;

    height: 220px;

    object-fit: cover;

    border-radius: 50%;

    border: 8px solid #edf5ff;

}

.section-heading {

    font-size: 38px;

    font-weight: 700;

    margin-bottom: 20px;

}

blockquote {

    border-left: 5px solid #0d6efd;

    padding-left: 20px;

    font-size: 20px;

    font-style: italic;

    color: #0d6efd;

}


/* Faculty */

.faculty-section {

    background: #f6f9fc;

}

.section-subtitle {

    color: #0d6efd;

    font-weight: 600;

    letter-spacing: 2px;

}

.faculty-card {

    background: #fff;

    padding: 30px;

    border-radius: 25px;

    text-align: center;

    transition: .4s;

    height: 100%;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    position: relative;

    overflow: hidden;

}

.faculty-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: #00af3b;
    transform: scaleX(0);

    transition: .4s;

}

.faculty-card:hover::before {

    transform: scaleX(1);

}

.faculty-card:hover {

    transform: translateY(-10px);

}

.faculty-image {

    width: 140px;

    height: 140px;

    margin: auto;

    border-radius: 50%;

    overflow: hidden;

    border: 6px solid #edf5ff;

    margin-bottom: 20px;

}

.faculty-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.faculty-card:hover img {

    transform: scale(1.1);

}

.faculty-card h4 {

    font-weight: 700;

    margin-bottom: 5px;

}

.faculty-card span {

    display: block;

    color: #00af3b;
    margin-bottom: 15px;

    font-weight: 600;

}

.faculty-card p {

    color: #666;

    line-height: 1.8;

}

.faculty-social {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 20px;

}

.faculty-social a {

    width: 42px;

    height: 42px;

    background: #edf5ff;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #f1a11d;

    transition: .35s;

    text-decoration: none;

}

.faculty-social a:hover {

    background: #f1a11d;

    color: #fff;

    transform: rotate(360deg);

}

/******************Facilities************/
.facility-hero {

    padding: 40px 0;

    background: linear-gradient(135deg, #eef6ff, #ffffff);

}

.facility-tag {

    display: inline-block;

    background: #dbeafe;

    padding: 10px 22px;

    border-radius: 40px;

    font-weight: 600;

    color: #0d6efd;

}



.facility-image {

    background: #fff;

    padding: 25px;

    border-radius: 30px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);

    transition: .4s;

}

.facility-image:hover {

    transform: translateY(-8px);

}


/* Common */

.section-title {

    font-size: 40px;

    font-weight: 700;

    margin-bottom: 15px;

}

.small-title {

    color: #0d6efd;

    font-weight: 600;

    letter-spacing: 2px;

}


/* Campus */

.campus-overview {

    background: #fff;

}

.overview-image img {

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.overview-content h3 {

    font-weight: 700;

    margin-bottom: 20px;

}

.overview-content p {

    color: #666;

    line-height: 1.8;

}

.overview-box {

    background: #f7fbff;
    padding: 15px 06px;
    border-radius: 18px;
    margin-bottom: 5px;
    text-align: center;
    transition: .35s;
    border: 1px solid #eef2f7;

}

.overview-box:hover {

    background: #01ae3d;
    color: #fff;

    transform: translateY(-6px);

}

.overview-box p {
    line-height: 20px;
    margin-bottom: 0;
}

.overview-box:hover h2 {

    color: #fff;

}

.overview-box:hover p {

    color: #fff;

}

.overview-box h2 {

    font-weight: 700;
    color: #01ae3d;

}


/* Facility */

.facility-section {

    background: #f6f9fc;

}

.facility-card2 {

    background: #fff;

    padding: 30px 20px;

    border-radius: 25px;

    text-align: center;

    height: 100%;

    transition: .4s;

    position: relative;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.facility-card2::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 6px;

    background: #0d6efd;

    transition: .4s;

}

.facility-card2:hover::before {

    left: 0;
    background: #01ae3d;

}

.facility-card2 :hover {

    transform: translateY(-10px);


}

.facility-icon {

    width: 85px;

    height: 85px;

    margin: auto;

    background: #eaf3ff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    color: #01ae3d;

    margin-bottom: 25px;

    transition: .4s;

}

.facility-card2 p {
    margin-bottom: 0;
}

.facility-card2:hover .facility-icon {

    background: #f5a623;

    color: #fff;

    transform: rotate(360deg);

}

.facility-card2 h4 {

    font-weight: 700;

    margin-bottom: 15px;

}

.facility-card2 p {

    color: #666;

}

/**************Student Corner**********/
.student-banner {
    background: linear-gradient(135deg, #12B347, #1E2A78);
    padding: 21px 0;
    color: #fff;
}

.student-banner h1 {

    color: #fff;
}

.student-banner p {
    font-size: 18px;
    color: #f8f9fa;
}


/*=========================
 Section Heading
==========================*/



/*=========================
 Quick Link Cards
==========================*/

.student-card {
    background: #fff;
    border-top: 5px solid #12B347;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.student-card:hover {
    background: #1E2A78;
    color: #fff;
    transform: translateY(-8px);
}

.student-card:hover h5,
.student-card:hover p {
    color: #fff;
}

.student-card .icon {
    font-size: 45px;
    color: #F39C12;
    margin-bottom: 20px;
}

.student-card h5 {
    color: #1E2A78;
    font-weight: 700;
}

.student-card p {
    color: #666;
}


/*=========================
 Button
==========================*/

.student-btn {
    background: #F39C12;
    color: #fff;
    border-radius: 9px;
    padding: 4px 28px;
    border: none;
    font-weight: 600;
    font-size: 14px;
}

.student-btn:hover {
    background: #12B347;
    color: #fff;
}


/*=========================
 Notice Section
==========================*/

.notice-section {
    background: #1E2A78;
    padding: 70px 0;
}

.notice-section .section-title {
    color: #fff;
}

.notice-box {
    background: #fff;
    border-left: 6px solid #F39C12;
    border-radius: 12px;
    padding: 30px;
}

.notice-box ul {
    margin: 0;
    padding-left: 18px;
}

.notice-box li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.notice-box li:last-child {
    border: none;
}


/*=========================
 Student Services
==========================*/

.service-box {
    background: #F8F9FA;
    border-bottom: 5px solid #12B347;
    border-radius: 15px;
    padding: 35px;
    transition: .4s;
    height: 100%;
}

.service-box h4 {
    color: #1E2A78;
    font-weight: 700;
}

.service-box p {
    color: #555;
}

.service-box:hover {
    background: #12B347;
}

.service-box:hover h4,
.service-box:hover p {
    color: #fff;
}


/*=========================
 Downloads Section
==========================*/

.download-section {
    background: #F39C12;
    padding: 70px 0;
}

.download-section .section-title {
    color: #fff;
}

.download-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: .3s;
}

.download-card:hover {
    background: #1E2A78;
    color: #fff;
}

.download-card:hover h5 {
    color: #fff;
}


/*=========================
 Placement Section
==========================*/

.placement-section {
    background: #12B347;
    padding: 70px 0;
}

.placement-section .section-title {
    color: #fff;
}

.placement-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
}

.placement-card h4 {
    color: #1E2A78;
}


/*=========================
 Scholarship Section
==========================*/

.scholarship-section {
    background: #F8F9FA;
    padding: 70px 0;
    border-top: 5px solid #F39C12;
}

.scholarship-card {
    background: #fff;
    border-left: 5px solid #12B347;
    border-radius: 12px;
    padding: 25px;
}


/*=========================
 FAQ Section
==========================*/
/***************RTI***************/
.rti-banner {
    background: linear-gradient(135deg, #12B347, #1E2A78);
    color: #fff;
}

.about-box {
    background: #fff;
    padding: 35px;
    border-left: 6px solid #12B347;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    border-radius: 12px;
}

.highlight-box {
    background: #F39C12;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
}

.info-card {
    background: #fff;
    padding: 18px;
    text-align: center;
    border-top: 5px solid #12B347;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    border-radius: 12px;
    transition: .3s;
}

.bggrey1 {
    background: #eee;
}

.info-card:hover {
    background: #1E2A78;
    color: #fff;
}

.official-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    border-left: 6px solid #F39C12;
}

.downloads {
    background: #1E2A78;
}

.download-card {
    background: #fff;
    padding: 19px;
    text-align: center;
    border-radius: 12px;
}

.section-title {
    color: #1E2A78;
    font-weight: 700;
    margin-bottom: 40px;
}

.info-card i {
    font-size: 25px !important;
}

/****************Gallery**************/
.gallery-section {
    background: #f8f9fa;
}



.gallery-desc {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 17px;
}

/*=====================================
            Gallery Tabs
======================================*/

.gallery-tabs {
    gap: 15px;
}

.gallery-tabs .nav-link {
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    background: #fff;
    color: #1E2A78;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .35s;
}

.gallery-tabs .nav-link i {
    margin-right: 8px;
}

.gallery-tabs .nav-link:hover {
    background: #F39C12;
    color: #fff;
}

.gallery-tabs .nav-link.active {
    background: #12B347;
    color: #fff;
}

/*=====================================
          Gallery Item
======================================*/

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
}

.gallery-item img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: .6s;
}

/*=====================================
           Overlay
======================================*/

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 42, 120, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-overlay i {
    width: 70px;
    height: 70px;
    background: #F39C12;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transform: scale(.6);
    transition: .35s;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/*=====================================
      Video Play Button
======================================*/

.gallery-video .gallery-overlay i {
    font-size: 40px;
}

/*=====================================
         Hover Shadow
======================================*/

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
}

/*=====================================
        LightGallery Custom
======================================*/

.lg-backdrop {
    background: rgba(0, 0, 0, .95) !important;
}

.lg-toolbar {
    background: #1E2A78 !important;
}

.lg-next,
.lg-prev {
    background: #12B347 !important;
    border-radius: 50%;
}

.lg-next:hover,
.lg-prev:hover {
    background: #F39C12 !important;
}

.lg-thumb-item.active,
.lg-thumb-item:hover {
    border-color: #12B347 !important;
}

.lg-progress-bar .lg-progress {
    background: #F39C12 !important;
}

/*****************Contact us*************/
.contact-form {
    background: #ffe9c6;
    padding: 25px;
    border-radius: 15px;
}

.contact-card {
    border-radius: 20px;
    background: #00ad3a;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.contact-card p {
    margin-bottom: 0;
}

/******************Tender**********/
.tender-hero {

    padding: 40px 0;


}

.btngreen {
    background: #00af3b;
}


.search-box {

    border: 2px solid #12B347;
    border-radius: 50px;
    padding: 10px 20px;

}

.search-box:focus {

    border-color: #F39C12;
    box-shadow: none;

}

/*=========================
    Table
    ==========================*/

.table {

    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.table thead {

    background: #1E2A78;
    color: #fff;

}

.table th {

    padding: 15px;


}

.table td {

    vertical-align: middle;
    padding: 15px;

}

.table tbody tr:hover {

    background: #f5fdf7;

}

.instruction-section {

    background: #f8f9fa;

}

.instruction-box {

    background: #fff;
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #12B347;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    height: 100%;

}

.instruction-box h3 {

    color: #1E2A78;
    margin-bottom: 20px;

}

.instruction-box ul {

    padding-left: 18px;

}

.instruction-box li {

    margin-bottom: 12px;

}

/**************Courses****************/
.course-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.course-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .5s;
}

.course-card:hover img {
    transform: scale(1.08);
}

.course-body {
    padding: 25px;
}

.course-duration {
    display: inline-block;
    background: #12B347;
    color: #fff !important;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.course-body h4 {
    color: #1E2A78;
    font-weight: 700;
    margin-bottom: 15px;
}

.course-body p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.course-body span {
    color: #555;
    font-weight: 500;
}

.course-body i {
    color: #F39C12;
}

.course-body .btn {
    border-radius: 30px;
    padding: 7px 18px;
}

/*=====================================
        FEATURE SECTION
======================================*/

.feature-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.feature-box:hover {
    background: #1E2A78;
    transform: translateY(-6px);
}

.feature-box i {
    font-size: 42px;
    color: #12B347;
    margin-bottom: 15px;
}

.feature-box h5 {
    color: #1E2A78;
    font-weight: 600;
    margin: 0;
}

.feature-box:hover i {
    color: #F39C12;
}

.feature-box:hover h5 {
    color: #fff;
}



/*=====================================
        IMAGE
======================================*/

.course-hero img,
img.rounded {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
}

.popularcourse {
    background: #ffe9cd;
}

.bg-warning2 {
    background: #F39C12;
}

.modaltitle {
    font-size: 25px;
}

/*************notice************/
.category-box {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.category-box:hover {
    background: #1E2A78;
    color: #fff;
    transform: translateY(-8px);
}

.category-box i {
    font-size: 45px;
    color: #12B347;
    margin-bottom: 15px;
}

.category-box:hover i {
    color: #F39C12;
}


.bggreen1 {
    background: #00af3b;
    color: #fff;
    font-weight: 600;
}

.copyright-strip p {
    text-align: left;
    margin-bottom: 0;
}

.rightfooterlink {
    text-align: right;
}

.rightfooterlink a {
    text-align: right;
    color: #fff;
    text-decoration: none;
    padding-left: 10px;
}

.btnheaderarea {
    display: flex;
    flex-direction: row;
}

@media(max-width:991px) {


    .gallery-title {
        font-size: 34px;
    }

    .gallery-item img {
        height: 230px;
    }


    .hero-heading {

        font-size: 40px;

    }

    .section-title {

        font-size: 32px;

    }

    .hero-image-box {

        margin-top: 30px;
    }

    .facility-row {
        display: flex;
        gap: 1px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .diamond-grid {
        margin-top: 0;
    }

    .process-step:not(:last-child)::after,
    .process-step:not(:last-child)::before {
        display: none;
    }

    .process-step {
        margin-bottom: 25px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-collage {
        height: 300px;
        margin-top: 30px;
    }

    .mega-dropdown {
        min-width: 100%;
    }
}

@media(max-width:768px) {
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }

    .gallery-tabs .nav-link {
        width: 240px;
    }

    .gallery-title {
        font-size: 28px;
    }

    .gallery-item img {
        height: 220px;
    }
}

@media(max-width:660px) {
    .btnheaderarea {
        float: left;
        text-align: center;
        width: 100%;
        display: grid;
    }

    .hero-heading {

        font-size: 32px;

    }

    .hero-desc {

        font-size: 16px;

    }

    .hero-counter {

        padding: 15px;

    }
}