* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1140px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.wrapper {
    overflow-x: hidden;
}

/* topbar-area-css-start */


.topbar {
    width: 100%;
    padding: 10px 0px;
    background: linear-gradient(135deg, #ff6436, #ff8d0c, #ff5a41);
    border-bottom: 1px solid #ffffff3a;
    overflow: hidden;
}

/* LEFT SIDE (same) */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ph-number {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ph-icon {
    font-size: 13px;
    color: #fff;
}

.ph-text {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

/* RIGHT SIDE TEXT SCROLL */
.topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

/* Moving Text */
.scroll-text {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.scroll-text span {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-left: 100%;
    animation: scrollLeft 35s linear infinite;
}

/* Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}


@media (max-width: 775px) {


    .topbar-left {
        display: none;
    }


}



/* topbar-area-css-end */


/* navbar-area-start */

body.nav-fixed {
    padding-top: 80px;
    /* same height as navbar */
}

/* Navbar */
.custom-navbar {
    background-color: #fefefe;
    padding: 10px 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.custom-navbar {
    overflow: visible !important;
    position: relative;
    z-index: 9999;
}

/* WHEN SCROLL */
.custom-navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
    height: 80px;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #1b6865;
    font-size: 16px;
    font-weight: 600;
    margin: 0 6px;
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
    cursor: pointer;
}

/* Icons before text */
.nav-link i {
    font-size: 14px;
    color: #e28605;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #e28605;
}

/* Underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #e28605;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Dropdown */


/* Show Dropdown */
.nav-item.show .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    z-index: 99999;
}


/* Mobile */
@media (max-width: 991px) {
    .navbar-nav {
        background: #f5f8ff;
        padding: 15px;
        border-radius: 10px;
    }

    .nav-item {
        position: relative;
    }

    .dropdown-menu-custom {
        position: static;
        box-shadow: none;
        transform: none;
        display: none;
    }

    .nav-item.show .dropdown-menu-custom {
        display: block;
    }
}

/* PRODUCT DROPDOWN BOX */
.dropdown-product {
    position: relative;
}

.product-dropdown-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    max-height: 350px;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    display: none;
    z-index: 99999;
    animation: fadeIn 0.3s ease;
}

/* Scrollbar */
.product-dropdown-box::-webkit-scrollbar {
    width: 5px;
}

.product-dropdown-box::-webkit-scrollbar-thumb {
    background: #1e3c72;
    border-radius: 10px;
}

/* Links */
.product-dropdown-box a {
    display: block;
    padding: 10px 15px;
    font-size: 13px;
    color: #ff4d4d;
    text-decoration: none;
    transition: 0.3s;
}

.product-dropdown-box a:hover {
    background: #f5f8ff;
    padding-left: 20px;
    color: #1e3c72;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PLUS ICON ROTATE */
.plus-icon {
    transition: 0.3s;
}

.dropdown-product.active .plus-icon {
    transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 991px) {
    .product-dropdown-box {
        position: static;
        width: 100%;
        box-shadow: none;
        max-height: none;
    }
}

.inst-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #ff4d4d, #ff9a00);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.inst-login-btn i {
    font-size: 14px;
}

.inst-login-btn:hover {
    background: linear-gradient(135deg, #e63946, #ff7b00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}







/* offcanvas-start */

.navbar-toggler {
    color: #dc3545 !important;
    border: 2px solid #ff603a !important;
}

/* OFFCANVAS MAIN */
.custom-offcanvas {
    width: 280px;
    /* background: linear-gradient(135deg, #0a2540, #1e3c72); */
    background-color: #fff;
    color: #fff;
    border: none;
}

/* HEADER */
.custom-header {
    position: relative;
    padding: 15px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* LOGO */
.custom-header .logo {
    height: 50px;
}

/* CLOSE BUTTON (TOP RIGHT CIRCLE) */
.close-btn {
    position: absolute;
    top: 23px;
    right: -18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #ff6436;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #ff6436;
}

/* HOVER EFFECT */
.close-btn:hover {
    background: #882101;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

.custom-offcanvas {
    height: 100vh;
    z-index: 99999 !important;
}

/* BODY */
.custom-offcanvas .offcanvas-body {
    padding: 15px;
}

/* NAV LINKS */
.custom-offcanvas .nav-link {
    color: #ff603a;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'BOOTSTRAP-ICONS';
}

/* ICON STYLE */
.custom-offcanvas .nav-link i {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.custom-offcanvas .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.custom-offcanvas .nav-link:hover i {
    background: #00b4db;
    color: #fff;
}

/* MOBILE DROPDOWN */
.mobile-dropdown .nav-link {
    justify-content: space-between;
}

/* PRODUCT MENU */
.mobile-product-menu {
    display: none;
    padding-left: 44px;
    margin-top: 5px;
    background-color: #0096c70f;
}

/* SUB LINKS */
.mobile-product-menu a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: #112d51;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'BOOTSTRAP-ICONS';
}

.mobile-product-menu a:hover {
    color: #00b4db;
    padding-left: 5px;
}

/* ACTIVE DROPDOWN */
.mobile-dropdown.active .mobile-product-menu {
    display: block;
}

/* PLUS ICON ROTATE */
.mobile-dropdown.active i.fa-plus {
    transform: rotate(45deg);
}

/* MOBILE PRODUCT SCROLL BOX */
.mobile-product-menu {
    display: none;
    max-height: 220px;
    /* 👈 control height here */
    overflow-y: auto;
    padding-left: 15px;
    margin-top: 8px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

/* SHOW WHEN ACTIVE */
.mobile-dropdown.active .mobile-product-menu {
    display: block;
}

/* SCROLLBAR DESIGN */
.mobile-product-menu::-webkit-scrollbar {
    width: 5px;
}

.mobile-product-menu::-webkit-scrollbar-thumb {
    background: #00b4db;
    border-radius: 10px;
}

.mobile-product-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

/* BUTTON */
.custom-offcanvas .talk {
    display: block;
    padding: 10px;
    border-radius: 8px;
    background: #00b4db;
    color: #fff;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.custom-offcanvas .talk:hover {
    background: #0096c7;
}

/* DESKTOP HOVER DROPDOWN */
.dropdown-product:hover .product-dropdown-box {
    display: block;
}

/* Keep hover active */
.dropdown-product:hover .plus-icon {
    transform: rotate(45deg);
}

/* Smooth */
.product-dropdown-box {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.dropdown-product:hover .product-dropdown-box {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    border: none;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover {
    background: #f5f8ff;
    padding-left: 20px;
}


/* CONTACT SECTION IN OFFCANVAS */
.offcanvas-contact {
    margin-top: 10px;
    padding: 15px;
    border-top: 5px solid #fe623a;
    border-radius: 12px;
    background: #f5f8ff;
}

/* TITLE */
.offcanvas-contact h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ff603a;
    font-family: 'BOOTSTRAP-ICONS';
}

/* CONTACT ITEM */
.offcanvas-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
    border: 1px solid #fe623a4f;
    padding: 8px 5px;
    border-radius: 8px;
    color: #fe653d;
}

/* ICON */
.offcanvas-contact-item i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #eb7557, #fe653d);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: 0.3s;
}

/* TEXT */
.offcanvas-contact-item p {
    font-size: 13px;
    margin: 0;
    font-weight: 500;
    color: #000;
    line-height: 1.5;
    font-family: 'BOOTSTRAP-ICONS';
    letter-spacing: 0.2px;
}

/* HOVER EFFECT */
.offcanvas-contact-item:hover i {
    transform: scale(1.1);
    background: linear-gradient(135deg, #017e71, #00f0de);
}

/* .offcanvas-contact-item {
    padding: 8px 10px;
    gap: 10px;
    justify-content: left;

} */

/* MOBILE ONLY */
@media (min-width: 992px) {
    .offcanvas-contact {
        display: none;
    }
}


/* navbar-area-end */

/* banner-text-area-css-start */


/* BANNER TEXT OVERLAY */
.banner-text {
    position: absolute;
    top: 26%;
    left: 10%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    width: 80%;
    text-align: center;
}

.banner-text .container {
    color: #fff;
    max-width: 600px;
}

/* SMALL HEADING */
.banner-text h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

/* MAIN HEADING */
.banner-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;

    /* YOUR GRADIENT */
    background: linear-gradient(135deg, #ff4d4d, #ff9a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* SOFT GLOW */
    text-shadow:
        0 0 8px rgba(255, 77, 77, 0.4),
        0 0 16px rgba(255, 154, 0, 0.35),
        0 0 24px rgba(255, 100, 0, 0.25) !important;

    animation: softGlow 2.5s ease-in-out infinite alternate;
}

/* SMOOTH ANIMATION */
@keyframes softGlow {
    from {
        text-shadow:
            0 0 6px rgba(255, 77, 77, 0.3),
            0 0 12px rgba(255, 154, 0, 0.25),
            0 0 18px rgba(255, 100, 0, 0.2);
    }

    to {
        text-shadow:
            0 0 12px rgba(255, 77, 77, 0.5),
            0 0 22px rgba(255, 154, 0, 0.45),
            0 0 32px rgba(255, 100, 0, 0.35);
    }
}



/* PARAGRAPH */
.banner-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #fff;
}

/* BUTTONS */

.apply-btn {
    background: #25D366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 16px;
}

.apply-btn:hover {
    background: #1ebe5d;
}




@media (max-width: 768px) {

    .banner-text {
        left: 40px;
        top: 18%;
    }

    .banner-text h4 {
        font-size: 20px;
    }

    .banner-text h1 {
        font-size: 28px;
    }

    .apply-btn {
        background: #25D366;
        color: #fff;
        padding: 11px 24px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
        font-size: 13px;
    }


}

/* banner-text-area-css-end */




/* banner-area-css-start */

.banner-area {
    padding: 0px 0px 0px;
    width: 100%;
    /* margin-top: 20px; */
    position: relative;
}

.banner-gallery {
    position: relative;
}

.banner-img1 {
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url(../img/banner/banner01.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-img2 {
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url(../img/banner/banner02.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.banner-img3 {
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url(../img/banner/banner03.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-img4 {
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url(../img/banner/banner04.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-img5 {
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url(../img/banner/banner05.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-img6 {
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url(../img/banner/banner06.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-img7 {
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url(../img/banner/banner07.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000096;
}

.banner-gallery {
    position: relative;
}

.banner-gallery .owl-nav {
    width: 94%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 40%;
    margin-left: 3%;
    z-index: 999;
}

.banner-gallery .owl-nav .owl-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff !important;
}

.banner-gallery .owl-nav .owl-prev span {
    font-size: 40px;
    color: #fff;
    margin-bottom: 23%;
}

.banner-gallery .owl-nav .owl-next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff !important;
}

.banner-gallery .owl-nav .owl-next span {
    font-size: 40px;
    color: #fff;
    margin-bottom: 23%;
}

.banner-gallery .owl-nav .owl-next:hover {
    background-color: #ff4d4d !important;
    border: 2px solid #fff !important;
    transition: 0.3s;
}

.banner-gallery .owl-nav .owl-next:hover span {
    color: #fff;
    transition: 0.3s;
}

.banner-gallery .owl-nav .owl-prev:hover {
    background-color: #ff4d4d !important;
    border: 2px solid #fff !important;
    transition: 0.3s;
}

.banner-gallery .owl-nav .owl-prev:hover span {
    transition: 0.3s;
    color: #fff;
}



@media (max-width: 768px) {

    .banner-area {
        position: relative;
        /* margin-top: 60px; */
    }

    .banner-img1 {
        width: 100%;
        height: 300px;
    }

    .banner-img2 {
        width: 100%;
        height: 300px;
    }

    .banner-img3 {
        width: 100%;
        height: 300px;
    }

    .banner-img4 {
        width: 100%;
        height: 300px;
    }

    .banner-img5 {
        width: 100%;
        height: 300px;
    }

    .banner-img6 {
        width: 100%;
        height: 300px;
    }

    .banner-img7 {
        width: 100%;
        height: 300px;
    }


    .banner-gallery .owl-nav .owl-prev span {
        font-size: 20px;
        color: #fff;
        margin-bottom: 15%;
        transition: 0.3s;
    }

    .banner-gallery .owl-nav .owl-prev {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid #fff !important;
        transition: 0.3s;
    }

    .banner-gallery .owl-nav .owl-next span {
        font-size: 20px;
        color: #fff;
        margin-bottom: 15%;
        transition: 0.3s;
    }

    .banner-gallery .owl-nav .owl-next {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid #fff !important;
        transition: 0.3s;
    }
}


/* banner-area-css-end */


/* features-css-start */

/* FEATURES SECTION POSITION */
.ksp-features {
    padding: 0;
    margin-top: -90px;
    position: relative;
    z-index: 10;
    transition: 0.3s;
}

/* CARD BASE */
.feature-card {
    padding: 30px 20px;
    border-radius: 8px;
    height: 100%;
    transition: 0.3s;
    color: #fff;
}

/* DIFFERENT SINGLE COLORS */
.col-lg-3:nth-child(1) .feature-card {
    background: #1d7267;
    /* your theme green */
}

.col-lg-3:nth-child(2) .feature-card {
    background: #0e2a4b;
    /* dark blue */
}

.col-lg-3:nth-child(3) .feature-card {
    background: #f59e0b;
    /* yellow */
}

.col-lg-3:nth-child(4) .feature-card {
    background: #dc3545;
    /* red */
}

/* TEXT */
.feature-card h3,
.feature-card p {
    color: #fff;
}

/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-box {
    font-size: 24px;
    color: #fff;
}

/* TEXT */
.feature-card h3 {
    color: #fff;
}

.feature-card p {
    color: #fff;
}

/* HOVER */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Headings */
.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Text */
.feature-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .ksp-features {
        margin-top: 0;
        padding: 30px 0;
    }
}

/* features-css-end */


/* our-service-css-start */

.our-services {
    padding: 70px 0;
    background: #ffffff;
}

.our-services .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.our-services .section-title p {
    color: #000;
    margin-bottom: 40px;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 5px 15px #ff4d4d26;
    border: 1px solid #ff4d4d4d;
    height: 100%;
}

/* ICON */
.service-card .icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff603b, #ff8d0c);
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 1%; */
    padding: 2%;
}

.service-card .icon i {
    color: #fff;
    font-size: 28px;
}

/* TEXT */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.service-card p {
    font-size: 14px;
    color: #000;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px #ff4d4d44;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .our-services {
        padding: 40px 0;
        background: #ffffff;
    }

    .service-card .icon {
        width: 60px;
        height: 60px;
        padding: 5%;
    }

    .service-card {
        background: #fff;
        padding: 20px 20px;
        text-align: center;
        border-radius: 15px;
        transition: 0.4s;
        box-shadow: 0 5px 15px #ff5f3b18;
        border: 1px solid #ff8d0c;
        height: 100%;
    }



}


/* our-service-css-end */

/* logo-rounded-section-css-start */

.rotating-logo-section {
    padding: 60px 0;

    /* Background Image */
    background: url("../img/logo-rounded-background.webp") center/cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    z-index: 1;
}

/* 🔥 OVERLAY */
.rotating-logo-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 65%);
    z-index: -1;
}

/* BOX */
.logo-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 0px 40px #ff5f3b83;
    border: 1px solid #ff603b;

    position: relative;
    z-index: 2;
}

/* ROTATING CIRCLE */
.rotating-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    animation: rotateLogo 10s linear infinite;
    overflow: hidden;
}

/* IMAGE */
.rotating-logo img {
    width: 150px;
}

/* ROTATION */
@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .logo-wrapper {
        width: 160px;
        height: 160px;
    }

    .rotating-logo {
        width: 110px;
        height: 110px;
    }

    .rotating-logo img {
        width: 120px;
    }
}

/* logo-rounded-section-css-end */

/* counter-css-start */

.counter-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f12606f5, #ffac13);
    color: #fff;
    text-align: center;
}

/* GRID */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ICON */
.counter-box .icon {
    font-size: 30px;
    margin-bottom: 0px;
    color: #fff;
    transition: 0.3s;
}

/* HOVER EFFECT */
.counter-box:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

/* PLUS STYLE */
.plus {
    font-size: 28px;
    margin-left: 2px;
}


/* BOX */
.counter-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.counter-box:hover {
    transform: translateY(-5px);
}

/* NUMBER */
.counter-box h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

/* TEXT */
.counter-box p {
    font-size: 16px;
    color: #fff;
}

/* 📱 RESPONSIVE */
@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-box h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #fff;
    }
}

@media (max-width: 576px) {
    /* .counter-grid {
        grid-template-columns: 1fr;
    } */
}

/* counter-css-end */

/* latest-section-css-start */

.latest-news-section {
    padding: 60px 20px;
    background: #fff;
}

/* Header */
.latest-news-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.latest-news-section .section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.latest-news-section .section-header p {
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgb(0 0 0 / 15%);
    border: 1px solid #00000026;
}
.news-card a {
    text-decoration: none;
}

/* Image */
.news-img {
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

/* Content */
.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

.news-content p {
    font-size: 14px;
    color: #000;
}

/* Hover Effect */
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-card:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .latest-news-section .section-header h2 {
        font-size: 26px;
    }
}

.news_btn a {
    text-decoration: none;
    color: #ffffff;
    background-color: #F55011;
    padding: 10px 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.news_btn {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.blog-image img {
    width: 80%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* latest-section-css-end */


/* member-css-start */

.member-section {
    padding: 80px 20px;
    background: #f3efec;
}

/* WRAPPER */
.member-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LEFT */
.member-left {
    width: 35%;
}

.member-left h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
}

.member-left h2 span {
    color: #b1122b;
}

.member-left p {
    margin: 10px 0 20px;
    color: #000;
}

.member-btn {
    display: inline-block;
    background: #ff6436;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

/* RIGHT */
.member-right {
    width: 65%;
}

/* CARD */
.member-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.member-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* INFO BOX */
.member-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
}

.member-info h4 {
    margin: 0;
    font-size: 16px;
}

.member-info span {
    font-size: 13px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .member-wrapper {
        flex-direction: column;
    }

    .member-left,
    .member-right {
        width: 100%;
        text-align: center;
    }

    .member-left h2 {
        font-size: 28px;
    }
}

/* member-css-end */

/* our-institution-css-start */

.institution-section {
    padding: 80px 0;
    background: #f9fdfc;
}

/* TITLE */
.institution-section .section-title {
    font-size: 34px;
    font-weight: 700;
    color: #000;
}

.institution-section p {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
    padding-bottom: 7px;
}

/* CARD */
.inst-card-top-institute {
    background: linear-gradient(135deg, #ff8c0e, #ff603a);
    border-radius: 14px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* border: 1px solid #017e712a; */
    border: 1px solid #ff67348f;
    padding: 25px 15px;
    position: relative;
}

/* IMAGE (HALF STYLE) */
.inst-img {
    height: 180px;
    overflow: hidden;
}

.inst-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* CONTENT */
.inst-content {
    padding: 20px;
    text-align: center;
}

.inst-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

/* BUTTON */
.inst-btn {
    display: inline-block;
    padding: 10px 88px;
    border-radius: 20px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 10px;
}

/* SEE MORE BUTTON */
.see-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff8c0e, #ff603a);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}



.inst-card-top-institute:hover img {
    transform: scale(1.1);
    transition: 0.3s;
}

.inst-card-top-institute:hover .inst-btn {
    background: #fff;
    color: #ff603a;
    transition: 0.3s;
}



/* RESPONSIVE */
@media (max-width: 992px) {
    .inst-img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .inst-content h5 {
        font-size: 16px;
    }

    .inst-img {
        height: 140px;
    }
}

/* our-institution-css-end */

/* institute-details-css-start */

.inst-details {
    padding: 80px 0;
    background: #fff;
}

/* BANNER */
.inst-banner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.inst-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* OVERLAY */
.inst-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);

    display: flex;
    justify-content: center;
    align-items: center;
}

.inst-banner h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

/* ABOUT */

.inst-about {
    text-align: left;
}

.inst-about h2 {
    font-size: 30px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.inst-about p {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
}

/* GALLERY */
.inst-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.inst-gallery img {
    height: 200px;
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.inst-gallery img:hover {
    transform: scale(1.08);
}

/* VIDEO */
.inst-video h2 {
    font-size: 30px;
    color: #017e71;
}

.video-box {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.video-box iframe {
    width: 100%;
    height: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .inst-banner img {
        height: 300px;
    }

    .inst-banner h1 {
        font-size: 30px;
        text-align: center;
    }

    .video-box {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .inst-gallery {
        grid-template-columns: 1fr;
    }

    .inst-about {
        text-align: center;
    }
}

/* institute-details-css-end */


/* apply-css-start */

.apply-section {
    padding: 40px 20px;
}

.apply-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #ff8d0d, #ff5d3d);
    border-radius: 60px;
    padding: 25px 40px;
    color: #fff;
    flex-wrap: wrap;
}

/* Logo */
.apply-logo img {
    width: 80px;
    height: 80px;
    border: 1px solid #dc3545;
    object-fit: cover;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 0px 15px #ffffff8c;
}

/* Content */
.apply-content {
    flex: 1;
    text-align: center;
}

.apply-content h2 {
    font-size: 26px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.apply-content p {
    font-size: 14px;
    opacity: 0.8;
    color: #fff;
    font-weight: 500;
}

.banner-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Button */


.btn1 {
    background: #ff4d4d;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: 0.3s;
}

.btn1:hover {
    background: #fff;
    color: #ff4d4d;
    transition: 0.3s;
}

.btn2 {
    background: #fff;
    color: #ff4d4d;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: 0.3s;
    font-size: 16px;
}

.btn2:hover {
    background: #ff4d4d;
    color: #fff;
    transition: 0.3s;
}



/* Responsive */
@media (max-width: 768px) {
    .apply-container {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
    }

    .apply-logo img {
        width: 80px;
        height: 80px;
        border: 1px solid #dc3545;
        object-fit: cover;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0px 0px 15px #fff;
    }

    .apply-content h2 {
        font-size: 22px;
    }

    .btn2 {
        background: #fff;
        color: #ff4d4d;
        padding: 10px 12px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        border: 2px solid #fff;
        transition: 0.3s;
    }



    .btn1 {
        background: #fff;
        color: #ff4d4d;
        padding: 10px 12px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        border: 2px solid #fff;
        transition: 0.3s;
    }



}

/* apply-css-end */

/* footer-css-start */

.footer-section {
    background: #0d0d0d;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

/* Cards */
.footer-card h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}

.footer-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    color: #fff;
    font-weight: 500;
}

/* Logo */
.footer-logo {
    width: 90px;
    margin-bottom: 10px;
}

/* Social */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    background: #bba4a036;
    padding: 8px;
    border-radius: 50%;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    padding-left: 3%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.footer-social a:hover {
    background: #e63946;
}

/* List */
.footer-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.footer-card ul li {
    margin-bottom: 10px;
}

/* Links */
.footer-card ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: 0.3s;
}

.footer-card ul li a i {
    margin-right: 8px;
}

/* Underline hover */
.footer-card ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #e63946;
    transition: 0.3s;
}

.footer-card ul li a:hover {
    color: #fff;
}

.footer-card ul li a:hover::after {
    width: 100%;
}

/* Contact list */
.footer-contact li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: #e63946;
}

/* Bottom */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 15px;
    font-size: 13px;
    color: #fff;
}

.footer-bottom p {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    margin: 0;

}

.footer-bottom span a {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.footer-bottom span a {
    text-decoration: none;
    color: #b1122b;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-card {
        text-align: left;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        margin-top: 10px;
    }
}

.admin {
    outline: 0;
    padding: 10px 25px;
    background-color: #ff5b3e;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #ff5b3f;
    transition: 0.3s;
    text-decoration: none;
}

.admin:hover {

    background-color: transparent;
    color: #fff;
    border: 1px solid #ff5b3e;
    transition: 0.3s;
}



/* footer-css-end */


/* about-us-banner-css-start */

.about-us-banner {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(270deg, #ff6436, #e9d91d, #ff900a);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
}

/* SMOOTH LEFT ↔ RIGHT ANIMATION */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* CONTENT */
.about-content {
    position: relative;
    z-index: 2;
}

.about-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumb-box a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.breadcrumb-box a:hover {
    color: #b1122b;
}

.breadcrumb-box span {
    color: #fff;
    font-size: 14px;
}

.breadcrumb-box .active {
    color: #b1122b;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-us-banner {
        padding: 60px 0;
    }

    .about-content h1 {
        font-size: 28px;
    }

    .breadcrumb-box {
        flex-wrap: wrap;
        gap: 5px;
    }
}


/* about-us-banner-css-end*/


/* about-us-section-main-css-start */

.about-us-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #01beff, #ffd700); */
    background-color: #fefefe;
}

.about-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    animation: rotateLogo 30s linear infinite;
}

/* OPTIONAL ROTATE (remove if not needed) */
@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-content {
    color: #000;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff5b3e;
    text-align: left;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #000;
    text-align: left;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
        text-align: center;
    }

    .about-logo {
        margin-bottom: 30px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-logo img {
        max-width: 220px;
        width: 100%;
        height: auto;
        animation: rotateLogo 30s linear infinite;
    }
}


/* about-us-section-main-css-end */


/* why-choose-us-section-css-start */

.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6633, #ff8d0d);
}

.why-choose-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.why-choose-section .section-title p {
    font-size: 15px;
    margin-bottom: 40px;
    color: #fff;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
}

/* ICON */
.why-card .icon {
    font-size: 40px;
    color: #01beff;
    margin-bottom: 15px;
    transition: 0.4s;
}

/* TEXT */
.why-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-card:hover .icon {
    color: #ffd700;
    transform: rotate(10deg) scale(1.1);
}

/* SMOOTH BACKGROUND EFFECT */
.why-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, #f54409, #d47304);
    border: 1px solid #fff;
    left: 0;
    bottom: 0;
    transition: 0.4s;
    z-index: 0;
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover h4,
.why-card:hover p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.why-card:hover .icon {
    position: relative;
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section .section-title h2 {
        font-size: 28px;
    }

    .why-card {
        background: #fff;
        padding: 10px 12px;
        border-radius: 12px;
        text-align: center;
        transition: 0.4s ease;
        position: relative;
        overflow: hidden;
        height: 100%;
        /* margin-top: 10px; */
    }
}

/* why-choose-us-section-css-end */


/* mission-vision-css-start */

.mission-vision-section {
    padding: 80px 0;
    background: #fff;
    /* ✅ pure white background */
}

/* HEADER */
.mission-vision-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff5b3e;
    /* ✅ gradient text */
    /* background: linear-gradient(135deg, #00f0de, );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.mission-vision-section .section-title p {
    font-size: 15px;
    margin-bottom: 40px;
    color: #000;
}

/* CARD */
.mv-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
    border: 1px solid #ff5b3e5e;
    box-shadow: 0px 0px 15px #ff5b3e30;
    transition: 0.3s;
}

/* ICON */
.mv-icon {
    font-size: 45px;
    color: #ff5b3e;
}

/* TEXT */
.mv-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff5b3e;
    /* ✅ heading gradient */
    /* background: linear-gradient(135deg, #00f0de, #017e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.mv-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
}

/* HOVER EFFECT */
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* HOVER OVERLAY */
.mv-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff900a, #ff6635);
    transition: 0.4s;
    z-index: 0;
}

.mv-card:hover::before {
    height: 100%;
}

/* TEXT COLOR ON HOVER */
.mv-card:hover h3,
.mv-card:hover p {
    color: #fff;
    -webkit-text-fill-color: #fff;
    /* important for gradient text */
    position: relative;
    z-index: 1;
}

.mv-card:hover .mv-icon {
    color: #fff;
    transform: scale(1.2) rotate(8deg);
    position: relative;
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }

    .mission-vision-section .section-title h2 {
        font-size: 28px;
    }

    .mv-card {
        margin-bottom: 20px;
    }
}

