﻿:root {
    --font-family: "Inter", sans-serif;
    --bs-primary: #d9211e;
    --bs-secondary: #241863;
    --bs-dark-black:#373c45;
}

*,
a,
dd,
dl,
dt,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

i{
    line-height: 0
}

*,
:active,
:focus {
    outline: 0 !important;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

::-moz-selection {
    text-shadow: none;
}

::selection {
    text-shadow: none;
}

::-moz-selection {
    text-shadow: none;
}

::-webkit-selection {
    text-shadow: none;
}

.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

button {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    outline: 0;
    padding: 0;
}

.fw-600{
    font-weight: 600 !important;
}

fw-500{
    font-weight: 500 !important;
}

body {
    background-color: var(--global--color-white);
    font-family: var(--font-family);
    color: var(--global--color-body);
    margin: 0;
    letter-spacing: 0.5px;
}

::-moz-selection {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    text-shadow: none;
}

::selection {
    background-color: var(--global--color-primary);
    color: var(--global--color-white);
    text-shadow: none;
}

a {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

p {
    font-family: var(--font-family);
    font-weight: 400;
}

.header .navbar-brand .logo {
    max-width: 100%;
    width: 200px;
}
.header, .our_tems, .branch-section, .sober-about-section {
    background-color: #f5f7ff;
}

.header.navbar-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999 !important;
    -webkit-animation: fadeInDown 1s ease-in-out;
    animation: fadeInDown 1s ease-in-out;
    -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.1);
    box-shadow: 0 2px 4px rgba(3, 27, 78, 0.1);
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.fs-12{
    font-size: 12px !important;
}
.fs-13 {
    font-size: 13px !important;
}
.fs-14{
    font-size: 14px !important;
}

.fs-15{
    font-size: 15px !important;
}

.fs-18{
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.tooltip-inner {
    font-size: 12px !important;
}

.object{
    object-fit: cover;
    object-position: center;
}

.btn-primary{
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}
.form-control:focus {
    border-color: var(--bs-primary) !important;
    box-shadow: none !important;
}

.model-close-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/*===================== fiex buttons ============================*/
.wa-fab {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    animation: wa-pulse 2.4s infinite;
    z-index: 999;
}

@keyframes wa-pulse {
    0%,100% {
        box-shadow: 0 4px 16px rgba(37,211,102,.45);
    }

    50% {
        box-shadow: 0 4px 28px rgba(37,211,102,.75);
    }
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bs-secondary);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    transition: background .25s, transform .25s;
    z-index: 999;
}

    .scroll-top:hover {
        background: var(--bs-primary);
        transform: translateY(-3px);
    }
.line_clamp_1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line_clamp_2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line_clamp_3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.line_clamp_4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.line_clamp_5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.line_clamp_6 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* number of lines to show */
    line-clamp: 6;
    -webkit-box-orient: vertical;
}
/*=============================== custom css ================================*/
.header .logo {
    height: 100%;
    width: 215px;
}
.profile_image{
    width: 38px;
    height: 38px;
}

.count_number {
    width: 20px;
    height: 20px;
}

.phone {
    font-weight: 600;
}

.social-icons{
    width:38px;
    height:38px;
}

.dropdown-menu .dropdown-item:hover {
    font-weight: 500;
    transition: all 0.5s linear;
    color: var(--bs-primary);
}

.navbar-nav .nav-item:hover .nav-link{
    font-weight:500;
    transition: all 0.5s linear;
    color: var(--bs-primary);
}
.navbar-nav .nav-item .nav-link.active {
    font-weight: 600;
    color: var(--bs-primary);
}

.search-wrapper {
    max-width: 900px;
    margin: auto;
}

.search-box {
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
}

.search-icon {
    text-align: center;
    color: #d70000;
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    color: #555;
    min-width: 0;
}

    .search-input::placeholder {
        color: #cfcfcf;
    }

.submit-btn {
    background: #e41e1b;
    color: #fff;
    border: none;
    transition: .3s;
    white-space: nowrap;
}

    .submit-btn:hover {
        background: #c91816;
    }

/*============================ footer ================================*/
.site-footer {
    background: #ededed;
    position: relative;
    overflow: hidden;
}

