﻿.header-logo {
    height: 75px;
}

.accordDetail {
    display: none;
}

    .accordDetail.show {
        display: block;
    }

.accTrigger {
    cursor: pointer;
    font-weight: 600;
    margin-top: 8px;
}

    .accTrigger.active {
        color: #0d6efd;
    }

/* Card container */
.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%; /* makes all cards equal height in Bootstrap grid */
}

/* Default LEFT border color */
.border-green {
    border-left: 6px solid #28a745;
    color: #28a745;
}

.border-red {
    border-left: 6px solid #dc3545;
    color: #dc3545;
}

.border-blue {
    border-left: 6px solid #007bff;
    color: #007bff;
}

.border-purple {
    border-left: 6px solid #6f42c1;
    color: #6f42c1;
}

/* Hover: full border box effect */
.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 2px solid currentColor; /* convert to full box border */
    border-left: 6px solid currentColor; /* keep left side thicker */
}

/* Soft glow overlay */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.05;
}

/* Keep text and icon above overlay */
.feature-card > * {
    position: relative;
    z-index: 1;
}

/* Icon animation */
.icon-box {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-box {
    transform: rotate(8deg) scale(1.2);
}

/* Text & List */
.feature-list {
    text-align: left;
    margin-top: 10px;
    font-size: 14px;
}

    .feature-list li {
        margin-bottom: 5px;
    }

/* Optional: make equal height in row */
.row.g-4 > [class*='col-'] {
    display: flex;
}

.feature-card {
    flex: 1;
}

.imp {
    color: #D2042D;
}

.captcha-bg {
    width: 110px;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    user-select: none;
    pointer-events: none;
}




/*lyout.cshtml code*/


.accordion .accTrigger {
    margin-top: 12px;
}

/* Entire footer background blue */
/* Entire footer blue */
.footer {
    background-color: #0d6efd !important;
    color: white !important;
}

/*Horizontal Content Scroller*/

.news-ticker {
    width: 100%;
    overflow: hidden;
    background: #0d6efd; /* Bootstrap primary */
    color: #fff;
    padding: 8px 0;
    position: relative;
}

.news-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left 29s linear infinite;
}

.news-item {
    display: inline-flex;
    align-items: center;
    margin-right: 60px;
    font-size: 18px;
}

.new-badge {
    background: #ffc107; /* Bootstrap warning */
    color: #000;
    font-weight: 700;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
}

@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }

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

.news-ticker:hover .news-track {
    animation-play-state: paused;
}



/* Footer links */
.footer-top ul {
    list-style: none;
    padding-left: 0;
}

    .footer-top ul li {
        display: block;
        margin: 5px 0;
    }

        .footer-top ul li a {
            color: white !important;
            font-weight: bold;
            text-decoration: none;
            transition: 0.3s;
        }

            .footer-top ul li a:hover {
                color: orange !important;
            }

/*  .footer-bottom {
            background-color: #1c1c1c !important; 
            color: white !important;
        } */


/* Using Bootstrap Icons for radio-circle icon */
.bi-circle-fill {
    font-size: 0.6rem;
    color: orange; /* icon color */
}

/* Right side "Page last updated" */
#lastUpdated {
    color: #ffffff;
    font-weight: bold;
}


/* Navbar main links */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

    .navbar-nav .nav-link:hover {
        color: #007bff; /* hover color */
    }

    /* Underline animation on main links */
    .navbar-nav .nav-link::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: #007bff;
        transition: width 0.3s;
        position: absolute;
        bottom: 0;
        left: 0;
    }

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

/* Dropdown menu links */
.navbar-nav .dropdown-menu .dropdown-item {
    color: #333;
    transition: all 0.3s ease;
}

    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: #007bff;
        color: #fff;
    }

/* Make dropdowns open on hover */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* remove default offset */
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

/* Optional: Add arrow indicator for dropdowns */
.navbar-nav .dropdown-toggle::after {
    margin-left: 0.3rem;
    transition: transform 0.3s;
}

.navbar-nav .dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg); /* arrow rotates on hover */
}

/* For nested dropdowns (submenus) */
.dropdown-menu .dropdown-submenu {
    position: relative;
}

    .dropdown-menu .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 0;
        display: none;
        position: absolute;
    }

    .dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }


    /*index.cshtml code*/

.progress-tracker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}


.step {
    text-align: center;
    position: relative;
    flex: 1;
}

.circle {
    width: 45px;
    height: 45px;
    background-color: #dee2e6;
    border-radius: 50%;
    line-height: 45px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}

.line {
    flex: 1;
    height: 4px;
    background-color: #dee2e6;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.step.active .circle {
    background-color: #007bff; /* Blue for current */
}

.step.completed .circle {
    background-color: #28a745; /* Green for completed */
}

.step.completed + .line {
    background-color: #28a745;
}

.label {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* Set fixed height for carousel */
#customCarousel {
    height: 600px;
}

/* Make images cover carousel height without stretching */
.carousel-img {
    height: 600px;
    object-fit: cover; /* keeps aspect ratio and fills container */
    width: 100%;
}


.carousel-caption-full {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 91, 187, 0.9); /* Blue with slight transparency */
    padding: 2px 0;
}

    .carousel-caption-full h2,
    .carousel-caption-full p {
        margin: 0;
    }