/* mission-vision-css-end */


/* Gallery-css-start */

.gallery-section {
    padding: 80px 0;
    background: #fff;
}

/* HEADER */
.gallery-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff5b3e;
    /* background: linear-gradient(135deg, #00f0de, #017e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.gallery-section .section-title p {
    font-size: 14px;
    margin-bottom: 40px;
    color: #000;
    font-weight: 600;
}

/* CARD */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

/* IMAGE */
.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* LIGHT OVERLAY */
.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

/* HOVER EFFECT */
.gallery-card:hover img {
    transform: scale(1.15);
}

.gallery-card:hover::before {
    opacity: 1;
}

/* EXTRA SMOOTH GLOW */
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00f0de33, #017e7133);
    opacity: 0;
    transition: 0.4s;
}

.gallery-card:hover::after {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-section .section-title h2 {
        font-size: 28px;
    }

    .gallery-card img {
        height: 220px;
    }
}

/* Gallery-css-end */

/* contact-us-css-start */

.contact-section {
    padding: 80px 0;
    background: #fff;
}

/* HEADER */
.contact-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff5b3e;
    /* background: linear-gradient(135deg, #00f0de, #017e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.contact-section .section-title p {
    color: #000;
    margin-bottom: 40px;
    font-size: 14px;
}

/* INFO BOX */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