.footer-brand img {
    height: 100%;
    width: 70%;
}

    .contact-item .icon-wrap {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

.heading-bar {
    width: 80px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 2px;
}
    .footer-links a {
        font-size: 15px;
        color: #000;
        text-decoration: none;
        position: relative;
        transition: color .25s, padding-left .25s;
    }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--bs-primary);
            opacity: 0;
            transition: opacity .25s;
        }

        .footer-links a:hover {
            color: var(--bs-primary);
            padding-left: 20px;
        }

            .footer-links a:hover::before {
                opacity: 1;
            }
.follow-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.follow-bar {
    width: 32px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 2px;
    margin-bottom: 16px;
}

.social-btn {
    width: 38px;
    height: 38px;
    color: #000;
    background-color: rgb(255 255 255 / 84%);
    transition: transform .20s, box-shadow .20s;
    transition: all 0.4s linear;
}

    .social-btn:hover {
        color: #FFF;
        background-color: var(--bs-dark-black);
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0,0,0,.18);
    }
/* ===================================== index css =====================================*/

/*========================== vertical slider ======================*/

.vertical-carousel img {
    object-fit: cover;
}

/* Vertical Slide Animation */
.vertical-carousel .carousel-item-next:not(.carousel-item-start),
.vertical-carousel .active.carousel-item-end {
    transform: translateY(100%);
}

.vertical-carousel .carousel-item-prev:not(.carousel-item-end),
.vertical-carousel .active.carousel-item-start {
    transform: translateY(-100%);
}

.vertical-carousel .carousel-item-next,
.vertical-carousel .carousel-item-prev,
.vertical-carousel .carousel-item.active {
    transition: transform 0.8s ease-in-out;
}

/* Vertical Indicators (Right Side) */
.vertical-carousel .carousel-indicators {
    top: 50%;
    right: 20px;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: column;
    margin: 0px !important;
}

    .vertical-carousel .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0px !important;
    }

.carousel-indicators [data-bs-target] {
    background-color: #FFFFFF !important;
}
/*============================= Vertical slider ===========================*/
.vertical-carousel, .vertical-carousel .carousel-caption, .vertical-carousel img {
    height: 90vh !important;
    object-fit: cover;
    z-index: 1;
}

    .vertical-carousel .carousel-caption {
        z-index: 1;
    }

.layer {
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.home_banner_slider {
    font-size: 22px;
    color: #E5DDC5;
}

.border_line_slider {
    width: 235px;
    height: 6px;
    background-color: var(--bg-background-light-color);
}

.hero_title {
    font-size: 40px;
    color: #FFFFFF;
}

.hero_description {
    font-size: 15px;
}

.coman_button{
    width:244px;
    height:50px;
}

.play-wrapper {
    position: absolute;
    bottom: 5%;
    right: 5%;
    transform: translate(-50%,-50%);
    width: 160px;
    height: 160px;
    z-index: 9;
}

/* SVG Circular Text */
.circle-text {
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
}

    .circle-text text {
        fill: #fff;
        font-size: 24px;
        letter-spacing: 0.8px;
    }

/* Center Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    box-shadow: 0 15px 40px rgba(255,0,0,.35);
}

/* Rotation Animation */
@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

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

/* ========================================= about us ===============================*/
.title_text {
    font-size: 37px;
}

/* ========================================= why choos us ===============================*/
.bg-gradient-color {
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 1;
}

.box {
    --size: 52px;
    --line: #ffffff16;
    content: '';
    height: stretch;
    width: 100%;
    position: absolute;
    background: linear-gradient(90deg, var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size), linear-gradient(var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size);
    top: 0;
    transform-style: flat;
    pointer-events: none;
    z-index: -1;
}

.line-rule{
    width: 180px;
    height: 2px;
    background-color: var(--bs-dark-black) !important;
}

.line-light-rule {
    width: 180px;
    height: 2px;
    background-color: #FFF !important;
}
/* ========================================= affiliation slider ===============================*/
.affiliation_logo{
    width:120px !important;
    height: 120px !important;
}

.banner-image {
    height: 480px;
}

.stylist-banner::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0000004a;
}

/* Dashed Border (No ::before / ::after) */
.dashed-border {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px dashed rgba(255, 255, 255, 0.9);
    z-index: 1;
    pointer-events: none;
}

/* Content Position */
.banner-content {
    position: absolute;
    top: 50%;
    padding: 50px;
    transform: translateY(-50%);
    z-index: 2;
}

    .banner-content p,
    .banner-content a {
        font-size: 17px;
    }