/*Loder*/
.page-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    text-align: center;
    padding-top: 20%;
}

.loader-spinner {
    width: 3rem;
    height: 3rem;
}

/*Gallery Photo*/

/* ===== GALLERY LAYOUT ===== */
/*.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
    background: #000;
    padding: 15px;
}*/

/* Image framing */
/*.thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;*/
    /* animation */
    /*opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}*/

    /* different frame sizes */
    /*.thumb.wide {
        grid-column: span 2;
    }

    .thumb.tall {
        grid-row: span 2;
    }*/

    /* stagger animation */
    /*.thumb:nth-child(1) {
        animation-delay: 0.1s;
    }

    .thumb:nth-child(2) {
        animation-delay: 0.2s;
    }

    .thumb:nth-child(3) {
        animation-delay: 0.3s;
    }

    .thumb:nth-child(4) {
        animation-delay: 0.4s;
    }

    .thumb:nth-child(5) {
        animation-delay: 0.5s;
    }*/

/* animation keyframes */
/*@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* ===== LIGHTBOX ===== */
/*.img-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
}

.img-lightbox-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    transform: scale(1);
    transition: transform 0.25s ease;
}*/

/* close button */
/*.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}*/

/* zoom buttons */
/*.zoom-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

    .zoom-controls button {
        font-size: 22px;
        padding: 8px 14px;
        margin-left: 5px;
        cursor: pointer;
    }*/

/*    ///////////////////////////////////////////////////////*/

/* =========================
   GALLERY
========================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
    background: #fff;
    padding: 20px;
}

.thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    user-select: none;
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    animation: galleryIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

    .thumb.wide {
        grid-column: span 2;
    }

    .thumb.tall {
        grid-row: span 2;
    }

@keyframes galleryIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================
   LIGHTBOX
========================= */
.img-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.img-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    max-height: 85%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.3s ease;
}

/* =========================
   ARROWS (DESKTOP)
========================= */
.nav-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 46px;
    color: #111;
    cursor: pointer;
    user-select: none;
    z-index: 3;
    opacity: 0.6;
}

.prev {
    left: 16px;
}

.next {
    right: 16px;
}

.nav-icon:hover {
    opacity: 1;
}

/* =========================
   TOP ICONS
========================= */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 26px;
    font-size: 40px;
    cursor: pointer;
    z-index: 4;
}

.rotate-icon {
    position: absolute;
    bottom: 26px;
    right: 26px;
    font-size: 30px;
    cursor: pointer;
    z-index: 4;
}

/* =========================
   📱 MOBILE VIEW — ARROWS IN FRONT
========================= */
@media (max-width: 768px) {

    .img-lightbox-content {
        max-width: 90%;
        max-height: 85%;
    }

    .nav-icon {
        z-index: 6; /* 🔥 in front of image */
        font-size: 40px;
        opacity: 0.85;
        background: rgba(255,255,255,0.6); /* optional */
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }
}


/* ===== GALLERY 02012026===== */
/*.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
    background: #fff;*/ /* ✅ WHITE BACKGROUND */
    /*padding: 20px;
}*/

/* thumbnails */
/*.thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;*/
    /* entry animation */
    /*opacity: 0;
    transform: translateY(50px) scale(0.96);
    animation: galleryIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}*/

    /* layout */
    /*.thumb.wide {
        grid-column: span 2;
    }

    .thumb.tall {
        grid-row: span 2;
    }*/

    /* staggered wave animation */
    /*.thumb:nth-child(1) {
        animation-delay: 0.1s;
    }

    .thumb:nth-child(2) {
        animation-delay: 0.2s;
    }

    .thumb:nth-child(3) {
        animation-delay: 0.3s;
    }

    .thumb:nth-child(4) {
        animation-delay: 0.4s;
    }

    .thumb:nth-child(5) {
        animation-delay: 0.5s;
    }

    .thumb:nth-child(6) {
        animation-delay: 0.6s;
    }

    .thumb:nth-child(7) {
        animation-delay: 0.7s;
    }

    .thumb:nth-child(8) {
        animation-delay: 0.8s;
    }

@keyframes galleryIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}*/

/* ===== LIGHTBOX ===== */
/*.img-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.97);*/ /* ✅ WHITE POPUP */
    /*z-index: 9999;*/
    /* open animation */
    /*animation: lightboxFade 0.35s ease;
}

@keyframes lightboxFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}*/

/* image */
/*.img-lightbox-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.3s ease;
}*/

/* icons */
/*.lightbox-close,
.nav-icon,
.rotate-icon {
    color: #111;*/ /* dark icons on white */
    /*cursor: pointer;
    user-select: none;
}*/

/* close */
/*.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 42px;
}*/

/* navigation */
/*.nav-icon {
    position: absolute;
    top: 50%;
    font-size: 48px;
    transform: translateY(-50%);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}*/

/* rotate */
/*.rotate-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 32px;
}*/

    /* hover */
    /*.lightbox-close:hover,
    .nav-icon:hover,
    .rotate-icon:hover {
        opacity: 0.6;
    }*/


/*     02012026      /////////////////////////////////////////////////////////////////////////////                                */





/*Gallery Photo*/