/* ITEM */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

/* ICON */
.contact-item .icon {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8e0d, #ff5841);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

/* TEXT */
.contact-item .text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item .text p {
    margin: 0;
    font-size: 14px;
    color: #000;
    line-height: 1.6;
}

/* LINKS */
.contact-item a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* HOVER EFFECT */
.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-item:hover .icon {
    transform: rotate(10deg) scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-item {
        padding: 15px;
    }

    .contact-item .text h4 {
        font-size: 16px;
    }
}




.contact-info .info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-info .info-box i {
    font-size: 20px;
    color: #017e71;
    background: #00f0de22;
    padding: 12px;
    border-radius: 50%;
    transition: 0.3s;
}

.contact-info .info-box h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.contact-info .info-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* HOVER */
.contact-info .info-box:hover {
    background: #f9f9f9;
}

.contact-info .info-box:hover i {
    transform: scale(1.1);
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px #00000036;
    height: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
    font-size: 14px;
}

/* INPUT FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00f0de;
    box-shadow: 0 0 5px rgba(0, 240, 222, 0.3);
}

/* BUTTON */
.contact-form button {
    background: linear-gradient(135deg, #ff8e0c, #ff5b3f);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-section .section-title h2 {
        font-size: 28px;
    }
}

/* contact-us-css-end */

/* map-section-css-start  */

.map-area {
    padding: 40px 0px;
    background-color: #fff;
}

.map-section {
    overflow: hidden;
    width: 100%;
    border-radius: 15px;
}

/* map-section-css-end  */


/* activity-details-css-start */

.activity-section {
    padding: 80px 0;
    background: #fff;
}

/* HEADER */
.activity-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff5b3e;
    /* background: linear-gradient(135deg, #00f0de, #017e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.activity-section .section-title p {
    color: #000;
    margin-bottom: 40px;
}

/* CARD */
.activity-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 5px 20px #ff5b3e1f;
    height: 100%;
    border: 1px solid #ff5b3e5b;
}