.stylist-siders .dashed-background {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background-color: rgb(0 0 0 / 59%);
    z-index: 1;
    pointer-events: none;
}

.new_collection_banner {
    position: relative;
}

    .new_collection_banner .owl-dots {
        position: absolute !important;
        display: flex;
        justify-content: space-between;
        margin: 0px auto !important;
        bottom: 5%;
        transform: translateY(-50%) !important;
        transition: all 0.2s linear;
    }

        .new_collection_banner .owl-dots .owl-dot span {
            background-color: #ffffff8f;
        }

        .new_collection_banner .owl-dots .owl-dot.active span,
        .new_collection_banner .owl-dots .owl-dot:hover span {
            background-color: #ffffff !important;
        }

/*=========================== corse cards ==============================*/
.badge-popular {
    top: 15px;
    left: 15px;
    padding: 3px 10px;
}

.btn-light{
    background-color: #FFF !important;
    border-color: #FFF !important;
}

.apply-btn {
    bottom: 15px;
    left: 15px;
}

.wishlist{
    width: 38px;
    height: 38px;
    color: var(--bs-primary);
    background-color: #fff;
    right: 15px;
    bottom:15px;
    transition: all .5s linear;
}

.wishlist:hover {
    color: #FFF;
    background-color: var(--bs-primary);
}

    .wishlist.active {
        color: #FFF;
        background-color: var(--bs-primary);
    }

.card-image img{
    height: 275px;
}

/*======================================= OUR TEAM ===============================*/
.team-card {
    position: relative;
    overflow: hidden;
    height: 310px;
    cursor: pointer;
}

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

/* Overlay */
.team-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all 0.50s ease-in-out;
}

.overlay-border {
    background-color: rgb(5 72 116 / 70%);
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px dashed #FFF;
}

.content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Hover Effect */
.team-card:hover img {
    transform: scale(1.08);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.enrool_arrow{
    width: 38px;
    height:38px;
}

.hiring-slider img{
    width: unset !important;
}
/*======================================= testimonial-section ===============================*/
.testimonial-box {
    transition: .4s;
    position: relative;
/*    box-shadow: 0 8px 20px rgba(0,0,0,.2);*/
}
.testimonial-section {
    background-color: #2e4059;
}

.testimonial-slider .owl-item.active.center .item .card {
    background: #ffffff;
    opacity: 1 !important;
}
/*.owl-item.active.center .testimonial-box {
    background: #ffffff;
    opacity: 1 !important;
}*/
.testimonial-slider .item .card {
    opacity: .55 !important;
}

.quote {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 55px;
    color: #ef2b22;
}

    .profile img {
        width: 110px !important;
        height: 110px !important;
        object-fit: cover;
    }

    .profile h4 {
        color: #0d4b80;
        font-weight: bold;
    }

    .profile h5 {
        font-size: 18px;
    }

.testimonial-slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.testimonial-slider .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    font-size: 25px !important;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin:0px !important;
    background-color: #FFF !important;
}
    .testimonial-slider .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 25px !important;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0px !important;
        background-color: #fff !important;
    }

    .testimonial-slider .owl-nav button.owl-prev:hover, .testimonial-slider .owl-nav button.owl-next:hover {
        color: #FFF;
        background-color: var(--bs-primary) !important;
    }

/* =============================== Faqs ======================================*/

.accordion-item {
    background: transparent;
    border: none;
    border-radius: 0px !important;
    box-shadow: none !important;
}

