* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;

}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #67442c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #67442c;
    border-radius: 4px;
    border: 2px solid #67442c;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffea00;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #d49265 #f7f6e6;
}



/* =====================================navbar section============================= */

.site_nav {
    background: #67442C;
    padding: 14px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

.site_nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(./img/header_bg_gkcm.png) repeat center;
    z-index: -1;
    opacity: 0.1;
}

.site_nav .nav_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site_nav .nav_logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

.site_nav .nav_menu {
    display: flex;
    gap: 24px;
    align-items: center;
    position: relative;
}

.site_nav .nav_link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.site_nav .nav_link.active {
    color: #FFD700;
}

.site_nav .nav_item {
    position: relative;
}

.site_nav .nav_submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #5a3a26;
    min-width: 220px;
    display: none;
    flex-direction: column;
    z-index: 2000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.site_nav {
    overflow: visible;
}

.site_nav .nav_submenu a {
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.site_nav .nav_submenu a:hover {
    background: #67442C;
    color: #FFD700;
}

.site_nav .nav_item:hover .nav_submenu {
    display: flex;
}

.site_nav .nav_toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.site_nav .nav_toggle span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    margin: 4px 0;
}

.site_nav .nav_overlay {
    display: none;
}

@media (max-width: 768px) {
    .site_nav .nav_toggle {
        display: flex;
    }

    .site_nav .nav_wrap {

        justify-content: right;
    }

    .site_nav .nav_overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 98;
    }

    .site_nav .nav_overlay.show {
        display: block;
    }

    .site_nav .nav_menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #67442C;
        flex-direction: column;
        padding-top: 10px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 99;
        overflow-x: scroll;
    }

    .site_nav .nav_menu.show {
        right: 0;
    }

    .site_nav .nav_link {
        padding: 14px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .site_nav .nav_item:hover .nav_submenu {
        display: none;
    }

    .site_nav .nav_item.open .nav_submenu {
        display: flex;
        position: static;
        background: #5a3a26;
        box-shadow: none;
    }
}

/* ------------------------------header-------------------------- */


.header_pm_cm {
    width: 153px;
}

.gkcm_logo {
    width: 44px !important;
    height: auto !important;
}

@media screen and (max-width: 768px) {
    .gkcm_logo {
        width: 28px !important;

    }
    .header_pm_cm {
        width: 105px;
    
    }
}

/* @media screen and (max-width: 768px) {
    .add_cm_pm {
        flex-direction: row !important;
    }
} */

/* ==================================end============================== */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    gap: 12px;
}