/* IMAGE */
.activity-img {
    overflow: hidden;
}

.activity-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}

/* CONTENT */
.activity-content {
    padding: 20px;
    text-align: left;
}

.activity-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.activity-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.action-btn {
    padding: 7px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

.edit-btn {
    background: #2563eb;
    color: #fff;
}
.delete-btn {
    background: #dc2626;
    color: white;
}

/* BUTTON */
.btn-know {
    display: inline-block;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff8e0b, #ff6238);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-know:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* HOVER */
.activity-card:hover {
    transform: translateY(-10px);
}

.activity-card:hover img {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .activity-img img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .activity-section {
        padding: 60px 0;
    }

    .activity-section .section-title h2 {
        font-size: 28px;
    }
}

/* activity-details-css-end */


/* instrumentail-music-css-start */
.instrument-section {
    padding: 80px 0;
    background: #fff;
}

/* IMAGE */
.instrument-img {
    border-radius: 15px;
    overflow: hidden;
}

.instrument-img img {
    width: 100%;
    transition: 0.5s ease;
}

.instrument-img:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.instrument-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff5b3e;
    text-align: left;
}

.instrument-content p {
    font-size: 15px;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

/* LIST */
.instrument-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.instrument-list li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.instrument-list i {
    color: #017e71;
}

/* BUTTON */
.instrument-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background: linear-gradient(135deg, #00f0de, #017e71);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.instrument-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* CARDS GRID */
.instrument-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CARD */
.inst-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #ff6733;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ICON BOX (NEW PREMIUM LOOK) */
.icon-box {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgb(1 126 113 / 76%);
    transition: 0.3s;
}

.icon-box i {
    font-size: 22px;
    color: #017e71;
}

/* TEXT */
.inst-card h5 {
    font-size: 14px;
    margin: 0;
    color: #000;
}

/* HOVER EFFECT */
.inst-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #ff7426, #ff6139);
}

.inst-card:hover h5 {
    color: #fff;
}

.inst-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.2);
}

