/* Reset and Base Layout Configuration */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* RESPONSIVE H3 */

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
}

/* Main Navbar Sticky Container */
.main_navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    /* background-color: #0b132b; */
}

.cm_card .card-title {
    color: #fff;
}

.main_navbar::after {
    content: "";
    position: absolute;
    /* bottom: 0; */
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(40deg, #ff9933 0%, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #138808 66.66%, #138808 100%);
    width: var(--scroll-progress, 0%);
    z-index: 101;
}

.goi_logo_placeholder img {
    width: 150px;
    object-fit: contain;
}

.misiter_name h4 {
    font-size: 20px !important;
    animation: unset;
    color: #f26329;
    margin: 0;
    padding: 0;
}

.cm_card .card {
    height: 100%;
    background-color: transparent;
    border: none;
    text-align: center !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cm_card .card img {
    width: 200px;
    height: 200px;
    border: 1px solid #fff;
    border-radius: 100%;
    box-shadow: rgb(255 255 255) 0px 5px 15px;
}

.sickle_main_box .row.g-0.align-items-stretch {
    display: flex;
    justify-content: center;
    align-items: center !important;
}

.lt_team_wrapper_main {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
}

.minister_sec img {
    width: 150px !important;
    height: 150px !important;
}

.website_name h1 {
    text-align: center;
    font-size: 30px !important;
}

.website_name h1 span {
    font-size: 20px;
}

.sickale_mobile {
    display: none;
}

.d-flex {
    display: flex !important;
    flex-wrap: wrap;
}

.misiter_name h5 {
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.misiter_name {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Primary Navbar Panel Wrapper */
.nav_bar_container {
    background-color: #cc1100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

/* Central Navigation Links Deck */
.nav_links_deck {
    display: flex;
    align-items: center;
    height: 100%;
    column-gap: 35px;
}

/* Individual Navigation Anchors styling */
.nav_item_link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    /* padding: 0 20px; */
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* border-left: 1px solid rgba(255, 255, 255, 0.1); */
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.25s ease;
}

/* .nav_item_link:last-of-type {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
} */

/* Arrow icon layout helper for dropdown */
.nav_dropdown_arrow {
    width: 12px;
    height: 12px;
    margin-left: 6px;
    fill: currentColor;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interactive hover state color shift */
.nav_item_link:hover {
    color: #e2e8f0;
}

/* ==================== ANIMATED BORDER MAGIC ==================== */
/* Base line layout setup for both hover and active states */
.nav_item_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,
            #ff9933,
            #ffffff,
            #138808);
    /* Hover border line color */
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover animation expanding outwards from center */
.nav_item_link:hover::after {
    width: 100%;
}

/* Red baseline indicator style for active link (Home) with center-out fade-in */
.nav_item_link.active_item_state::after {
    width: 100%;
    background: linear-gradient(90deg,
            #ff9933,
            #ffffff,
            #138808);
    border-radius: 6px;
    /* Bright Red active line */
}

/* ==================== DESKTOP DROPDOWN ==================== */
.nav_has_dropdown {
    position: relative;
    height: 100%;
}

.nav_desktop_dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #4338b8;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
    padding: 8px 0;

    /* Hidden by default, slides up & fades in */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.25s;
}

/* Dropdown open on hover state */
.nav_has_dropdown:hover .nav_desktop_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate caret on hover */
.nav_has_dropdown:hover .nav_dropdown_arrow {
    transform: rotate(180deg);
}

.nav_dropdown_subitem {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.nav_dropdown_subitem:hover {
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    padding-left: 24px;
}

/* ==================== LOGIN BUTTON ==================== */
.nav_login_action {
    background: linear-gradient(135deg, #ff9933 0%, #ffffff 50%, #138808 100%);
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    margin-left: 30px;
    border-radius: 5px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav_login_action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    color: #000000;
}

.nav_login_action:hover {
    background-color: #cc0000;
    transform: translateY(-1px);
}

/* ==================== MOBILE INTERFACES ==================== */
.nav_mobile_trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    padding: 0;
    z-index: 1001;
}

.nav_trigger_bar {
    width: 100%;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger morphs parameters into a clean cross signature */
/* .nav_mobile_trigger.active_menu_mode .nav_trigger_bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
} */

.nav_mobile_trigger.active_menu_mode .nav_trigger_bar {
    opacity: 0;
}

/* .nav_mobile_trigger.active_menu_mode .nav_trigger_bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
} */

/* Offcanvas Drawer layout */
.nav_mobile_drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #0b132b;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    padding: 90px 24px 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav_mobile_drawer.drawer_is_visible {
    transform: translateX(-300px);
}

/* Floating Panel Close Button Setup */
.nav_drawer_close_icon {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color 0.2s ease, transform 0.25s ease;
}

.nav_drawer_close_icon:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.nav_drawer_close_icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Overlay Mask Backdrop */
.nav_backdrop_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav_backdrop_mask.mask_is_active {
    opacity: 1;
    pointer-events: auto;
}

/* ==================== MOBILE ACCORDION DROPDOWN ==================== */
.nav_mobile_accordion {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav_mobile_accordion.accordion_open {
    max-height: 200px;
}

.nav_item_link.mobile_item_open .nav_dropdown_arrow {
    transform: rotate(180deg);
}

/* RESPONSIVE BREAKPOINT @ 1024px */
@media (max-width: 1280px) {
    .nav_bar_container {
        padding: 0 24px;
    }

    .sickle_pad_lr {
        padding: 10px 20px !important;
    }

    .nav_bar_container {
        justify-content: end;
    }

    .nav_links_deck,
    .nav_login_action {
        display: none;
    }

    .nav_mobile_trigger {
        display: flex;
    }

    /* Offcanvas Mobile Element Conversions */
    .nav_mobile_drawer .nav_item_link {
        height: 50px;
        width: 100%;
        justify-content: space-between;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 0 12px;
        border-radius: 6px;
    }

    /* Disable center expanding border animations on mobile vertical frames */
    .nav_mobile_drawer .nav_item_link::after {
        display: none;
    }

    /* Standard simple solid accent alignment override inside drawer structural flow */
    .nav_mobile_drawer .nav_item_link.active_item_state {
        background-color: rgba(230, 0, 0, 0.15);
        color: #ffffff;
    }

    .nav_mobile_drawer .mobile_login_placement {
        display: inline-flex;
        margin-left: 0;
        margin-top: 24px;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .nav_mobile_drawer .nav_dropdown_subitem {
        padding-left: 28px;
    }

    .nav_mobile_drawer .nav_dropdown_subitem:hover {
        padding-left: 32px;
    }
}


/* Top Bar Container */
.sickle_pad_lr {
    padding: 10px 60px;
}

.goi_header_wrapper {
    background: #cc1100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 36px;
    color: #ffffff;
    font-size: 13px;
    gap: 20px;
}

.goi_logo_img {
    background: #ffffff;
}

/* Left Section: Branding */
.goi_brand_container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.goi_flag_icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.goi_text_title {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.3px;
    text-transform: none;
    background: transparent;
    border: none;
    padding: 0;
}

/* Right Section: Controls */
.goi_controls_panel {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.goi_divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Links and Icons */
.goi_skip_link,
.goi_top_icon {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
}

.goi_skip_link:hover,
.goi_top_icon:hover {
    color: #e2e8f0;
    text-decoration: underline;
}

/* Text Size Controls Container */
.goi_resizer_box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.goi_size_button {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
}

.goi_size_button:hover {
    color: #e2e8f0;
}

.goi_active_size {
    font-weight: 600;
}

.goi_lang_wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

/* Language Dropdown Selector */
.goi_lang_select {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    padding: 0 16px 0 0;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px;
}

.goi_lang_select:focus {
    outline: none;
}

.goi_lang_select option {
    color: #000000;
}

/* Responsive Media Query for Mobile & Tablets */
@media (max-width: 768px) {
    .goi_header_wrapper {
        flex-direction: column;
        gap: 16px;
        padding: 15px 20px;
        text-align: center;
    }

    .goi_controls_panel {
        justify-content: center;
        width: 100%;
    }

    /* Optional: Allows controls to scale evenly on extra small screens */
    @media (max-width: 480px) {
        .goi_controls_panel {
            gap: 8px;
        }

        .goi_skip_link,
        .goi_lang_select,
        .goi_size_button,
        .goi_size_button_last {
            font-size: 12px;
            padding: 6px 10px;
        }

        .goi_lang_select {
            padding-right: 26px;
            background-position: right 8px center;
        }
    }
}


/* Main Footer Container Shell */
.goi_footer_wrapper {
    background-color: #800c01;
    /* Rich dark navy from image_e61825.png */
    color: #94a3b8;
    padding: 40px 20px 20px 20px;
    position: relative;
    width: 100%;
    z-index: 10;
}

/* Top Section: Branding & Logos Layer */
.goi_footer_logos_row {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Placeholder styles mimicking official branding assets in image_e61825.png */
.goi_logo_placeholder {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.goi_logo_placeholder:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Unique graphic adjustments to match logo colors from image_e61825.png */
.goi_nic_brand {
    font-size: 22px;
    letter-spacing: 1px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 15px;
}

.goi_di_brand {
    font-size: 20px;
    color: #38bdf8;
}

.goi_ticket_badge {
    background: linear-gradient(135deg, #059669 0%, #064e3b 100%);
    border: 1px dashed #10b981;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Middle Section: Policy Navigation Links */
.goi_footer_nav_divider {
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.goi_nav_anchor {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

/* Divider lines between elements */
.goi_nav_anchor:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==================== ANIMATED BORDER HOVER MAGIC ==================== */
.goi_nav_anchor::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,
            #ff9933,
            #ffffff,
            #138808);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.goi_nav_anchor:hover {
    color: #ffffff;
}

.goi_nav_anchor:hover::after {
    width: 70%;
    /* Line spreads elegantly outwards from center */
}

/* Bottom Section: Attribution Texts */
.goi_attribution_panel {
    max-width: 900px;
    margin: 25px auto 0 auto;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.8;
    color: #64748b;
}

.goi_highlight_red {
    color: #ef4444;
    /* Red color indicator matches image_e61825.png */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.goi_highlight_red:hover {
    color: #f87171;
}

.goi_timestamp_note {
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #475569;
}

/* ==================== SCROLL TO TOP DYNAMIC BUBBLE ==================== */
.goi_scroll_top_action {
    position: absolute;
    bottom: 24px;
    right: 40px;
    width: 42px;
    height: 42px;
    background-color: #e60000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(230, 0, 0, 0.3);
    transition: transform 0.25s ease, background-color 0.25s ease;
    border: 1px solid #fff;
}

.goi_scroll_top_action:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

.goi_scroll_top_action svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.goi_scroll_top_action:hover svg {
    transform: translateY(-2px);
    /* Subtle jumping float nudge */
}


/* ==================== RESPONSIVE OVERRIDES ==================== */
@media (max-width: 768px) {
    .goi_footer_wrapper {
        padding: 35px 24px 70px 24px;
        /* Space added for floating button on mobile layout stacking */
    }

    .goi_footer_logos_row {
        gap: 24px;
    }

    .goi_footer_nav_divider {
        flex-direction: column;
        gap: 12px;
        padding: 20px 0;
    }

    .goi_nav_anchor {
        border-right: none !important;
        padding: 6px 0;
        width: 100%;
        justify-content: center;
    }

    .goi_scroll_top_action {
        right: 50%;
        transform: translateX(50%);
        bottom: 16px;
    }

    .goi_scroll_top_action:hover {
        transform: translateX(50%) translateY(-3px);
    }

}

.goi_attribution_panel p {
    color: #fff;
}

/* logo */

.goi_image img {
    height: 80px;
}

.goi_images img {
    height: 60px;
}

.goi_header {
    position: relative;
}

.goi_header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg,
            #FF9933 0%,
            #FF9933 33%,
            #FFFFFF 33%,
            #FFFFFF 66%,
            #138808 66%,
            #138808 100%);
    opacity: 0.15;
    pointer-events: none;
}

.goi_text_main {
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    margin: auto;
    font-size: 32px;
    font-weight: 700;
    animation: typing 5s steps(40, end) forwards;
    text-align: center;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* slider */
/* --- Slider Container --- */
.banner_slider_container {
    position: relative;
    width: 100%;
    height: 75vh;
    /* Scaled viewport height for desktop */
    overflow: hidden;
    background-color: #222;
}

.banner_slider {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: contain;
}

/* --- Individual Slides --- */
.banner_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
    overflow: hidden;
    /* Keeps scaled images from spilling out */
}

.banner_slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* --- ZOOM IN ANIMATION FOR BACKGROUND IMAGE --- */
.banner_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    /* Starting position */
}

/* Triggers the zoom animation ONLY on the currently active slide image */
.banner_slide.active img {
    animation: zoomInBg 6s ease-out forwards;
}

@keyframes zoomInBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
        /* Zooms in up to 12% extra */
    }
}

/* --- Slide Text Content & Overlay --- */
.banner_content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #ffffff;
    max-width: 600px;
    z-index: 3;
    padding: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Enhances readability during zoom */
}

/* Initial state for text elements (Hidden and shifted down) */
.banner_content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.3s;
    /* 0.3s delay */
}

.banner_content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.5s;
    /* 0.5s delay */
}

.banner_content .banner_btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff4757;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.7s;
    /* 0.7s delay */
}

/* Active triggers that run the text entrance animations */
.banner_slide.active .banner_content h2,
.banner_slide.active .banner_content p,
.banner_slide.active .banner_content .banner_btn {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation Arrows --- */
.slider_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 50%;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.slider_arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev_arrow {
    left: 20px;
}

.next_arrow {
    right: 20px;
}

/* --- Indicator Dots --- */
.slider_dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active,
.dot:hover {
    background: #ff4757;
    transform: scale(1.2);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
    .banner_slider_container {
        height: 50vh;
        /* Adjusts slider height on tablet breakpoints */
    }

    .banner_content {
        left: 5%;
        right: 5%;
        max-width: 100%;
        text-align: center;
    }

    .banner_content h2 {
        font-size: 2rem;
    }

    .banner_content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner_slider_container {
        height: 25vh;
        /* Keeps height proportional on mobile viewports */
    }

    .about_section_content {
        padding-top: 22px;
    }

    .row.align-items-center.gy-5 .col-lg-6 {
        margin: 0;
    }


    .banner_content h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .banner_content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .banner_content .banner_btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .slider_arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .prev_arrow {
        left: 10px;
    }

    .next_arrow {
        right: 10px;
    }

    .goi_card_two {
        bottom: 0;
        right: 0;
    }
}


/* About section */

.sickle_about_main {
    background-image: url("../images/destination.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: rgba(20, 54, 39, 0.12);
}

.about_span {
    display: inline-block;
    padding: 10px 22px;
    background: #ecf3ec;
    border: 1px solid #c8edd3;
    border-radius: 30px;
    color: rgb(56, 165, 16);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.sickle_about_main {
    padding: 50px 0;
}

.about_section_content p {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    margin-top: 13px;
    text-align: justify;
}

.goi_about_button_section {
    margin-top: 35px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.about_btn {
    background: linear-gradient(40deg,
            #ff9933,
            #ffffff,
            #138808);
    color: #4338b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.2);
    transition: background-color 0.25s ease, transform 0.2s ease;
    float: inline-end;
}

.about_btn:hover {
    background-color: #cc0000;
    transform: translateY(-1px);
}

.about_section_img {
    display: flex;
    justify-content: start;
    align-items: center;
}

.about_section_img img {
    width: 90%;
    border-radius: 60px 0 60px 0;
    box-shadow: rgba(13, 14, 13, 0.416) 5px 8px 8px;
}

/* =========================================================
TEAM MEMBER SECTION
========================================================= */

.sickle_member {
    padding: 90px 0;
    background: #f4f5fb;
}

/* =========================================================
HEADING
========================================================= */

.sickle_heading {
    margin-bottom: 60px;
}

.section_badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: #ffffff;
    color: #4338b8;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}


.sickle_heading p {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

/* =========================================================
MAIN BOX
========================================================= */

/* =========================================================
SECTION
========================================================= */

.sickle_member {
    padding: 90px 0 0;
    background: #f4f5fb;
}

/* =========================================================
HEADING
========================================================= */

.sickle_heading {
    margin-bottom: 60px;
}

.goi_app_tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 22px;

    border-radius: 50px;

    background: #ffffff;
    color: #4338b8;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    margin-bottom: 20px;
}



.sickle_heading p {
    max-width: 700px;
    margin: auto;

    color: #6b7280;

    font-size: 18px;
    line-height: 1.8;
}

/* =========================================================
MAIN BOX
========================================================= */

.sickle_main_box {
    background: #cc1100;
    overflow: hidden;
    position: relative;
}

/* =========================================================
SLIDER AREA
========================================================= */

.minister_slider_area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ministerSlider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ministerSlider .swiper-wrapper {
    align-items: stretch;
}

.ministerSlider .swiper-slide {
    height: auto;
}

/* =========================================================
CARD
========================================================= */

.minister_card {
    position: relative;
    overflow: hidden;
    height: 420px;
    background-color: rgb(255, 255, 255);
}

.minister_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.minister_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: transform 1.2s ease;
}

.minister_card:hover .minister_img img {
    transform: scale(1.08);
}

/* =========================================================
OVERLAY
========================================================= */

.minister_overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.55) 35%,
            rgba(0, 0, 0, 0.10) 100%);

    z-index: 1;
}

/* =========================================================
CONTENT
========================================================= */

.minister_content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 35px 28px;
    z-index: 5;
}

.minister_content h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}

.minister_content h5 {
    color: #ffcf67;

    font-size: 13px;
    font-weight: 500;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.minister_content p {
    color: rgba(255, 255, 255, 0.88);

    font-size: 12px;
    line-height: 1.6;

    margin-bottom: 24px;
}

.minister_content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px 24px;

    border-radius: 50px;

    background: #ffffff;
    color: #111827;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.35s ease;
}

.minister_content a:hover {
    background: #ff3355;
    color: #ffffff;
}

/* =========================================================
NAVIGATION BUTTONS
========================================================= */

.minister_prev {
    left: 18px;
}

.minister_next {
    right: 18px;
}


.minister_prev,
.minister_next {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #ff9933 0%,
            #ffffff 50%,
            #138808 100%);

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    border: none;
    outline: none;

    overflow: hidden;

    transition: all 0.35s ease;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* ICON */

.minister_prev i,
.minister_next i {
    font-size: 16px;
    color: #1a1a1a;
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

/* HOVER EFFECT */

.minister_prev:hover,
.minister_next:hover {

    transform: translateY(-50%) scale(1.12);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.28),
        0 0 18px rgba(255, 153, 51, 0.35),
        0 0 18px rgba(19, 136, 8, 0.25);

    background: linear-gradient(135deg,
            #ff7b00 0%,
            #ffffff 45%,
            #0f6d06 100%);
}

/* ICON HOVER */

.minister_prev:hover i,
.minister_next:hover i {
    color: #000000;
    transform: scale(1.15);
}

/* CLICK EFFECT */

.minister_prev:active,
.minister_next:active {
    transform: translateY(-50%) scale(0.96);
}

/* =========================================================
QUICK LINKS
========================================================= */

.quick_links_wrap {
    padding: 35px;
    height: 100%;

    display: flex;
    align-items: center;
}

.quick_links_grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.quick_link_card {
    min-height: 150px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: rgb(255 255 255 / 40%);
    border: 1px solid rgb(131 6 6 / 78%);
    backdrop-filter: blur(10px);
    padding: 25px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.35s ease;
    z-index: 1;
}

/* ANIMATED BORDER */

.quick_link_card::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 18px;

    padding: 2px;

    background: linear-gradient(90deg,
            #ff9933,
            #ffffff,
            #138808);

    /* HIDE INITIALLY */
    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.5s ease;

    z-index: -1;

    /* BORDER EFFECT */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;
}

/* HOVER EFFECT */

.quick_link_card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
}

/* BORDER ANIMATION */

.quick_link_card:hover::before {
    transform: scaleX(1);
}

/* IMAGE */

.quick_link_card img {
    width: 60px;
    height: 60px;

    object-fit: contain;

    margin-bottom: 18px;

    filter: brightness(0) invert(1);

    position: relative;
    z-index: 2;
}

/* TITLE */

.quick_link_card h4 {
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.5;

    margin: 0;

    position: relative;
    z-index: 2;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1400px) {

    .minister_card {
        height: 460px;
    }

}

@media(max-width:991px) {

    .minister_card {
        height: 420px;
    }

    .quick_links_wrap {
        padding: 25px;
    }

}

@media(max-width:767px) {
    .lt_team_wrapper_main {
        flex-direction: column !important;
    }

    .card.minister_sec {
        width: 100% !important;
    }

    .sickale_mobile {
        display: block;
    }

    .sickale_desktop {
        display: none;
    }

    .goi_images img {
        height: 35px;
    }

    .d-flex.align-items-center.justify-content-between {
        justify-content: center !important;
    }

    .align-items-center {
        align-items: center !important;
        row-gap: 6px;
        justify-content: unset !important;
        justify-content: center !important;
        align-items: center;
    }

    .lt_team_content h3 {
        font-size: 26px !important;
        margin-bottom: 10px;
    }

    .about_section_img img {
        width: 100%;
        border-radius: 20px 0 20px 0;
        box-shadow: rgba(13, 14, 13, 0.416) 5px 8px 8px;
    }

    .website_name h1 {
        font-size: 20px !important;
    }

    .website_name h1 span {
        font-size: 12px;
    }

    .goi_header_wrapper {
        gap: 0;
    }

    .goi_controls_panel {
        gap: 0;
    }

    .sickle_member {
        padding: 60px 0;
    }

    .sickle_heading h3 {
        font-size: 34px;
    }

    .sickle_heading p {
        font-size: 15px;
    }

    .minister_card {
        height: 420px;
    }

    .minister_content {
        padding: 22px 18px;
    }

    .minister_content h3 {
        font-size: 22px;
    }

    .minister_prev,
    .minister_next {
        width: 42px;
        height: 42px;
    }

    .quick_links_grid {
        gap: 12px;
    }

    .quick_link_card {
        min-height: 140px;
        padding: 15px;
    }

    .quick_link_card img {
        width: 42px;
        height: 42px;
    }

    .quick_link_card h4 {
        font-size: 12px;
    }

}

/* =========================================================
   APP DOWNLOAD SECTION - MODERN REDESIGN
========================================================= */

.goi_app_download_sec {
    padding: 100px 0;
    background:
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* MAIN WRAPPER */

.goi_app_download_wrap {
    background: linear-gradient(135deg, #ffffff 0%, #fff6f7 100%);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

/* Decorative Blur Circles */

.goi_blur_circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.goi_circle_one {
    width: 260px;
    height: 260px;
    background: rgba(106, 226, 26, 0.5);
    top: -80px;
    right: -60px;
}

.goi_circle_two {
    width: 220px;
    height: 220px;
    background: rgba(240, 107, 30, 0.5);
    bottom: -80px;
    left: -60px;
}

/* CONTENT */

.goi_app_tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #ececec;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #e44b6f;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.goi_app_content h2 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #101828;
    margin-bottom: 24px;
    max-width: 600px;
}

.goi_app_content p {
    font-size: 19px;
    line-height: 1.8;
    color: #667085;
    max-width: 540px;
    margin-bottom: 40px;
}

/* STORE BUTTONS */

.goi_store_btns {
    margin-bottom: 40px;
}

.goi_store_card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgb(242, 99, 41, 0.4);
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.goi_store_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.10);
}

.goi_store_card img {
    height: 56px;
}

/* QR BOX */

.goi_qr_box {
    display: inline-block;
    align-items: center;
    justify-content: center;
}

.goi_qr_content {
    display: grid;
    justify-content: center;
    width: 130px;
}

.goi_qr_box h4 {
    font-size: 13.7px;
    line-height: 1.5;
    color: #344054;
    font-weight: 700;
    margin-bottom: 20px;
}

.goi_qr_box img {
    width: 120px;
    border-radius: 16px;
}

/* MOBILE AREA */

.goi_mobile_area {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* GLASS BG */

.goi_mobile_glass {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 40px;
    /* background: linear-gradient( 135deg,rgb(255 244 246)); */
    backdrop-filter: blur(15px);
    border: 1px dashed #f26329;

    transform: rotate(-12deg);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3);
}

/* MOBILE IMAGE */

.goi_mobile_img {
    max-width: 260px;
    height: 500px !important;
    position: relative;
    z-index: 3;
    filter:
        drop-shadow(0 30px 50px rgba(0, 0, 0, 0.22));
    animation: goiFloat 5s ease-in-out infinite;
}

/* FLOATING CARDS */

.goi_floating_card {
    position: absolute;
    z-index: 4;
    /* background: rgba(255,255,255,0.9); */
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #344054;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #ffffff;
}



.goi_card_one {
    top: 110px;
    left: 20px;
}

.goi_card_two {
    bottom: 50px;
    right: 10px;
}

/* FLOAT ANIMATION */

@keyframes goiFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1399px) {

    .goi_app_content h2 {
        font-size: 48px;
    }

    .goi_mobile_area {
        min-height: 620px;
    }

}

@media (max-width: 1199px) {

    .goi_app_download_wrap {
        padding: 70px 50px;
    }

    .goi_app_content h2 {
        font-size: 42px;
    }

    .goi_mobile_img {
        max-width: 320px;
    }

}

@media (max-width: 991px) {

    .goi_app_download_wrap {
        padding: 60px 30px;
        border-radius: 30px;
    }

    .goi_app_content {
        text-align: center;
    }

    .goi_app_content h2,
    .goi_app_content p {
        max-width: 100%;
    }

    .goi_store_btns {
        justify-content: center;
    }

    .goi_mobile_area {
        min-height: 500px;
        margin-top: 20px;
    }

    .goi_card_one {
        top: 40px;
        left: 20px;
    }

    .goi_card_two {
        bottom: 40px;
        right: 20px;
    }

}

@media (max-width: 767px) {
    section.sickle_member.sickle_about_sec.sickle_pad_lr {
        padding: 0 !important;
    }

    .goi_app_download_sec {
        padding: 70px 0;
    }

    .goi_qr_box h4 {
        font-size: 13px !important;
        margin: 0;
        color: #fff;
        text-align: center;
    }

    .goi_logo_placeholder img {
        width: 100px;
        height: auto;
        object-fit: contain;
    }

    .goi_app_download_wrap {
        padding: 45px 20px;
    }

    .goi_app_content h2 {
        font-size: 32px;
    }

    .goi_app_content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .goi_store_card img {
        height: 48px;
    }

    .goi_mobile_area {
        min-height: 420px;
    }

    .goi_mobile_glass {
        width: 280px;
        height: 280px;
    }

    .goi_mobile_img {
        max-width: 230px;
    }

    .goi_floating_card {
        padding: 10px 14px;
        font-size: 13px;
    }

    .goi_floating_card i {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }



    .goi_qr_box h4 {
        font-size: 16px;
    }

    .goi_qr_box img {
        width: 110px;
    }

}


/* New - css */


.lt_team_title {
    text-align: center;
    margin-bottom: 60px;
}

.lt_team_title h2 {
    font-size: 42px;
    color: #0c1c44;
    margin-bottom: 10px;
}

.lt_team_title p {
    color: #666;
    font-size: 18px;
}





.lt_team_card {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    transition: .5s;
}

.lt_team_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.lt_team_card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .95),
            rgba(0, 0, 0, .4),
            rgba(0, 0, 0, .1));
    z-index: 1;
}

.lt_team_content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 2;
    color: #fff;
    transition: .5s;
}

.lt_team_content h3 {
    font-size: 28px !important;
    margin-bottom: 10px;
}

.website_name {
    display: flex;
    gap: 20px;
    align-items: center;
}

.website_name img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.lt_team_content h4 {
    color: #ffcb3d;
    font-size: 15px;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lt_team_content p {
    font-size: 14px;
    font-weight: 400;
    color: #ffcb3d;
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 20px;
}

.lt_team_btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

.lt_team_btn:hover {
    background: #cc1100;
    color: #ffffff;
    transform: translateY(-4px);
}

.lt_social_icons {
    position: absolute;
    top: 25px;
    right: -70px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: .5s;
}

.lt_social_icons a {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #0c1c44;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: .4s;
}

.lt_social_icons a:hover {
    background: #cc1100;
    color: #ffffff;
    transform: rotate(360deg);
}

.lt_team_card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.lt_team_card:hover img {
    transform: scale(1.12);
}

.lt_team_card:hover .lt_social_icons {
    right: 20px;
}

.lt_team_card:hover .lt_team_content {
    bottom: 40px;
}

@media(max-width:991px) {}

@media(max-width:768px) {



    .lt_team_card {
        height: 500px;
    }

    .lt_team_title h2 {
        font-size: 32px;
    }

}



/* contact-us */

/* Container Layout */
.contact-container {
    background: #ffffff;
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 4fr 6fr;
    overflow: hidden;
    margin: 50px 0;
}

/* Left Side: Info Box */
.contact-info {
    background: #6d0d05;
    color: #ffffff;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 600;
}

.contact-info p.subtitle {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item strong {
    display: block;
    color: #f1f02a;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.info-item p {
    color: #f8fafc;
    font-size: 15px;
    line-height: 1.5;
}

/* Right Side: Map Container */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-color: #e5e7eb;
    display: flex;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 35px;
    }

    .map-container {
        height: 350px;
        min-height: 350px;
    }
}

.contact_main {
    margin: auto;
}

/* Breadcrumb Container */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 16px;
    background-color: transparent;
    /* Change to a solid color if needed */
}

/* Individual Items */
.breadcrumb-item {
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #64748b;
    /* Muted gray for inactive items */
    display: flex;
    align-items: center;
}

/* Links style */
.breadcrumb-item a {
    color: #3b82f6;
    /* Modern blue */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

section.sickle_pad_lr.breadcumb_sec {
    padding: 0;
    padding: 30px 60px;
    background-color: #f5e0de;
}

.breadcrumb-item a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.sickle_pad_lr.breadcumb_sec ul {
    margin: 0 !important;
    padding: 0;
}

/* Automatic CSS Separator (/) */
.breadcrumb-item:not(:last-child)::after {
    content: "";
    margin: 0 10px;
    color: #cbd5e1;
    /* Light gray divider */
    font-weight: 400;
}

/* Active Page (Current Page) */
.breadcrumb-item.active {
    color: #1e293b;
    /* Dark slate text */
    font-weight: 600;
    pointer-events: none;
    /* Disables clicking on the current page */
}



.events-container {
    width: 100%;
    max-width: 500px;
    height: 450px;
    /* Fixed height to allow scrolling inside */
    background-color: #f3fbfb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #b22234;
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Scrollable area for notifications */
.scroll-wrapper {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 50px;

    /* Hide scrollbar for Chrome, Safari and Opera */
    &::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.events-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

/* Make entire list row a link element */
.event-link {
    display: block;
    text-decoration: none;
    padding: 12px 20px;
    transition: background-color 0.2s ease;
}

.event-link:hover {
    background-color: rgba(178, 34, 52, 0.04);
    /* Very light red tint on hover */
}

.event-text {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

/* Highlight text color slightly when hovered */
.event-link:hover .event-text {
    color: #74888c;
}

/* Specific style for Hindi text */
.event-text.hindi {
    font-family: "Mangal", "Arial Unicode MS", sans-serif;
    font-weight: normal;
    opacity: 0.8;
}

.view-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, #f3fbfb 40%);
    padding: 20px 15px 15px 0;
    text-align: right;
    box-sizing: border-box;
}

.view-more a {
    color: #8b4513;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

.view-more a:hover {
    text-decoration: underline;
}


.blood-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blood-list li {
    position: relative;
    overflow: hidden;
    padding: 20px 25px 20px 75px;
    margin-bottom: 25px;
    background: #fff;
    border-left: 5px solid #c62828;
    border-radius: 16px;
    line-height: 1.9;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    z-index: 1;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

/* Gradient Hover Overlay */
.blood-list li::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(21, 101, 192, .12),
            rgba(198, 40, 40, .12));
    transform: translateX(-100%);
    transition: transform .45s ease;
    z-index: -1;
}

.blood-list li:hover::after {
    transform: translateX(0);
}

/* Blood Icon */
.blood-list li::before {
    content: "\f043";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;

    background: #c62828;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    transition: all .45s ease;

    box-shadow: 0 5px 15px rgba(198, 40, 40, .35);
}

.blood-list li:hover {
    transform: translateY(-8px);
    border-left-color: #1565c0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.blood-list li:hover::before {
    transform: translateY(-50%) scale(1.15) rotate(10deg);
    background: #1565c0;
    box-shadow: 0 0 25px rgba(21, 101, 192, .35);
}

/* Responsive */
@media(max-width:768px) {

    .blood-list li {
        padding: 18px 15px 18px 60px;
        font-size: 15px;
        line-height: 1.8;
    }

    .blood-list li::before {
        width: 32px;
        height: 32px;
        left: 15px;
        font-size: 14px;
    }
}