/* LEFT LOGO */
.header-logo img {
    height: 73px;
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

/* CARD */
.img_right_card {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    white-space: nowrap;
}

/* AVATAR */
.img_right_avatar img {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #bf9c84;
    flex-shrink: 0;
}

.img_right_small img {
    width: 54px;
    height: 54px;
}

.img_right_large img {
    width: 60px;
    height: 60px;
}

/* TEXT */
.img_right_name {
    font-size: 14px;
    font-weight: 600;
    color: #67442c;
    line-height: 1.2;
    white-space: nowrap;
}

.img_right_designation {
    font-size: 11px;
    color: #6b7280;
    white-space: nowrap;
}

@media (max-width: 767px) {

    .header-bar {
        /* flex-direction: column; */
        align-items: center;
        padding: 8px 10px;
    }

    .header-left {
        display: flex;
        /* justify-content: center; */
        width: 100%;
        margin-bottom: 6px;
    }

    .header-logo img {
        height: 37px;
    }

    .header-right {
        justify-content: center;
        width: 100%;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .img_right_small img {
        width: 36px;
        height: 36px;
    }

    .img_right_large img {
        width: 40px;
        height: 40px;
    }

    .img_right_name {
        font-size: 9px;
    }

    .img_right_designation {
        font-size: 9px;
    }
}

.hero-banner {
    position: relative;
    height: 85vh;
    background: url("/mnt/data/1e26280e-6b89-4475-a31f-e2950018919f.png") center / cover no-repeat;
    overflow: hidden;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background:
        linear-gradient(to bottom, rgba(103, 68, 44, 0.2), rgb(54 34 21 / 85%)), radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%) */
}

.menu-icon {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 10;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    background: #fff;
    transition: 0.3s;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #67442C;
    color: #fff;
    z-index: 20;
    transition: left 0.35s ease;
    padding: 20px;
    overflow-y: auto;
}

.offcanvas-menu.active {
    left: 0;
}

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

.offcanvas-header h3 {
    margin: 0;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
}

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

.offcanvas-menu ul li {
    margin-bottom: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.offcanvas-menu ul li:hover {
    color: #ffd700;
}

.hero-content {
    position: absolute;
    left: 60px;
    top: 45%;
    transform: translateY(-50%) translateX(-50px);
    max-width: 520px;
    z-index: 4;
    opacity: 0;
    transition: all 0.6s ease;
}

.hero-content.active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.hero-content h5 {
    font-size: 14px;
    letter-spacing: 3px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.25;
    margin: 10px 0;
}

.hero-content p {
    font-size: 14px;
    opacity: 0.9;
}

.hero-menu {
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.hero-menu ul {
    list-style: none;
    padding: 0 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-menu li {
    background: linear-gradient(to left, #9a9191 0%, #6b6a69 60%, rgba(103, 68, 44, 0.25) 100%);
    padding: 10px 18px;
    margin-bottom: 3px;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    font-size: 13px;
    color: #fff;
}

.hero-menu li.active {
    background: #fff;
    color: #67442c;
    font-weight: 600;
}

.curve-brown {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.curve-white {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 3;
}

.curve-brown svg {
    height: 140px;
    width: 100%;
}

.curve-white svg {
    height: 98px;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-content {
        left: 20px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-menu {
        display: none;
    }
}

.hero-menu-fixed {
    position: fixed !important;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

/* 4 icon */
.bottom-icons {
    position: relative;
    margin-top: -60px;
    display: flex;
    justify-content: center;
    gap: 105px;
    z-index: 9;
}

.bottom-icon-circle img {
    width: 25px;
}

.bottom-icon-item {
    text-align: center;
}

.bottom-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: url('./img/circle_svg.svg') center / cover no-repeat;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bottom-icon-circle::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
}

.bottom-icon-circle i {
    font-size: 26px;
    color: #fff;
}

.bottom-icon-label {
    font-size: 13px;
    margin-top: 6px;
    color: #000;
}

.footer-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 40px;
}

.footer-controls button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #444;
    color: #fff;
    font-size: 16px;
}

@media (max-width: 767px) {

    .bottom-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 0;
        padding: 0 20px 40px;
    }

    .bottom-icon-item {
        width: 50%;
        text-align: center;
    }

    .bottom-icon-circle {
        width: 70px;
        height: 70px;
        margin: 0 auto 8px;
    }

    .bottom-icon-circle img {
        width: 22px;
    }

    .bottom-icon-label {
        font-size: 12px;
    }
}

/* about us */

/* SECTION */
.about-us-content {
    padding: 20px 10px;
}


.about-us-content h2 {
    font-size: 28px;
    margin-bottom: 14px;
    color: #67442C;
}

.about-us-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

/* VIDEO WRAPPER */
.main_button .btn {
    background: transparent;
    border: 2px solid #67442C;
    color: #67442C;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.main_button .btn:hover {
    background: #67442C;
    color: #ffffff;
    border-color: #67442C;
}

.main_button_white .btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #fff;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.main_button_white .btn:hover {
    background: #ffffff;
    color: #67442C;
    border-color: #67442C;
}

.col-md-5.abou_vedio_section {
    position: relative;
}

/* VIDEO */
.about-video {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* GRADIENT OVERLAY */
.video-gradient-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

/* video */
.video-gradient-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* gradient overlay */
.video-gradient-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(103, 68, 44, 0.45) 60%,
            rgba(103, 68, 44, 0.1) 100%);
    z-index: 1;
    max-height: 320px;

}

/* keep video clickable */
.video-gradient-wrap video {
    position: relative;
    z-index: 0;
}

/* PLAY ICON */
.abou_vedio_section::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.85);
    color: #67442C;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

/* PAUSE ICON */
.abou_vedio_section.paused::after {
    content: "❚❚";
    font-size: 14px;
}

/* HOVER EFFECT */
.abou_vedio_section:hover::after {
    transform: translate(-50%, -50%) scale(1.08);
}

/* HOVER EFFECT */
.abou_vedio_section:hover::after {
    transform: translate(-50%, -50%) scale(1.08);

    color: #000;
}

/* MOBILE FIX */
@media (max-width: 767px) {
    .about-video {
        max-height: 240px;
    }

    .about-us-content {
        padding-bottom: 20px;
    }
}

.box_1 {
    height: 80px;
    width: 90px;
    background-color: #985425;
    position: absolute;
    top: -12px;
    right: -10px;
    border-top-right-radius: 12px;
}

.box_2 {
    height: 80px;
    width: 90px;
    background-color: #985425;
    position: absolute;
    bottom: -13px;
    left: -13px;
    border-bottom-left-radius: 12px;

}


/* -===============================heritage section============================= */
.bg_brown {
    position: relative;
    background-color: #67442c;
    padding: 30px 30px 30px;
    color: #e6e6e6;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg_brown::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 450px;
    height: 450px;
    background-image: url("../assets/img/circle.png");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    animation: rotatePattern 40s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* KEEP CONTENT ABOVE */
.bg_brown>* {
    position: relative;
    z-index: 2;
}

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

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


.bg_brown h2,
.bg_brown p {
    color: #e6e6e6;
}

.heritage-img {
    width: 100%;
    max-width: 380px;
    height: 300px;
    object-fit: cover;
    border-radius: 14px;

}
 

.heritage-year {
    font-size: 1.4rem;
}

.para_content {
    font-size: 0.9rem;
}

/* YEAR SLIDER */
.year-slider {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.year-item {
    padding: 6px 14px;
    border-radius: 30px;
    background: #18171726;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.year-item.active {
    background: #fff;
    color: #7b4b2a;
}

.year-item.active::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.arrow {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #7b4b2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}



/* ===============================guru section=============================== */
/* Your existing CSS */
.heading_section {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.heading_section h2 {
    font-size: 28px;
    color: #67442C;
    margin-bottom: 0;
}

.image-container {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 350px;
}

.custom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.image-container:hover .custom-img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
    padding: 20px;
}

.image-container:hover .overlay,
.image-container.active .overlay {
    opacity: 1;
}

.overlay h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.overlay p {
    margin: 0;
    font-size: 14px;
}

/* Slider CSS */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 14px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    flex: 0 0 33.333%;
    padding: 0 10px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(103, 68, 44, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: #67442C;
    transform: translateY(-50%) scale(1.1);
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #67442C;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: #b38c6f;
}

/* Responsive */
@media (max-width: 992px) {
    .slider-slide {
        flex: 0 0 50%;
    }

    .slider-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .slider-slide {
        flex: 0 0 100%;
    }

    .slider-container {
        max-width: 500px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

/* Animation for active slide */
@keyframes slideIn {
    from {
        opacity: 0.7;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slider-slide.active {
    animation: slideIn 0.3s ease;
}

/* ===================================featured program section========================================/ */
.program-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT */
.program-list {
    width: 45%;
}

.program-item {
    display: flex;
    gap: 18px;
}

.program-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
}

.program-text h4 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #6b3f24;
}

.program-meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.program-meta i {
    color: #6b3f24;
}

.program-text p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.divider {
    height: 1px;
    background: #ddd;
    margin: 22px 0;
}

/* RIGHT */
.featured-program {
    width: 55%;
}

.featured-program img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.featured-program h3 {
    font-size: 22px;
    color: #6b3f24;
    margin-bottom: 6px;
}

.featured-program p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.read-more {
    padding: 8px 22px;
    border-radius: 20px;
    border: 1px solid #6b3f24;
    background: transparent;
    color: #6b3f24;
    font-size: 14px;
    transition: 0.3s;
}

.read-more:hover {
    background: #6b3f24;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .program-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .program-list,
    .featured-program {
        width: 100%;
    }

    .program-item {
        flex-direction: column;
    }

    .program-item img {
        width: 100%;
        height: 200px;
    }

    .featured-program img {
        height: 240px;
    }
}

/* ==================================footer=========================================*/
.gov-footer {
    background: #222;
    color: #fff;
    padding: 50px 0 0;
    font-family: Arial, sans-serif;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr auto;
    gap: 60px;
    align-items: flex-start;
}

.logo-col {
    display: flex;
    flex-direction: column;
    /* important */
    align-items: flex-start;
    gap: 12px;
}

.logo-col img {
    width: 71%;
}

.logo-para {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
    max-width: 280px;
}

.logo-col img {
    width: 71%;
}

.logo-col h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col li {
    margin-bottom: 10px;
    font-size: 15px;
    cursor: pointer;
}

.contact-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-col .divider {
    height: 1px;
    background: #555;
    margin: 15px 0;
}

.booking {
    font-size: 14px;
}

.phone-bold {
    font-size: 16px;
    font-weight: bold;
}

.social-bar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-bar a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.social-bar .twitter {
    background: #000;
}

.social-bar .facebook {
    background: #1877f2;
}

.social-bar .instagram {
    background: #e1306c;
}

.social-bar .youtube {
    background: #ff0000;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 40px;
    padding: 15px 0;
    font-size: 14px;
    color: #bbb;
}

.footer-strip {
    height: 6px;
    background: linear-gradient(to right,
            #0aa,
            #0aa 33%,
            #e23 33%,
            #e23 66%,
            #6a8f2a 66%);
}


/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .logo-col img {
        width: 50%;

    }

    .logo-para {
        max-width: 100%;
        font-size: 13px;
    }

    .links-col ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;

    }

    .links-col li {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .contact-col p,
    .booking,
    .phone-bold {
        font-size: 13px;
    }

    .social-bar {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }

    .social-bar a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 10px 0;
    }

    .footer-strip {
        height: 4px;
    }
}

@media (max-width: 576px) {
    .logo-col img {
        width: 60%;
    }

    .links-col ul {
        flex-direction: column;
        gap: 5px;
    }

    .links-col li {
        font-size: 13px;
    }

    .social-bar a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}


/* back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #0aa;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: #088;
    transform: translateY(-4px);
}

/* application form design */
.bottom-icon-item a {
    text-decoration: none;
}

/* =====================breadcrumb============================================ */
.breadcrumb_section {
    position: relative;
    padding: 40px 10px;
    /* background-color: #67442C;
    background-image:
        linear-gradient(135deg,
            rgba(255, 215, 0, 0.12) 25%,
            transparent 25%),
        linear-gradient(225deg,
            rgba(255, 215, 0, 0.12) 25%,
            transparent 25%),
        linear-gradient(315deg,
            rgba(255, 215, 0, 0.12) 25%,
            transparent 25%),
        linear-gradient(45deg,
            rgba(255, 215, 0, 0.12) 25%,
            transparent 25%);
    background-size: 30px 30px;
    background-position: 15px 0, 15px 0, 0 0, 0 0; */
    background-image: url(./img/breadcrumb.png);
    color: #fff;
}


.breadcrumb_overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right,
            rgba(103, 68, 44, 0.95),
            rgba(103, 68, 44, 0.75)); */
    background: linear-gradient(to top, rgb(135 99 74 / 95%), rgba(103, 68, 44, 0.75));
    z-index: 1;
}

.breadcrumb_wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.breadcrumb_wrap h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFD700;
    letter-spacing: 1px;
}

.breadcrumb_nav {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    font-size: 14px;
}

.breadcrumb_nav li {
    color: #fff;
}

.breadcrumb_nav li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb_nav li::after {
    content: "/";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb_nav li:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .breadcrumb_section {
        padding: 50px 15px;
    }

    .breadcrumb_wrap h2 {
        font-size: 26px;
    }
}

/* ========================about sectopn================== */
.heading_small {
    color: #FFD700;
    font-size: 1.1rem;
}

.heading_large {
    color: #67442C;
}

.content_section p {
    font-size: 0.89rem;
}

.image-stack {
    position: relative;
    width: 100%;
}

.bottom-image {
    border-radius: 12px;
    width: 100%;
    display: block;

}

.top-image {
    position: absolute;
    top: 127px;
    left: 66px;
    width: 90%;
    border-radius: 17px;
    border: 5px solid #67442C;
    z-index: 2;
}

@media (max-width: 767px) {
    .top-image {
        width: 54%;
        left: 133px;
        top: 62px;
    }
}



.image-stack-about {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: auto;
}

.image-stack-about img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.bottom-image-about {
    position: relative;
}

.top-image-about {
    position: absolute;
    top: 0;
    left: 60%;
    width: 57% !important;
    border: 5px solid #67442C;
    z-index: 2;
    background: #fff;
}

@media (max-width: 767px) {
    .image-stack-about {
        max-width: 300px;
    }

    .top-image-about {
        top: 0;
        right: 12%;
        width: 37% !important;
    }
}








/* artist section */
.artist-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


.artist-card:hover img {
    transform: scale(1.05);
}


.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(102, 66, 44, 0.8);
    color: #fff;
    padding: 10px;
    text-align: center;
}

.artist-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.artist-info p {
    margin: 0;
    font-size: 14px;
}


@media (max-width: 767px) {
    .artist-card {
        height: 250px;
    }

    .artist-info h5 {
        font-size: 14px;
    }

    .artist-info p {
        font-size: 12px;
    }
}


/* document */
.event_scroll_container {
    max-height: 495px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.web_card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    height: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;

    border: 1px solid #e3d6c8;

    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.web_card:hover {
    border-color: #a47148;
}


.event_card::before {
    content: "";
    position: absolute;
    top: 43px;
    right: -63px;
    width: 183px;
    height: 97px;
    background: #c7d2da;
    border-radius: 240px 240px 0 0;
    opacity: .15;
    pointer-events: none;
    transition: transform .4s ease;
}



.event_card_date {
    position: absolute;
    top: -6px;
    right: 24px;
    background: linear-gradient(135deg, #6f4e37, #a47148);

    color: #fff;
    width: 46px;
    text-align: center;
    font-weight: 600;
    line-height: 1.1;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 12px;
}

.text_decoration {
    text-decoration: none !important;
    color: gray;
}

/* ====================mission& vision section====================== */
.doc-timeline {
    list-style: none;
    padding-left: 30px;
    margin: 0;
    position: relative;
}

.doc-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #6f4e37;
}

.doc-timeline li {
    position: relative;
    padding: 12px 16px 12px 10px;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    transition: transform 0.35s ease;
}

.doc-timeline li:hover {
    transform: translateX(8px);
}


.doc-timeline li::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 18px;
    width: 15px;
    height: 15px;
    background: #6f4e37;
    border-radius: 50%;
    border: 3px solid #f3e6d8;
}

.timeline-hidden {
    display: none;
}

.timeline-toggle-btn {
    margin-top: 15px;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #6f4e37;
    background: transparent;
    color: #6f4e37;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
}

.timeline-toggle-btn:hover {
    background: #6f4e37;
    color: #fff;
}


/* ===========================government body====================== */
.doc-section {
    margin-bottom: 36px;
}

.doc-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #bf865e;
    margin-bottom: 13px;
    padding-left: 16px;
    position: relative;
    margin-top: 30px;
}