.inst-card:hover i {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .instrument-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .instrument-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .instrument-content {
        text-align: left;
    }

    .instrument-list li {
        justify-content: start;
    }

    .instrument-content h2 {
        font-size: 26px;
    }
}



/* instrumentail-music-css-end*/


/* Classical Dance Forms-css-start */


.dance-section {
    padding: 80px 0;
    background: #fff;
}

/* IMAGE */
.dance-img {
    overflow: hidden;
    border-radius: 15px;
}

.dance-img img {
    width: 100%;
    border-radius: 15px;
    transition: 0.5s;
}

.dance-img:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.dance-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #ff5b3e;
    text-align: left;
}

.dance-content p {
    font-size: 15px;
    color: #000;
    margin-bottom: 20px;
}

/* LIST */
.dance-list {
    list-style: none;
    padding: 0;
}

.dance-list li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dance-list i {
    color: #017e71;
}

/* CARD GRID */
.dance-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* CARD */
.dance-card {
    text-align: center;
    padding: 20px 10px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ff5b3e;
    transition: 0.3s;
}


.inst-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 14px;
    text-align: center;

    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ICON BOX */
.icon-box {
    width: 55px;
    height: 55px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff9108, #ff5e3c);
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* HOVER */
.dance-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #ff9108, #ff5e3c);
}