.accordion-button {
    background: transparent;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    padding: 1rem 0px;
    border: none;
    border-radius: 0px !important;
    border-bottom: 1px solid #777;
}

    .accordion-button:not(.collapsed) {
        background: transparent;
        color: var(--bs-secondary);
        box-shadow: none;
    }

    .accordion-button::after {
        content: "+";
        margin-left: 0px !important;
        font-size: 18px;
        font-weight: bold;
        background-image: none !important;
        transition : none !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .accordion-button:not(.collapsed)::after {
        content: "−";
        background-image : none !important;
    }

.accordion-body {
    font-size: 14px;
    color: #333;
    padding: 1rem 0px;
}

/*================================ our branch ====================================*/
.card_image {
    height: 285px;
}
.card-content {
    padding: 25px;
    text-align: center;
}


.visit-btn {
    background: #343946 !important;
    padding: 6px 12px;
}

    .visit-btn:hover {
        background: #d9251d !important;
        color: white;
    }

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.branch-card {
    transition: all .5s linear;
}
.explore-btn {
    padding: 12px 26px;
}

/*=================== tems and condition =======================*/

.tems_icon{
    font-size: 34px;
}

.hero {
    background-image: url('../images/contect_background.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero_2 {
    background-image: url('../images/why_choos2.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero_3 {
    background-image: url('../images/slider_image/hero_slider_image.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 64%) !important;
}
.bx-customize {
    width: 45px;
    height: 45px;
}

.social_media_icons{
    width: 35px;
    height: 35px;
}

.form-select:focus {
    border-color: var(--bs-primary) !important;
    outline: 0;
    box-shadow: none !important;
}

/*=============================== placement =====================================*/

/* Hero */
.video-container {
    position: relative;
    width: 100%; /* Takes up full viewport height */
    overflow: hidden;
}

/* Video layer stretches and acts like a background image */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forces video to scale without losing aspect ratio */
    z-index: -1; /* Sends the video behind text layers */
}

/* Text elements sit over the video */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ffffff;
    text-align: center;
}

.highlight-card {
    text-align: center;
    transition: .4s;
    height: 100%;
}

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

.highlight-icon {
    width: 50px;
    height:50px;
    font-size: 25px;
}

/*============================ user login =======================================*/

.login_form{
    height:100vh;
}
.required{
    color: red;
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.form-check-input:focus {
    border-color: var(--bs-primary) !important;
    box-shadow: none !important;
}

.custom_padding {
    padding: 11px 15px;
}
.custom_input_width{
    width: 40px;
}

.pagination .page-item .page-link {
    width: 40px !important;
    height: 40px !important;
    display: flex;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    color: #000;
}

    .pagination .page-item .page-link.active {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
        color: #FFF;
    }

.page-link:focus {
    z-index: 3;
    color: var(--bs-pagination-focus-color);
    background-color: white;
    box-shadow: none !important;
}

.bg-breadcrumb {
    background-color: var(--bs-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #FFF !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--bs-primary) !important;
    color: #FFF !important;
}

/* Hero Section Styling */
.about-hero {
    background: linear-gradient( 135deg, color-mix(in srgb, var(--bs-primary) 95%, transparent), color-mix(in srgb, var(--bs-secondary) 85%, transparent) ), url('../images/why_choos2.webp') no-repeat center center / cover;
    color: #ffffff;
    padding: 120px 0 120px 0;
}

/*================= course image ====================*/
.course-1 {
    background: linear-gradient( 135deg, color-mix(in srgb, var(--bs-primary) 95%, transparent), color-mix(in srgb, var(--bs-secondary) 85%, transparent) ), url('../images/gallery_image/jacquard_design_3.webp') no-repeat center center / cover;
    color: #ffffff;
    padding: 120px 0 120px 0;
}
.course-2 {
    background: linear-gradient( 135deg, color-mix(in srgb, var(--bs-primary) 95%, transparent), color-mix(in srgb, var(--bs-secondary) 85%, transparent) ), url('../images/gallery_image/print_design_2.webp') no-repeat center center / cover;
    color: #ffffff;
    padding: 120px 0 120px 0;
}
.course-3 {
    background: linear-gradient( 135deg, color-mix(in srgb, var(--bs-primary) 95%, transparent), color-mix(in srgb, var(--bs-secondary) 85%, transparent) ), url('../images/gallery_image/print_design_3.webp') no-repeat center center / cover;
    color: #ffffff;
    padding: 120px 0 120px 0;
}
.course-4 {
    background: linear-gradient( 135deg, color-mix(in srgb, var(--bs-primary) 95%, transparent), color-mix(in srgb, var(--bs-secondary) 85%, transparent) ), url('../images/gallery_image/embroidery_design_1.webp') no-repeat center center / cover;
    color: #ffffff;
    padding: 120px 0 120px 0;
}
.course-5 {
    background: linear-gradient( 135deg, color-mix(in srgb, var(--bs-primary) 95%, transparent), color-mix(in srgb, var(--bs-secondary) 85%, transparent) ), url('../images/gallery_image/beadwork_desing_2.webp') no-repeat center center / cover;
    color: #ffffff;
    padding: 120px 0 120px 0;
}
.course-6 {
    background: linear-gradient( 135deg, color-mix(in srgb, var(--bs-primary) 95%, transparent), color-mix(in srgb, var(--bs-secondary) 85%, transparent) ), url('../images/gallery_image/jewellery_design_1.webp') no-repeat center center / cover;
    color: #ffffff;
    padding: 120px 0 120px 0;
}
.course-7 {
    background: linear-gradient( 135deg, color-mix(in srgb, var(--bs-primary) 95%, transparent), color-mix(in srgb, var(--bs-secondary) 85%, transparent) ), url('../images/gallery_image/jewellery_design_3.webp') no-repeat center center / cover;
    color: #ffffff;
    padding: 120px 0 120px 0;
}
/*================= course image ====================*/

/* Abstract Shape / Image Layout */
.image-stack {
    position: relative;
    padding-bottom: 40px;
}

.image-stack-main {
    width: 85%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    z-index: 2;
    position: relative;
}

.image-stack-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 8px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 3;
}

/* Section Typography */
.section-title-wrapper text {
    color: var(--bs-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 8px;
}


/* Mission / Vision Cards Grid */
.split-card {
    border: 1px solid rgba(255, 255, 255, 0.03);
    height: 100%;
    transition: border-color 0.3s ease;
}

    .split-card:hover {
        border-color: rgba(255, 77, 36, 0.3);
    }

.accent-label {
    color: var(--bs-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.filter-btn {
    background-color: #f5f7ff;
    color: var(--text-muted);
    padding: 16px 34px;
    display: flex;
    flex-shrink: 0;
    border-color: var(--bs-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .filter-btn:hover, .filter-btn.active {
        background: var(--bs-primary);
        border-color: var(--bs-primary);
        color: #ffffff;
        box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
        transform: translateY(-2px);
    }

/* Portfolio Grid Item CSS */
.gallery-item {
    position: relative;
    overflow: hidden;
    height: 350px; /* Base height for standard grid items */
}

    /* Masonry Alternating Tall Heights */
    .gallery-item.tall {
        height: 350px;
    }

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:center;
}

.hide {
    display: none;
}

/*========================= Course Page =============================*/

/* Navbar Customization */
.custom-nav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e1b4b 100%);
    color: #ffffff;
    padding: 90px 0 70px 0;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Metric Counters */
.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    text-align: center;
}

/* Course Cards */
.module-card {
    border: none;
    border-radius: var(--bs-primary);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

    .module-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

.module-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bs-primary);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/*========================================= new css ===============================*/

/* Subtitle Tag */
.institute-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(36, 24, 99, 0.06);
    color: var(--bs-secondary);
    font-size: 14px;
    font-weight: 600;
    border-left: 3px solid var(--bs-primary);
    text-transform: capitalize;
}

/* Clean Main Headline */
.sober-title {
    color: var(--bs-secondary);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
}

.primary-highlight {
    color: var(--bs-primary);
}

/* Design Institute Image Wrapper */
.institute-img-box {
    position: relative;
    border: 1px solid var(--border-color);
    padding: 8px;
    background: #ffffff;
}

    .institute-img-box img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
    }

/* Minimalist Info Bar Below Image */
.institute-stat-bar {
    background-color: var(--bs-secondary);
    color: #ffffff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 3px solid var(--bs-primary);
}

    .institute-stat-bar .stat-num {
        color: #ffffff;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .institute-stat-bar .stat-text {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.85);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* Clean Content List */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .feature-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 14px;
        font-size: 0.95rem;
        color: var(--text-dark);
        font-weight: 500;
        line-height: 1.5;
    }

        .feature-list li i {
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--bs-primary);
            font-size: 1.1rem;
        }

/*==================== Blog css start =======================*/

.blog-link a {
    color: #000 !important;
    text-transform: capitalize;
}

    .blog-link a img {
        height: 260px;
        object-fit: cover;
        object-position: center;
    }

.blog-link:hover a {
    color: var(--bs-primary) !important;
}

.shar_button {
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
    border-color: var(--bs-primary) !important;
    background-color: var(--bs-primary) !important;
}

.share_button {
    top: 10px;
    right: 10px;
}

.image_blog_h{
    max-height:500px;
}

.object{
    object-fit: cover;
    object-position: center;
}

.dropdown-menu {
    --bs-dropdown-zindex: 99 !important;
}