.doc-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 18px;
    background: #6f4e37;
    border-radius: 2px;
}

.doc-listing {
    list-style: none;
    padding-left: 0;
    margin: 0;
    counter-reset: docCount;
}

.doc-listing li {
    counter-increment: docCount;
    position: relative;
    padding: 3px 18px 11px 58px;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    border: 1px solid #e7ddd5;
    transition: all 0.3s ease;
}

.doc-listing li::before {
    content: counter(docCount);
    position: absolute;
    left: 18px;
    top: 7px;
    width: 23px;
    height: 23px;
    background: #6f4e37;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    /* font-weight: 600; */
    display: flex;
    align-items: center;
    justify-content: center;

}

.doc-listing li:hover {
    transform: translateX(6px);
    background: #fbf7f3;
    border-color: #cdb8a6;
}

/* ====================intensive course========================= */

.iac-section {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.4;
}

.iac-hero {
    background: linear-gradient(135deg, #67442c, #8b5e3c);

    background-image:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 5px),
        linear-gradient(135deg, #67442c, #8b5e3c);

    background-blend-mode: overlay;

    color: #fff;
    padding: 20px 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.iac-title {
    font-size: 1.25rem;
    color: #ffde59;
    margin-bottom: 5px;
}

.iac-subtitle {
    font-size: 0.8rem;
    color: #ffe4b5;
}

.iac-highlight {
    color: #ffb74d;
    font-weight: 600;
}

.iac-box {
    background-color: #fff7f0;
    border-left: 3px solid #b99a6b;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 5px;
    font-size: 0.85rem;
}

.iac-section-title {
    color: #67442c;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.iac-list {
    padding-left: 15px;
    margin: 0;
    list-style-type: disc;
}

.iac-list li {
    margin-bottom: 4px;
}

/* ============================seminar================================= */
.workshop-section {
    width: 100%;
    padding: 25px 20px;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.5;
    position: relative;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

/* Common style for all corner circles */
.corner-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ffb74d;
    border-radius: 50%;
}

/* Position each circle */
.corner-circle.top-left {
    top: -2px;
    left: -5px;
}

.corner-circle.top-right {
    top: -3px;
    right: -4px;
}

.corner-circle.bottom-left {
    bottom: -3px;
    left: -4px;

}

.corner-circle.bottom-right {
    bottom: -2px;
    right: -4px;
}

.workshop-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.workshop-date {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #d2691e;
}

.workshop-desc {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
}

.grid-item img {
    width: 100%;
    height: 250px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}


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

    .grid-item img {
        height: auto;
    }
}

/* ==================upcoming==================== */
.workshop-section {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Segoe UI', sans-serif;
}


.upcoming-item {
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 8px;
}


.upcoming-item::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffb74d;
    font-weight: bold;
    font-size: 1rem;
}