.dance-card:hover h5,
.dance-card:hover i {
    color: #fff;
}

.dance-card:hover .icon-box {
    background: #fff;
    color: #ff5b3e;
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .dance-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .dance-content h2 {
        font-size: 28px;
        font-weight: 700;
        color: #017e71;
    }
}

@media (max-width: 576px) {
    .dance-cards {
        grid-template-columns: 1fr;
    }

    .dance-content {
        text-align: left;
    }

    .dance-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* Classical Dance Forms-css-end */

/* institution-login-admin-login-form-css-start */


/* BACKGROUND */
.login-area {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff4d4dd6, #ff9a00a3);
}

/* CARD */

/* CARD */
.login-card {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* TITLE */
.login-card h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ff5149;
}

/* INPUT ICON */
.input-group-text {
    background: #017e71;
    color: #fff;
    border: none;
}

/* INPUT FOCUS */
.form-control:focus {
    box-shadow: none;
    border-color: #00f0de;
}

/* BUTTON */
.login-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #00f0de, #017e71);
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* LINKS */
.login-card .extra-links {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #000;
    margin-bottom: 0px;
    font-weight: 500;
}

.login-card .extra-links p {
    font-size: 14px;
    color: #000;
    margin-bottom: 0px;
}

.login-card .extra-links a {
    color: #017e71;
    text-decoration: none;
}

.login-card .extra-links a:hover {
    text-decoration: none;
}


.extra-link-admin {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    color: #000;
}


.extra-link-admin a {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.extra-link-admin a:hover {
    color: #017e71;
    text-decoration: none;
}

.login-btn-admin {
    /* width: 100% !important; */
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff9009, #ff504a);
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    /* margin: auto; */
    /* text-align: center; */
    padding: 10px 30px;
    /* align-items: center; */
    text-decoration: none;
    border: 0;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 10px 90px;
}



/* institution-login-form-css-end */


/* register-login-form-css-start */

/* BACKGROUND */
.registration {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff4d4dd6, #ff9a00a3);
}

/* CARD */
.register-card {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* TITLE */
.register-card h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff504a;
}

/* INPUT ICON */
.input-group-text {
    background: #017e71;
    color: #fff;
    border: none;
}

/* INPUT */
.form-control:focus {
    box-shadow: none;
    border-color: #00f0de;
}

/* BUTTON */
.register-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff9009, #ff504a);
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* LINKS */
.extra-links {
    text-align: center;
    margin-top: 15px;
}

.extra-links a {
    color: #ff5643;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.extra-links a:hover {
    text-decoration: none;
}


.login-card .extra-links a {
    color: #ff5643;
    text-decoration: none;
}

/* .extra-links a:hover {
    text-decoration: underline;
} */

/* register-login-form-css-start */

/* forget-password-css-start */
.forget-password {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff4d4dd6, #ff9a00a3);

}

.card-box {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-box h2 {
    text-align: center;
    color: #ff5643;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #00f0de;
    box-shadow: none;
}

.btn-theme {
    width: 100%;
    background: linear-gradient(135deg, #ff9009, #ff504a);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
}

.btn-theme:hover {
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

.small-link {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
}

.small-link a {
    color: #ff504a;
    text-decoration: none;
}

/* forget-password-css-start */


/* admin-dashboard-css-start */

.admin-container {
    display: flex;
}

/* SIDEBAR */
.sidebar {
    width: 250px;
    height: 100vh;
    background: #e58d13;
    color: #fff;
    padding: 20px;
}

.admin-logo {
    /* font-size: 22px; */
    /* font-weight: bold; */
    margin-bottom: 30px;
    width: 40%;
    /* margin: auto; */
}

.admin-logo-mb {
    width: 20%;
    margin-right: 30%;
    border: 1px solid #000;
    box-shadow: 0px 0px 15px #0000001a;
}

.admin-logo img {
    width: 100%;
    margin: auto;
    border: 1px solid #000;
    box-shadow: 0px 0px 15px #00000021;
}

.sidebar h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

.menu {
    list-style: none;
    padding: 0;
}

.menu li {
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.menu li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.menu li:hover {
    background: #782803;
}

/* .menu li a:hover {
    background: #e77f4e;
    width: 100%;
} */

/* DROPDOWN */
.dropdown .submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
}

.dropdown:hover .submenu {
    display: block;
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    padding: 30px;
    background: #f4f4f4;
}

/* ✅ RESPONSIVE */
@media (max-width: 768px) {
    .admin-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .main-content {
        padding: 15px;
    }
}


.menu li a,
.menu li span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}


/* responsive */


/* TOPBAR */
.topbar-admin {
    display: none;
    background: linear-gradient(135deg, #e58d13, #fb8132, #e9a038);
    color: #fff;
    padding: 12px 15px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
}

.menu-btn {
    font-size: 22px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 6px;
}

/* SIDEBAR */
.sidebar {
    width: 250px;
    height: 100vh;
    background: linear-gradient(135deg, #ff9009, #ff504a);
    color: #fff;
    padding: 20px;
    transition: 0.3s;
}

.sidebar .close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 17px;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    border: 2px solid #fff;
}

/* MAIN */
.admin-container {
    display: flex;
}

.main-content {
    flex: 1;
    padding: 30px;
    background: #f4f4f4;
}

/* DROPDOWN */
.submenu {
    display: none;
    padding-left: 15px;
}

.dropdown:hover .submenu {
    display: block;
}

/* ========================= */
/* 📱 MOBILE VERSION */
/* ========================= */
@media (max-width: 768px) {

    .topbar-admin {
        display: flex;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -260px;
        z-index: 1000;
        height: 100%;
        border-right: 1px solid #9b480b;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar .close-btn {
        display: block;
    }

    .admin-container {
        flex-direction: column;
    }

    .main-content {
        flex: 1;
        padding: 10px;
        background: #f4f4f4;
    }
}

/* content */

.page-title {
    margin-bottom: 20px;
    font-size: 34px;
    color: #000;
    text-align: left;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.one-clr {
    background-color: #017e71 !important;
}

.two-clr {
    background-color: #0e2a4b !important;
}

.three-clr {
    background-color: #f59e0b !important;
}

.four-clr {
    background-color: #dc3545 !important;
}


/* CARD */
.card {
    /* background: #fff; */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.card p {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

/* RECENT BOX */
.recent-box {
    margin-top: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.recent-box ul {
    padding-left: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 0;
    }
}

/* GRID */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* BOX */
.box {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-5px);
}

/* HEADER */
.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.box-header button {
    background: #e58d13;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* PROGRESS LIST */
.progress-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.progress-item span {
    width: 70px;
}

.bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.bar div {
    height: 100%;
    background: linear-gradient(90deg, #e58d13, #ffb347);
    border-radius: 10px;
}

/* CIRCLE */
.circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: auto;
    background: conic-gradient(#e58d13 0% 77%, #eee 77% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle span {
    font-size: 24px;
    font-weight: bold;
}

/* ACTIVITY */
.activity-box ul {
    padding-left: 15px;
}

.activity-box li {
    margin-bottom: 10px;
}

/* ================= */
/* 📱 RESPONSIVE */
/* ================= */
@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}


/* admin-dashboard-css-end */

/* add-blog-css-start */

.form-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 100%;
}

/* GROUP */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

/* INPUTS */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

/* FOCUS EFFECT */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e58d13;
    box-shadow: 0 0 5px rgba(229, 141, 19, 0.4);
}

/* BUTTON */
.btn-submit {
    background: linear-gradient(135deg, #e58d13, #ffb347);
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-box {
        max-width: 100%;
    }
}

/* add-blog-css-start */

/* all-blog-css-start */

/* TOP BAR */
.top-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}

.top-actions input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.add-btn {
    background: linear-gradient(135deg, #e58d13, #ffb347);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENT */
.blog-content {
    padding: 15px;
}

.blog-content h3 {
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
}

.blog-content h1 {
    color: #000000;
    font-weight: 500;
    font-size: 35px;
    text-align: center;
}
.blog-content h4 {
    color: #f53b3b !important;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

@media (max-width:768px) {
    .blog-content p {
    font-size: 12px;
    color: #000000;
    font-weight: 400;
}

.blog-content h4 {
    color: #f53b3b !important;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.blog-content h1 {
    color: #000000;
    font-weight: 500;
    font-size: 28px;
    text-align: center;
}
}

/* ACTIONS */
.blog-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.blog-actions a {
    background: #f4f4f4;
    padding: 8px 10px;
    border-radius: 6px;
    color: #333;
    transition: 0.3s;
}

.blog-actions a:hover {
    background: #e58d13;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .top-actions {
        flex-direction: column;
    }
}

.blogs-page .section-header {
    margin-top: 50px;
}

.blogs-page .section-header h2 {
    text-align: center;
}

.blogs-page .section-header p {
    text-align: center;
    margin-bottom: 18px;
    font-size: 14px;
}

@media (max-width:768px) {
    .blogs-page .section-header p {
        text-align: center;
        margin-bottom: 18px;
        font-size: 12px;
    }
}

/* all-blog-css-end */

/* Institution-Approval-css-start */

/* TABLE BOX */
.table-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: #f8f8f8;
}

th,
td {
    padding: 12px;
    text-align: left;
}

th {
    font-weight: 600;
}

tbody tr {
    border-top: 1px solid #eee;
}

tbody tr:hover {
    background: #f9f9f9;
}

/* STATUS */
.status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.status.pending {
    background: #fff3cd;
    color: #856404;
}

.status.approved {
    background: #d4edda;
    color: #155724;
}

.status.rejected {
    background: #f8d7da;
    color: #721c24;
}

/* ACTION BUTTONS */
.actions button {
    border: none;
    padding: 6px 12px;
    margin-right: 5px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

/* APPROVE */
.approve {
    background: #28a745;
    color: #fff;
}

/* REJECT */
.reject {
    background: #dc3545;
    color: #fff;
}

/* DISABLED */
.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    th,
    td {
        font-size: 13px;
        padding: 8px;
    }
}

/* Institution-Approval-css-end */

/* Certified Institutions-css-start */


.table-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    margin-top: 30px;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
}

/* HEADER */
table thead {
    background: linear-gradient(135deg, #e58d13, #ffb347);
    color: #fff;
}

table th {
    padding: 14px;
    text-align: left;
}

/* BODY */
table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

/* HOVER EFFECT */
table tbody tr {
    transition: 0.3s;
}

table tbody tr:hover {
    background: #fff7ec;
    transform: scale(1.01);
}

/* STATUS BADGE */
.status.approved {
    background: #d4edda;
    color: #155724;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .page-title {
        font-size: 20px;
    }

    table th,
    table td {
        padding: 10px;
        font-size: 13px;
    }
}



/* Certified Institutions-css-end*/



/* institution-history-css-start */


.history-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.history-box h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.history-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.history-item:hover {
    background: #f9f9f9;
    transform: translateX(5px);
}

/* ICON */
.history-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.history-icon.success {
    background: linear-gradient(135deg, #28a745, #218838);
}

.history-icon.info {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.history-icon.warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

/* CONTENT */
.history-content h4 {
    margin: 0;
    font-size: 16px;
}

.history-content p {
    margin: 5px 0;
    color: #555;
}

.history-content span {
    font-size: 13px;
    color: #999;
}

/* MOBILE */
@media(max-width:768px) {
    .history-item {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* institution-history-css-end */






.custom-navbar {
    position: relative;
    /* important */
}

/* Scroll line always at bottom */
.scroll-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #017e71;
    transition: width 0.2s ease;
}

.scroll-line {
    background: linear-gradient(90deg, #ff4d4d, #ff9a00, #ff4d4d);
    background-size: 200%;
    animation: moveLine 3s linear infinite;
}

@keyframes moveLine {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 200%
    }
}




/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    right: 25px;
    /* slightly off-screen */
    bottom: 90px;
    /* ABOVE back-to-top button */
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366, #1EBE5D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9998;
    /* below top button if needed */
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    /* slide fully into view */
    transform: scale(1.08);
    color: #FFFFFF;
}



/* top_to_bottam-css-start */

#scroll {
    position: fixed;
    right: 24px;
    bottom: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #ff7b00;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 9999;
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll:hover {
    background-color: #dc3545;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

/* top_to_bottam-css-end */





@media (max-width: 576px) {

    .breadcrumbs-area h2 {
        font-size: 34px;
    }

    .breadcrumbs-color {
        padding: 1% 28%;
    }

    #scroll {
        right: 22px;
        bottom: 16px;
        z-index: 99999;
    }

}



@media (min-width: 576px) and (max-width: 767.98px) {


    .breadcrumbs-area h2 {
        font-size: 34px;
    }

    .breadcrumbs-color {
        padding: 1% 24%;
    }

    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }

}




@media (min-width: 768px) and (max-width: 991.98px) {

    .breadcrumbs-color {
        padding: 1% 35%;
    }

    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }
}




@media (min-width: 992px) and (max-width: 1199.98px) {


    #scroll {
        right: 23px;
        bottom: 10px;
        z-index: 9999;
    }


}