/* =========================menu humburger-========================== */

/* ==============================notice===================================== */

.notice_box_alt {
    width: 100%;
    font-family: 'Segoe UI', sans-serif;
}

.notice_item_alt {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dashed #e0c7a0;
}

/* Timeline dot */
.notice_dot {
    width: 12px;
    height: 12px;
    background: #ffb74d;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Content */
.notice_content {
    flex: 1;
}

.notice_title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #67442c;
    margin: 0 0 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notice_text {
    font-size: 0.9rem;
    color: #333;
    margin: 0 0 5px;
}

.notice_date {
    font-size: 0.75rem;
    color: #888;
}


/* ===================================humburger menu========================================= */

.dgdgtoggler {
    background: none;
    border: none;
    font-size: 26px;
    color: #67442C;
}

.custtdie {
    width: 500px !important;
}

.offcanvas-body {
    height: 100vh;
    padding: 0;
}

.menu-left {
    background: #f1f3f5;
    padding: 0;
    text-align: center;
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.menu-left::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgb(0 0 0 / 34%);
}

.menu-left::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at center, rgb(255 255 255 / 15%) 60%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 0.7) 90%, rgba(255, 255, 255, 0.9) 100%);
}

.menu-left img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-radius: 0;
    position: relative;
    z-index: 0;
}

.menu-right {
    padding: 15px;
    height: 100vh;
    overflow-y: auto;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-menu a:hover {
    color: #ffc107;
    background-color: rgba(255, 193, 7, 0.12);
    border-radius: 6px;
}

.submenu {
    list-style: none;
    padding-left: 15px;
}

.submenu a {
    font-size: 14px;
    font-weight: 500;
}

.submenu a:hover {
    color: #ffc107;
}

.rotate {
    transform: rotate(180deg);
    transition: 0.3s;
}

.menu-right::-webkit-scrollbar {
    width: 6px;
}

.menu-right::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.menu-right::-webkit-scrollbar-track {
    background: #f1f3f5;
}

@media (max-width: 767px) {
    .custtdie {
        width: 100% !important;
    }

    .menu-left {
        display: none;
    }

    .menu-right {
        width: 100%;
        padding: 16px;
    }

    .offcanvas-body {
        height: 100vh;
    }

    .mobile-menu a {
        padding: 14px 10px;
    }
    .dgdgtoggler{
 
        font-size: 19px;
      
        margin: 0 !important;
    }
}

.btn_close {
    position: absolute;
    right: 21px;
    top: 41px;
}

.notice_box_alt {
    height: 350px;
    overflow-x: hidden;
    overflow-y: scroll;
    white-space: nowrap;
    border: 1px solid #ccc;
    padding: 10px;
}

.text_decoration_none {
    text-decoration: none;
}
.text_decoration_none_c{
    text-decoration: none;
    color: #fff;
}


/* footer logo */
.img-flex-wrap {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .img-flex-item {
    width: 80px !important;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  
  @media (max-width: 991px) {
    .img-flex-item {
      width: 180px;
    }
  }
  
  @media (max-width: 576px) {
    /* .img-flex-wrap {
      flex-direction: column;
    } */
  
    .img-flex-item {
      width: 100%;
    }
  }
  
  