/********** Template CSS **********/
:root {
    --primary: #0463FA;
    --light: #EFF5FF;
    --dark: #1B2C51;
     --sf:#D4620A;--sf2:#B84E06;--gd:#C8860A;--gd2:#E8A820;
  --nv:#0B1B3E;--nv2:#071230;
  --cr:#FFF5E8;--wh:#ffffff;
  --tx:#1a1a2e;--tm:#666666;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    width: 100%;
    height: 65px;
    padding: 1px 0;
    margin-top: 0;
    border-radius: 0;
    background-color: #fff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 6px #00000014;
    z-index: 99;
    transition: transform .3s ease-in-out;

    &.scrolled {
        background-color: rgb(233, 243, 250);
        box-shadow: #0463FA;
    }

    &.hidden-navbar {
        transform: translateY(-100%);
    }
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
}



.navbar-brand {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.logo {
    height: 42px;
    width: 140px;
    margin-right: 10px;
    background-image: url('/images/logo.png');
    background-size: cover;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.25));

    &:hover {
        transform: scale(1.1);
    }
}

.navbar-company-name {
    color: #0463FA;
    font-weight: 700;
    font-size: 1.3rem;
}

.edc-text span {
    display: inline-block;
    color: #0463FA;
    font-weight: 700;
    font-size: 1.5rem;

    &:hover {
        transform: scale(1.2);
        color: #FD1001;
    }
}

.example-spacer {
    flex: 1 1 auto;
}

.navbar-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 5px;
    width: 70%;

    li {
        margin-left: 9px;
    }

    a {
        display: flex;
        align-items: center;
        padding: 0.4rem 0.3rem;
        color: #010101;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 1.2px;
        border-radius: 0;
        transition: background-color 0.3s ease, color 0.3s ease;

        &:hover {
            color: #FD1001;
            background-color: #EFF5FF;
            border-bottom: 2px solid #FD1001;

            i {
                transform: scale(1.2);
                color: #FD1001;
            }

        }

        i {
            margin-right: 8px;
            font-size: 1.1rem;
            transition: transform 0.3s ease, color 0.3s ease;
        }
    }
}

span.active {
    font-weight: 600;
    border-bottom: 2px solid #fd1001;
}

.custom-toggler {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    outline: none;

    &.active .hamburger span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    &.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    &.active .hamburger span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;

    span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #0463FA;
        border-radius: 2px;
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
    }
}

.sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 250px;
    height: 100dvh;
    padding: 1rem;
    margin: 5px;
    background-color: #EFF5FF;
    color: #0463FA;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 6px #00000014;
    z-index: 1050;

    &.active {
        left: 0;
    }
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    color: #0463FA;
    border-bottom: 2px solid #0463FA;

    h5 {
        margin: 0;
    }
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;

    li {
        opacity: 0;
        transform: translateX(-120px);
        transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);

        .sidebar.active & {
            animation: slideInLeftStrong 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            animation-delay: 0.35s;
        }

        li:nth-child(1) {
            .sidebar.active & {
                animation-delay: 0.35s;
            }
        }

        li:nth-child(2) {
            .sidebar.active & {
                animation-delay: 0.48s;
            }
        }

        li:nth-child(3) {
            .sidebar.active & {
                animation-delay: 0.61s;
            }
        }

        li:nth-child(4) {
            .sidebar.active & {
                animation-delay: 0.74s;
            }
        }
    }
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #0463FA;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;

    &:hover {
        color: #0463FA;
        transform: translateX(4px);

        .sidebar-links li a i {
            transform: scale(1.15);
            color: #0463FA;
        }
    }

    .sidebar-links li a i {
        margin-right: 14px;
        font-size: 1.3rem;
        transition:
            transform 0.25s ease,
            color 0.25s ease;
    }
}

/* Medium screens (tablets) */
@media (min-width: 540px) and (max-width: 1024px) {
    .sidebar-links li a i {
        margin-right: 10px;
    }
}

@keyframes slideInLeftStrong {
    from {
        opacity: 0;
        transform: translateX(-120px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-link {
    cursor: pointer;
}

.sidebar-footer {
    position: absolute;
    bottom: 10px;
    width: calc(100% - 2rem);
    color: #0463FA;
    font-size: 0.875rem;
    text-align: start;

    a {
        display: flex;
        align-items: center;
        padding: 0.4rem 0.5rem;
        color: #0463FA;
        text-decoration: none;
        border-radius: 4px;
        transition:
            background-color 0.3s ease,
            color 0.3s ease;

        &:hover {
            color: #0463FA;
            background-color: rgba(11, 83, 148, 0.15);

            i {
                transform: scale(1.2);
                color: #0463FA;
            }
        }

        i {
            margin-right: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            transition:
                transform 0.3s ease,
                color 0.3s ease;
        }
    }
}



.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        backdrop-filter 0.3s ease;

    &.active {
        opacity: 1;
        pointer-events: auto;
        backdrop-filter: blur(4px);
    }
}


.number-desktop a {
    color: #003580 !important;
}

.number-desktop {
    background: #f6faff;
    border-radius: 8px;
    padding: 4px 0;
    border: 1px solid #c8dbff;
    width: 16%;
}

.phone-link {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 0 8px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;

    &:hover {
        color: #0463FA;
        background-color: rgba(11, 83, 148, 0.15);

        .icon {
            transform: scale(1.1);
            transition: all 0.3s ease;
        }
    }

    .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
        border-radius: 50%;
        background-color: #0463FA;

        img {
            height: 45px;
        }
    }
}




.floating-phone {
    position: sticky;
    top: 10px;
    right: 30px;
    width: 33px;
    height: 33px;
    border: none;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin-right: 15px;

    img {
        width: 27px;
        height: 27px;
    }
}



.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    animation: fadeIn 0.3s ease-out;
    display: none;
}

.modal-content {
    position: relative;
    /* max-width: 90%;
    padding: 30px; */
    background: #fff;
    border-radius: 12px;
    text-align: center;
    animation: slideUp 0.3s ease-out;
}

.modal-dialog {
    max-width: 69%;
    margin: 1.75rem auto;
}

.close-btn {
    position: absolute;
    top: 3px;
    right: 8px;
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
}



.number-modal {
    .phone-link {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #0f172a;
        text-decoration: none;
        font-size: 17px;
        font-weight: 800;
        padding: 22px 21px;
        background: #e5eef3;

        &:hover {
            color: #0463FA;
            background-color: rgba(11, 83, 148, 0.15);

            .icon {
                transform: scale(1.1);
            }
        }

        .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 5px;
            border-radius: 50%;
            color: #fff;

            img {
                height: 30px;
            }
        }
    }
}



.navbar .dropdown-menu {
    background-color: #f8f9fa;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 440px;
}

.navbar .dropdown-item {
    color: #000000;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 500;

    &:hover {
        color: #0463FA;
        background-color: rgba(46, 204, 113, 0.1);
    }

    .dropdown ul li {
        width: 50%;
        float: left;
    }
}



@media (max-width: 576px) {
    .edc-text span {
        font-size: 1rem;
    }

    .sidebar {
        width: 200px;
        left: -210px;
    }

    .sidebar-links a,
    .sidebar-footer a {
        font-size: 0.9rem;

        i {
            font-size: 1rem;
            margin-right: 6px;
        }
    }
}



@media (min-width: 990px) {

    .sidebar-links a i,
    .sidebar-footer a i {
        font-size: 1rem;
        margin-right: 6px;
    }

    .number-desktop {
        width: auto;
    }
}

@media (min-width: 1400px) {
    .navbar-links {
        width: 60%;
    }
}

.sidebar-links a {
    position: relative;
}

/* 🔵 ACTIVE STATE (outline box) */
.sidebar-links a.active-link {
    background: rgba(37, 99, 235, 0.08);
    color: #1e40af;
    padding-left: 10px;
}

/* Icon styling when active */
.sidebar-links a.active-link i {
    color: #2563eb;
    transform: scale(1.05);
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 🎯 Trigger */
.currency-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #0f172a;
    /* darker text */
}

/* 📦 Menu Container */
.currency-menu {
    min-width: 260px;
    padding: 6px 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* 🧾 Menu Item */
.mat-menu-item {
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    padding: 10px 16px;
}

.currency-item {
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ✨ Hover (clean blue highlight) */
.mat-menu-item:hover {
    background: #f1f5f9;
}

/* ✅ Selected item (IMPORTANT UX) */
.mat-menu-item.active {
    background: #e0f2fe;
}

.fi {
    width: 20px;
    height: 15px;
    border-radius: 3px;
}

.label {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
}

/* 💱 Code */
.code {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

/* 💎 Subtle divider (optional) */
.mat-menu-item:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

/* Dropdown container */
.currency-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-left: 10px;
}

/* Open state */
.currency-dropdown.open {
    max-height: 200px;
}

/* Item */
.currency-dropdown li {
    list-style: none;
    padding: 8px 0;
    cursor: pointer;
}

/* Item content */
.currency-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hover */
.currency-dropdown li:hover {
    background: #f1f5f9;
    border-radius: 6px;
}

.sidebar-items {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #1e40af;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;



    &:hover {
        color: #0463FA;
        transform: translateX(4px);

        i {
            transform: scale(1.15);
            color: #0463FA;
        }
    }

    i {
        margin-right: 14px;
        font-size: 1.3rem;
        transition: transform 0.25s ease,
            color 0.25s ease;
    }
}

.currency-item {
    transition: color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;

    .code {
        color: #1e40af;
    }

    &:hover {
        color: #0463FA;
        transform: translateX(4px);

        i {
            transform: scale(1.15);
            color: #0463FA;
        }
    }
}

.premium-header-one-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0.6rem 1.5rem;
    width: 100%;
}

/* BRAND */
.brand-area {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* ===== NAVIGATION LINKS (CORE) ===== */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.2rem;
    background: #f8fafe;
    padding: 0.25rem 0.5rem;
    border-radius: 60px;
    flex-shrink: 1;
    flex-wrap: nowrap;
}

.nav-links a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.55rem 0.7rem;
    color: #1e2f4f;
    transition: all 0.2s ease;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    position: relative;
}

.nav-links a mat-icon {
    font-size: 0.85rem;
    transform: scale(0.9);
    color: #003399;
    opacity: 0.85;
}

.nav-links a i {
    font-size: 0.85rem;
    transform: scale(0.9);
    color: #003399;
    opacity: 0.85;
}

.nav-links a fa-icon {
    font-size: 0.9rem;
    transform: scale(0.9);
    color: #003399;
    opacity: 0.85;
}

.nav-links a:hover {
    background: #ccdbfc;
    color: #1e40af;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transform: translateY(-1px);
}

.nav-links a:hover mat-icon {
    opacity: 1;
    color: #2563eb;
}

.nav-links a:hover i {
    opacity: 1;
    color: #2563eb;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    /* 👈 move to center */
    transform: translateX(-50%);
    /* 👈 pull back by half width */
    width: 50%;
    height: 2px;
    background: transparent;
    transition: 0.3s;
}

.nav-links a.active-link::after {
    background: #003399;
}

/* RIGHT GROUP */
.right-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-currency {
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    background: #f1f5f9;
    cursor: pointer;
}

/* Support Phone Block - premium blue style */
.support-premium {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(105deg, #f8fbfe, #f0f6ff);
    padding: 0.45rem 1.2rem;
    border-radius: 60px;
    border: 1px solid #d9e9ff;
    transition: all 0.2s;
}

.support-premium i {
    font-size: 1.1rem;
    color: #003399;
}

.support-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.support-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #5b7db3;
    letter-spacing: 0.3px;
}

.support-number {
    font-weight: 800;
    font-size: 0.9rem;
    color: #0f2b4d;
    letter-spacing: -0.2px;
}

.support-details .support-number a {
    color: #0f2b4d;
    text-decoration: none;
}

/* Language + Currency Selector (blue accent) */
.lang-currency {
    background: #f1f5f9;
    border-radius: 40px;
    padding: 0.45rem 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    font-size: 0.85rem;
    color: #0f2b4d;
    border: 1px solid #e2e8f0;
}

.lang-currency i:first-child {
    color: #3b82f6;
    font-size: 0.9rem;
}

.lang-currency .currency-badge {
    background: white;
    padding: 0.2rem 0.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.75rem;
    color: #1e40af;
    margin-left: 2px;
}

.lang-currency:hover {
    background: #eff4ff;
    border-color: #bfdbfe;
}

.cta-blue {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
}



.footer-adam {
    background: #0F2454;
    padding-top: 30px;
    float: left;
    width: 100%;
    padding-bottom: 5px;
    position: relative;
    opacity: 0.9;
}

.foot-logo {
    text-align: center;
}

.foot-logo p {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    margin-top: 11px;
}

.foot {
    position: relative;
}

.foot h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.foot hr {
    width: 44px;
    margin-top: 0;
    margin-bottom: 0;
    content: " ";
    top: 57px;
    left: 42px;
    position: absolute;
}

.nometer {
    margin: 16px 0 4px;
    text-align: center;
}

p.nometer em {
    color: red;
    font-size: 15px;
    font-weight: 600;
}

.addressnew {
    width: 100%;
    float: left;
    border: 1px solid #8792AA;
    padding: 16px
}

.addressnew ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.addressnew ul li {
    display: inline-flex;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    align-items: center;
}

.addressnew ul li a {
    color: #fff;
    display: inline;
    text-decoration: none;

}

.addressnew ul li span {
    margin-left: 10px;
    display: inline-block;
    /* padding-top: 7px;*/
}

.foot p {
    color: #fff;
    font-size: 13px;
    line-height: 22px;
}

.footer-data {
    display: flex;
    color: #fff;
    justify-content: space-between;
    margin-top: 12px;
    margin-bottom: 15px;
}

.footer-adam hr {
    /*border-color: #8792AA;*/
    margin: 10px 0 10px;

}

.foot {
    float: left;
    width: 100%;
    margin: 6px 0 10px;
}

.footer-item-active a {
    color: #000;
}

.foot ul {
    margin: 9px 0 0;
    padding: 0;
}

.foot ul li {
    display: block;
    padding: 3px 3px;
    color: #fff;
    font-weight: 400;
}

p.mr0 {
    padding: 2px 0 8px;
    margin: 0;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-align: center;

}

strong.mr0 {

    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    /* display: grid;*/
}

.foot {
    float: left;
    width: 100%;
    margin: 6px 0 10px;
}

.foot h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.footerEnd {
    padding-bottom: 0;
    background-color: #EEE;
}

.footerLinks h4 {
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    color: #fff;
}

/*.footerEnd {padding-top:15px;padding-bottom:15px;}*/
.socialIcon {
    padding-top: 10px;
    padding-bottom: 10px;
}

.socialIcon a .fa-facebook {
    color: #3b5998;
}

.socialIcon a .fa-pinterest {
    color: #bd081c;
}

.socialIcon a .fa-google-plus {
    color: #dd4b39;
}

.socialIcon a .fa-instagram {
    color: #e1306c;
}

.socialIcon a .fa-linkedin {
    color: #0077b5;
}

.socialIcon a .fa-tumblr {
    color: #35465c;
}

.socialIcon a .fa-twitter {
    color: #1da1f2;
}

.socialIcon a i {
    padding: 10px 15px;
}

.socialIcon a i:hover,
.socialIcon a i:focus {
    color: #21c6b9;
}

.footerLinks i {
    color: #fff;
    padding-right: 0;
}

.footerLinks a {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    /*transition:all 0.5s ease;*/
}

.footerLinks a:hover,
.footerLinks a:focus {
    text-decoration: none;
    /*margin-left:10px;transition:all 0.5s ease;*/
}

.footerP {
    padding-top: 20px;
    padding-bottom: 0;
    font-size: 16px;
    color: #555555;
}

.contect-adam hr {
    width: 44px;
    margin-top: 0;
    margin-bottom: 0;
    content: " ";
    top: 57px;
    left: 57px;
    position: absolute;
}

.contect-adam p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
}

.contect-adam strong {
    color: #fff;
    display: inline-block;
    width: 100%;
    margin: 10px 28px 5px;
}

.contect-adam p img {
    margin-right: 9px;
}

.contect-adam p a {
    display: contents;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.social-links a {
    width: 30px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 2px 3px rgba(0, 0, 0, 0.05);
    margin: 5px 5px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
}

.social-links a .fab {
    font-size: 14px;
    line-height: 27px;
    position: relative;
    z-index: 10;
    transition: color 0.5s;
}

.social-links a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: -90px;
    left: 0;
    background: #000;
    background: linear-gradient(-45deg, #ed1c94, #ffec17);
    position: absolute;
    transition: 0.5s;
}

.social-links a:hover::after {
    top: 0;
}

.social-links a:hover .fab {
    color: #fff;
}

.social-links a:hover {
    transform: translateY(-10px);
}

.top-sec {
    position: absolute;
    top: 23%;
    z-index: 99999;
    left: 3%;
}

.top-sec h1 {
    font-size: 40px;
    color: #fff;
}

.top-sec p {
    font-size: 21px;
    color: #fff;
    border-left: 3px solid #fff;
    padding: 0 8px 0;
    font-weight: 600;
    line-height: 33px;
    margin-top: 27px;
}

.top-sec ul {
    padding: 0;
    margin: 6px 0 14px;
    display: inline-block;
}

.top-sec ul li {
    list-style: none;
    width: 32%;
    float: left;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    align-items: center;
    margin-right: 20px;
    padding: 6px 0;
    display: flex;
}

.top-sec ul li img {
    height: 44px;
    margin-right: 11px;
    float: left;
}

.top-sec a {
    display: inline-block;
    margin-right: 10px;
}

.moblie-hide .owl-theme .owl-nav {
    position: absolute;
    top: 80%;
    right: 0;
    border-radius: 20px;
    display: flex;
}

.moblie-hide .owl-carousel .owl-nav .owl-next,
.moblie-hide .owl-carousel .owl-nav .owl-prev {
    font-size: 30px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 0px 10px !important;
    width: 40px;
    height: 40px;
    line-height: 0;
    margin-left: 10px;
}

.moblie-hide .owl-carousel .owl-nav span,
.moblie-hide .owl-carousel .owl-nav span {
       display: inline-block;
    font-size: 50px;
    line-height: 24px;
}

.moblie-hide .owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
    border: 2px solid #fff;
}

.book-with {
    width: 100%;
    float: left;
}

.book-with h2 {
    text-align: center;
    font-size: 27px;
    color: #0d2135;
    font-weight: 600;
    margin-bottom: 16px;
}

.book-with p {
    text-align: center;
    font-size: 16px;
    color: #0d2135;
    font-weight: 500;
    margin-bottom: 40px;
}

.book-with img {
    height: 29px;
    margin: 0 19px 0;
}

.book-with ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-with ul li {
    list-style-type: none;
    background: #f4f8fe;
    width: 23%;
    padding: 23px;
    text-align: center;
    border-radius: 100px 100px 0 0;
}

.book-with ul li span {
    background: #001761;
    display: inline-block;
    width: 57px;
    height: 57px;
    line-height: 3;
    border-radius: 50%;
    text-align: center;
}

.book-with ul li span img {
    height: 41px;
    margin: 9px 0 0;
    text-align: center;
}

.book-with ul li h3 {
    font-size: 15px;
    color: #0d2135;
    font-weight: 500;
    margin: 14px 0 16px;
}

.book-with ul li strong {
    font-size: 13px;
    color: #0d2135;
    font-weight: 500;
    line-height: 20px;
    display: inline-block;
}

#customer-1 {
    position: relative;
}

#customer-1.owl-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: #fff;
    background: #001761;
    border-radius: 50%;
    padding: 0px 10px !important;
    width: 40px;
    height: 40px;
    line-height: 0;
    right: -27px;
    position: absolute;
    top: 41%;
}

#customer-1.owl-carousel .owl-nav .owl-prev {
    font-size: 30px;
    color: #fff;
    background: #001761;
    border-radius: 50%;
    padding: 0px 10px !important;
    width: 40px;
    height: 40px;
    line-height: 0;
    left: -27px;
    position: absolute;
    top: 41%;
}

#customer-1.owl-carousel .owl-nav span,
#customer-1.owl-carousel .owl-nav span {
       display: inline-block;
    font-size: 50px;
    line-height: 24px;
}

#customer-1.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
    border: 2px solid #001761;
    color: #001761;
}

#customer-1 .item {
    background: rgba(255, 255, 255, 0.70);
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    box-shadow: 0px 3px 4px 0px rgb(12 6 14 / 14%);
    -webkit-box-shadow: 0px 3px 4px 0px rgb(12 6 14 / 14%);
    border-radius: 20px;
    height: 488px;
}

#customer-1.owl-carousel .owl-item img {
    border-radius: 20px 20px 0 0;
}

.white-get {
    background: #fff;
    padding: 13px 30px;
    border-radius: 10px;
    color: #0d2135;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #02479d;
    cursor:pointer;
}

.white-view {
    background: transparent;
    padding: 13px 30px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #7991ac;
}

.top-sec a:hover {
    text-decoration: none;
}

.jyotirlingas {
    width: 100%;
    margin: 44px 0 30px;
}

.jyotirlingas h2 {
    text-align: center;
    font-size: 27px;
    color: #0d2135;
    font-weight: 600;
    margin-bottom: 18px;
    display: inline-block;
    line-height: initial;
}

.jyotirlingas h2 hr {
    margin: 0 0 auto;
    color: inherit;
    background-color: #001761;
    border: 0;
    opacity: 1;
    width: 96px;
    display: inline-block;
}

#customer-1 .item h3 {
    font-size: 18px;
    color: #001761;
    font-weight: 500;
    margin: 11px 18px 8px;
}

#customer-1 .item p {
    font-size: 13px;
    color: #0d2135;
    font-weight: 500;
    margin: 0 18px 18px;
}

#customer-1 .item span {
    font-size: 13px;
    color: #0d2135;
    font-weight: 500;
    margin: 0 0 11px 18px;
    display: inline-block;
}

#customer-1 .item .plan {
    display: flex;
    justify-content: space-between;
    margin: 0 15px 19px;
}

#customer-1 .item .plan a {
    display: inline-flex;
}

#customer-1 .item .plan a.pl, #customer-1 .item .plan .white-get {
    color: #1e3273;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #1e3273;
    text-decoration: none;
}
#customer-1 .item .plan .white-get:hover{color:#fff !important;}
#customer-1 .item .plan a.ex-1 {
    background: #001761;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #001761;
    text-decoration: none;
}

.package {
    width: 100%;
    float: left;
    margin: 6px 0 30px;
}

.package .baidyanath {
    display: flex;
    align-items: start;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.70);
    border-radius: 10px;
    border: 1px solid #e7e7e7;
    box-shadow: 0px 3px 4px 0px rgb(12 6 14 / 14%);
    -webkit-box-shadow: 0px 3px 4px 0px rgb(12 6 14 / 14%);
    border-radius: 20px;
    position: relative;
}

.package .baidyanath .divine-1 {
    width: 55%;

}

.package .baidyanath .divine-1 h2 {
    font-size: 29px;
    color: #091725;
    font-weight: 500;
    margin: 7px 24px 0;
}

.package .baidyanath .divine-1 p {
    font-size: 14px;
    color: #0d2135;
    font-weight: 500;
    margin: 12px 24px 18px;
    border-left: 3px solid #0d2135;
    padding: 0 12px 0;
}


.package .baidyanath .divine-1 .significance {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 24px 18px;
    background: #f2f9fe;
    border: 1px solid #e7e7e7;
    box-shadow: 0px 3px 4px 0px rgb(12 6 14 / 14%);
    -webkit-box-shadow: 0px 3px 4px 0px rgb(12 6 14 / 14%);
    border-radius: 20px;
    position: absolute;
    width: 60%;
    padding: 12px;
    justify-content: space-between;
}

.package .baidyanath .divine-1 .significance ul {
    padding: 0;
    margin: 0;
}

.package .baidyanath .divine-1 .significance ul li {
    list-style: none;
    padding: 3px 0;
    font-size: 13px;
    color: #001761;
    font-weight: 500;
}

.package .baidyanath .divine-1 .exp-btn {
    background: #001761;
    color: #fff;
    padding: 2px 2px 2px 10px;
    border-radius: 23px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #001761;
    text-decoration: none;
    position: absolute;
    bottom: 13px;
    left: 2%;
    display: flex;
    align-items: anchor-center;
}

.package .baidyanath .divine-1 .exp-btn span {
    background: #fff;
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    margin-left: 10px;
}

.package .baidyanath .divine-1 .exp-btn span i {
    font-size: 22px;
    line-height: 35px;
    color: #001761;
    font-weight: 600;
}

.package .baidyanath .divine-1 .significance ul li img {
    height: 22px;
    margin-right: 8px;
}

.package .baidyanath .divine-2 {
    width: 45%;
}

.package .baidyanath .divine-2 img {
    border-radius: 20px;
}

#customer-3.owl-carousel .owl-nav button.owl-next {
    font-size: 30px;
    color: #fff;
    background: #001761;
    border-radius: 50%;
    padding: 0px 10px !important;
    width: 40px;
    height: 40px;
    line-height: 0;
    right: -27px;
    position: absolute;
    top: 41%;
}

#customer-3.owl-carousel .owl-nav button.owl-prev {
    font-size: 30px;
    color: #fff;
    background: #001761;
    border-radius: 50%;
    padding: 0px 10px !important;
    width: 40px;
    height: 40px;
    line-height: 0;
    left: -27px;
    position: absolute;
    top: 41%;
}

#customer-3.owl-carousel .owl-nav button span,
#customer-3.owl-carousel .owl-nav button span {
    display: inline-block;
}

#customer-3.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
    border: 2px solid #001761;
}

#customer-3 {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
}

#customer-3 p {
    font-size: 17px;
    color: #5b5b5b;
    font-weight: 500;
}

#customer-3.owl-carousel .owl-item img {
    width: 65px;
    margin-right: 17px;
}

.travelers {
    background: #f4f8fe;
    width: 100%;
    float: left;
    margin: 11px 0 0;
    padding: 10px 0 13px;
}

.travelers h3 {
    text-align: center;
    font-size: 29px;
    color: #0d2135;
    font-weight: 500;
    margin: 10px 0 11px;
}

.travelers .name {
    display: flex;
    align-items: center;
}

.travelers .name h4 {
    font-size: 18px;
    color: #101010;
    font-weight: 600;
    margin-bottom: 0;
}

.travelers .name p {
    font-size: 16px;
    color: #5b5b5b;
    font-weight: 500;
}

.quotetxt {
    display: flex;
    justify-content: space-between;
}

.quotetxt span {
    background: #f4f8fe;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    padding-top: 7px;
}

.quotetxt span i {
    color: #e2e9ff;
    font-size: 18px;
}

.quotetxt strong i {
    color: #001761;
    font-size: 12px;
    padding-right: 1px;
}

.quotetxt p {
    font-size: 14px;
    color: #5b5b5b;
    font-weight: 500;
}

#main {
    /* margin: 50px 0; */
}

#main #faq .card {
    margin-bottom: 10px;
    border: 0;
    border: 1px solid #c3d5ed;
    border-radius: 10px;
    padding: 0;
}

#main #faq .card .card-header {
    /* border: 1px solid #c3d5ed; */
    /* -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5); */
    /* border-radius: 10px; */
    padding: 0;
    border-bottom: 0;

}

#main #faq .card .card-header .btn-header-link {
    color: #fff;
    display: block;
    text-align: left;
    /* background: #fff; */
    color: #001147;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
}

#main #faq .card .card-header .btn-header-link:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
}

#main #faq .card .card-header .btn-header-link.collapsed {
    /* background: #fff; */
    color: #001147;
    font-size: 13px;
    font-weight: 600;
}

#main #faq .card .card-header .btn-header-link.collapsed:after {
    content: "\f106";
}

#main #faq .card .collapsing {
    background: #fff;
    color: #001147;
    font-size: 13px;
    font-weight: 600;
}

#main #faq .card .collapse {
    border: 0;
}

#main #faq .card .collapse.show {
    line-height: 30px;
    color: #001147;
    font-size: 12px;
    font-weight: 600;
}

#main #faq .card .collapse.show .card-body {
    flex: 1 1 auto;
    padding: 0 1rem;
}

#main #faq .card .card-header a span i {
    background: #0b3694;
    width: 26px;
    height: 26px;
    display: inline-block;
    text-align: center;
    padding-top: 5px;
    color: #fff;
    border-radius: 50%;
    padding: 7px 0 0;
    font-size: 11px;
    margin-right: 5px;
}

.complete {
    width: 100%;
    float: left;
    margin: 11px 0 0;
    padding: 10px 0 13px;
}

.complete h3 {
    text-align: left;
    font-size: 22px;
    color: #0d2135;
    font-weight: 500;
    margin: 11px 0 15px;
}

.yatra {
    width: 100%;
    float: left;
    background: url(/images/yatradham/background-banner.png);
    text-align: center;
    margin-bottom: 30px;
}

.yatra h3 {
    text-align: center;
    font-size: 29px;
    color: #fff;
    font-weight: 500;
    margin: 47px 0 11px;
}

.yatra p {
    text-align: center;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    margin: 10px 0 11px;
}

.yatra ul {
    margin: 38px 0 47px;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.yatra ul li {
    background: #fff;
    list-style-type: none;
    padding: 10px 28px 14px;
    width: 200px;
    border-radius: 10px;
    font-size: 16px;
    color: #001147;
    font-weight: 500;
}

.yatra ul li img {
    display: block;
    margin: 0 auto 8px;
    height: 46px;
}

.spiritual {
    width: 100%;
    float: left;
    margin: 0px 0 27px;
}

.spiritual .trip-all {
    border: 1px solid #113773;
    border-radius: 20px;
    padding: 21px;
}

.spiritual .trip-all h3 {
    text-align: center;
    font-size: 27px;
    color: #0d2135;
    font-weight: 600;
    margin-bottom: 18px;
    display: inline-block;
    line-height: initial;
    width: 100%;
}

.spiritual .trip-all h3 hr {
    margin: 0 0 auto;
    color: inherit;
    background-color: #001761;
    border: 0;
    opacity: 1;
    width: 96px;
    display: inline-block;
}

.spiritual .trip-all .all-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.spiritual .trip-all .all-name label {
    display: block;
    color: #113773;
    font-weight: 600;
    font-size: 15px;
        text-align: left;
}

.spiritual .trip-all .all-name div {
    width: 32%;
}

.spiritual .trip-all .all-name .form-control {
    display: block;
    width: 100%;
    padding: 0.675rem .75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #8D8E92;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #C7DCFB;
    appearance: none;
    border-radius: 18px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.spiritual .trip-all .all-name .form-select {
    padding: 0.675rem .75rem;
    font-size: 14px;
    font-weight: 400;
    border-radius: 18px;

}

.spiritual .trip-all h4 {
    display: block;
    color: #113773;
    font-weight: 600;
    font-size: 15px;
}

.spiritual .trip-all .Package {
    display: flex;
    background: #f5fafd;
    border-radius: 20px;
    border: 1px solid #dde9f2;
    padding: 10px 11px;
    margin-bottom: 14px;
}

.spiritual .trip-all .Package .custom-control-label {
    font-size: 14px;
    color: #095282;
    font-weight: 500;
    margin-right: 12px;
}

.submit-btn {
    background: #0d3d90;
    color: #fff;
    padding: 17px 0;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 500;
    border: 0;
    text-decoration: none;
    display: inline-block;
    margin-top: 14px;
    width: 100%;
}

.butn-fixed {
    position: fixed;
    z-index: 9999999;
    bottom: 16px;
    right: 20px;
}

.hide-dib {
    display: block;
}

.hide-destop {
    display: none;
}




.had-hide {
    display: none;
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;

}

.curve {
    position: absolute;
    bottom: -78px;
    left: 0;
    width: 100%;
}

/* Hide the checkbox */
.menu-toggle {
    display: none;
}

/* Hamburger Icon */
.hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 30px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s ease;
}

/* Full Screen Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass);
    backdrop-filter: blur(40px);
    /* The "Fancy" Blur */
    display: flex;
    justify-content: center;
    align-items: start;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-in-out;
    z-index: 999;
}

/* Link Styling */
.menu-links {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.menu-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.menu-links a {
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* TRIGGER STATE: When checkbox is checked */
.menu-toggle:checked~.menu-overlay {
    visibility: visible;
    opacity: 1;
}

.menu-toggle:checked~.menu-overlay .menu-links li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for Links */
.menu-toggle:checked~.menu-overlay .menu-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-toggle:checked~.menu-overlay .menu-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-toggle:checked~.menu-overlay .menu-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-toggle:checked~.menu-overlay .menu-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.menu-toggle:checked~.menu-overlay .menu-links li:nth-child(5) {
    transition-delay: 0.5s;
}

/* Animate Hamburger to "X" */
.menu-toggle:checked+.hamburger .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle:checked+.hamburger .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked+.hamburger .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* HERO */
.hero{background:url(/images/yatradham/banner-10.png) no-repeat center center;background-size: cover;padding:80px 40px 70px;display:flex;gap:56px;align-items:center;position:relative;overflow:hidden;min-height:600px}
.hero-glow{position:absolute;right:8%;top:50%;transform:translateY(-50%);font-family:'Cinzel',serif;font-size:300px;color:rgba(200,134,10,0.05);line-height:1;pointer-events:none;user-select:none}
.hero-left{flex:1;position:relative;z-index:1}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #8a9eb6;
    border: 0;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero-h1{font-size:40px;font-weight:800;line-height:1.1;color:#fff;margin-bottom:10px}
.hero-h1 span{color:#fff;}
.hero-sub{font-style:italic;font-size:18px;color:#fff;margin-bottom:22px}
.hero-desc{font-size:15px;color:#fff;line-height:1.8;margin-bottom:26px;max-width:500px}
.hero-chips{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:30px}
.hchip{background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.15);color:rgba(255,255,255,0.82);padding:6px 16px;border-radius:50px;font-size:12px;font-weight:700}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap}
.btn-saf{background:linear-gradient(135deg,var(--sf),var(--sf2));color:#fff;padding:15px 32px;border-radius:50px;font-weight:800;font-size:15px;text-decoration:none;border:none;cursor:pointer;font-family:'Nunito',sans-serif;transition:opacity .2s}
.btn-saf:hover{opacity:.88}
.btn-out{background:transparent;border:2px solid rgba(255,255,255,0.3);color:#fff;padding:15px 28px;border-radius:50px;font-weight:700;font-size:15px;text-decoration:none;cursor:pointer;font-family:'Nunito',sans-serif;transition:border-color .2s,color .2s}
.btn-out:hover{border-color:var(--gd2);color:var(--gd2)}

/* HERO FORM */
.hero-form{width:511px;flex-shrink:0;background:#fff;border:1px solid rgba(200,134,10,0.3);border-radius:22px;padding:30px;position:relative;z-index:1}
.hf-title{font-size:18px;color:#0d2135;text-align:center;margin-bottom:5px;font-weight:700}
.hf-sub{font-size:11px;color:#0d2135;text-align:center;margin-bottom:22px}
.hf-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.hf-grp{margin-bottom:13px}
.hf-grp label{display:block;font-size:13px;font-weight:700;color:#1d2b4b;margin-bottom:5px;letter-spacing:.5px;text-transform:uppercase}
.hf-grp input,.hf-grp select{width:100%;background:rgba(255,255,255,0.07);border:1px solid rgba(200,134,10,0.25);color:#fff;padding:11px 14px;border-radius:9px;font-size:13px;font-family:'Nunito',sans-serif;outline:none;transition:border-color .2s}
.hf-grp input:focus,.hf-grp select:focus{border-color:var(--gd2)}
.hf-grp input::placeholder{color:rgba(255,255,255,0.3)}
.hf-grp select option{background:#0b1b3e;color:#fff}
.hf-submit{width:100%;background:linear-gradient(135deg,var(--sf),#9b3a00);color:#fff;border:none;padding:14px;border-radius:11px;font-family:'Nunito',sans-serif;font-size:15px;font-weight:800;cursor:pointer;transition:opacity .2s;letter-spacing:.5px;margin-top:2px}
.hf-submit:hover{opacity:.88}
.hf-success{display:none;background:rgba(76,175,80,0.15);border:1px solid rgba(76,175,80,0.4);border-radius:9px;padding:11px;text-align:center;color:#81c784;font-size:13px;font-weight:700;margin-top:12px}
.form-box {
    width: 100%;
    max-width: 513px;
    background:rgba(255,255,255,0.6);
    border: 1px solid rgba(200, 134, 10, 0.35);
    border-radius: 22px;
    padding: 30px 20px;
    backdrop-filter: blur(16px);
  }

  .form-title {
   
    font-size: 18px;
    color: #1d2b4b;
    text-align: center;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .form-sub {
    font-size: 11.5px;
    color: #000;
    text-align: center;
    margin-bottom: 22px;
  }

  .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .grp { margin-bottom: 13px; }
  .grp label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #1d2b4b;
    margin-bottom: 6px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-align:left;
  }

  .grp input,
  .grp select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid #8d94a3;
    color: #0e0e0e;
    padding: 11px 14px;
    border-radius: 9px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.25s;
  }
  .grp input:focus,
  .grp select:focus { border-color: #E8A820; background: rgba(255,255,255,0.1); }
  .grp input::placeholder { color: #0e0e0e; }
  .grp select option { background: #0b1b3e; color: #fff; }

  /* Locked field */
  .grp input.locked {
    background: rgba(212,98,10,0.1);
    border-color: rgba(212,98,10,0.4);
    color: #1d2b4b;
    font-weight: 700;
    cursor: not-allowed;
    padding-right: 38px;
  }
  .lock-wrap { position: relative; }
  .lock-wrap .lock-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
    opacity: 0.6;
  }

  .btn-submit {
    width: 100%;
    background: #042e6c;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.4px;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 4px;
  }
  .btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }
  .btn-submit:active { transform: scale(0.98); }

  .success-msg {
    display: none;
    background: rgba(76,175,80,0.15);
    border: 1px solid rgba(76,175,80,0.45);
    border-radius: 9px;
    padding: 11px;
    text-align: center;
    color: #008706;
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
  }
  .form-note {
    text-align: center;
    font-size: 10.5px;
    color: #000;
    margin-top: 12px;
  }
/* STATS */
.stats{background:var(--nv2);border-top:2px solid var(--gd);border-bottom:2px solid var(--gd);padding:20px 40px;display:flex;justify-content:space-around;align-items:center}
.stat-n{font-family:'Cinzel',serif;font-size:28px;font-weight:900;color:var(--gd2);text-align:center}
.stat-l{font-size:10px;color:rgba(255,255,255,0.55);font-weight:700;letter-spacing:1px;text-transform:uppercase;text-align:center;margin-top:2px}
.sdiv{width:1px;height:40px;background:rgba(200,134,10,0.25)}

/* SHARED */
.stag{display:inline-flex;align-items:center;gap:6px;background:rgba(212,98,10,0.1);border:1px solid rgba(212,98,10,0.3);color:var(--sf);padding:5px 15px;border-radius:50px;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:14px}
.sh2{font-size:36px;font-weight:700;color:var(--tx);margin-bottom:12px;line-height:1.2}
.sh2 span{color:var(--sf)}
.sdiv2{width:80px;height:3px;border-radius:2px;background:linear-gradient(90deg,var(--sf),var(--gd));margin:16px 0}
.sp{font-size:15px;color:var(--tm);line-height:1.8;max-width:620px}

/* ABOUT */
.about-wrap{background:#fff;padding:72px 0}
.about-inner{max-width:1140px;margin:0 auto;padding:0 40px;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.temple-vis{background:url(/images/yatradham/plgrimage-banner-1.png);border-radius:22px;height:420px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid rgba(200,134,10,0.25);position:relative;overflow:hidden}
.temple-vis::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at center,rgba(212,98,10,0.18) 0%,transparent 68%)}
.tv-sym{font-size:95px;position:relative;z-index:1;line-height:1}
.tv-name{font-size:20px;color:#fff;margin-top:12px;z-index:1;font-weight:700;position:relative}
.tv-loc{font-size:12px;color:#fff);z-index:1;margin-top:5px;position:relative}
.tv-badge{position:absolute;bottom:-14px;right:-14px;background:linear-gradient(135deg,var(--sf),var(--sf2));color:#fff;padding:16px 22px;border-radius:16px;font-weight:800;font-size:14px;text-align:center;z-index:2;box-shadow:0 6px 20px rgba(212,98,10,0.4)}
.tv-badge span{display:block;font-size:26px;font-weight:900}
.about-chips{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:26px}
.achip{display:flex;align-items:center;gap:10px;background:var(--cr);border-radius:11px;padding:11px 15px;border:1px solid rgba(212,98,10,0.12);font-size:13px;font-weight:700;color:var(--nv)}

/* WHY */
.why-bg{background:linear-gradient(180deg,#fff8ee,#fff);padding:72px 0}
.why-inner{max-width:1140px;margin:0 auto;padding:0 40px}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:40px}
.wcard{background:#fff;border-radius:18px;padding:30px 26px;border:1px solid rgba(212,98,10,0.1);transition:transform .25s,box-shadow .25s;cursor:default;position:relative;overflow:hidden}
.wcard::after{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--sf),var(--gd));transform:scaleX(0);transform-origin:left;transition:transform .3s}
.wcard:hover{transform:translateY(-6px);box-shadow:0 12px 36px rgba(212,98,10,0.12)}
.wcard:hover::after{transform:scaleX(1)}
.wc-icon{font-size:40px;margin-bottom:14px}
.wc-h{font-size:16px;font-weight:700;color:var(--nv);margin-bottom:9px}
.wc-p{font-size:13.5px;color:var(--tm);line-height:1.75}

/* PACKAGES */
.pkg-bg{background:var(--nv);padding:72px 0}
.pkg-inner{max-width:1140px;margin:0 auto;padding:0 40px}
.pkg-inner .sh2{color:#fff}
.pkg-inner .sp{color:rgba(255,255,255,0.55)}
.pkg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:40px}
.pcard{background:rgba(255,255,255,0.04);border:1px solid rgba(200,134,10,0.2);border-radius:20px;overflow:hidden;transition:transform .25s,border-color .25s;display:flex;flex-direction:column}
.pcard:hover{transform:translateY(-6px);border-color:var(--gd2)}
.pcard.feat{border-color:var(--gd2);box-shadow:0 0 28px rgba(200,134,10,0.2)}
.pcard-h{background:linear-gradient(135deg,rgba(212,98,10,0.22),rgba(200,134,10,0.1));padding:24px;position:relative}
.pop-badge{position:absolute;top:14px;right:14px;background:var(--gd2);color:#1a0a00;font-size:9px;font-weight:800;padding:4px 11px;border-radius:50px;letter-spacing:.8px;text-transform:uppercase}
.pc-type{font-size:10px;color:var(--gd2);font-weight:700;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:5px}
.pc-name{font-size:21px;color:#fff;font-weight:700}
.pc-dur{font-size:12px;color:rgba(255,255,255,0.5);margin-top:4px}
.pc-quote-band{background:rgba(200,134,10,0.12);border:1px solid rgba(200,134,10,0.25);border-radius:11px;padding:13px 16px;margin-bottom:20px;text-align:center}
.pc-quote-band p{font-size:11px;color:rgba(255,255,255,0.5);margin-bottom:4px}
.pc-quote-band strong{font-size:13px;color:var(--gd2);letter-spacing:.5px}
.pcard-b{padding:24px;flex:1;display:flex;flex-direction:column}
.pc-inc{list-style:none;margin-bottom:22px;flex:1}
.pc-inc li{display:flex;align-items:flex-start;gap:8px;font-size:13px;color:rgba(255,255,255,0.72);padding:5px 0;border-bottom:1px solid rgba(255,255,255,0.05)}
.pc-inc li:last-child{border-bottom:none}
.chk{color:#66bb6a;font-size:14px;flex-shrink:0;margin-top:2px}
.xmk{color:#ef5350;font-size:14px;flex-shrink:0;margin-top:2px}
.btn-bk{width:100%;background:linear-gradient(135deg,var(--sf),var(--sf2));color:#fff;border:none;padding:14px;border-radius:11px;font-family:'Nunito',sans-serif;font-size:14px;font-weight:800;cursor:pointer;transition:opacity .2s;letter-spacing:.3px}
.btn-bk:hover{opacity:.88}
.btn-bk-o{width:100%;background:transparent;border:1px solid var(--gd2);color:var(--gd2);padding:14px;border-radius:11px;font-family:'Nunito',sans-serif;font-size:14px;font-weight:800;cursor:pointer;transition:background .2s}
.btn-bk-o:hover{background:rgba(200,134,10,0.1)}
.custom-note{background:rgba(255,255,255,0.04);border:1px solid rgba(200,134,10,0.2);border-radius:16px;padding:24px 30px;margin-top:34px;display:flex;align-items:center;gap:22px;flex-wrap:wrap}
.cn-icon{font-size:38px;flex-shrink:0}
.cn-text p:first-child{font-size:16px;color:var(--gd2);font-weight:700;margin-bottom:5px}
.cn-text p:last-child{font-size:13px;color:rgba(255,255,255,0.5);line-height:1.65}
.cn-btn{background:linear-gradient(135deg,var(--sf),var(--sf2));color:#fff;border:none;padding:13px 26px;border-radius:50px;font-family:'Nunito',sans-serif;font-size:13px;font-weight:800;cursor:pointer;white-space:nowrap;transition:opacity .2s;margin-left:auto}
.cn-btn:hover{opacity:.88}

/* ITINERARY */
.itin-bg{background:#fff;padding:72px 0}
.itin-inner{max-width:1140px;margin:0 auto;padding:0 40px}
.timeline{margin-top:44px;position:relative}
.timeline::before{content:'';position:absolute;left:27px;top:0;bottom:0;width:2px;background:linear-gradient(180deg,var(--sf),var(--gd),var(--sf))}
.ti{display:flex;gap:26px;margin-bottom:30px}
.ti-dot{width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,var(--sf),var(--sf2));display:flex;align-items:center;justify-content:center;flex-shrink:0;font-weight:900;color:#fff;font-size:14px;box-shadow:0 4px 16px rgba(212,98,10,0.4);z-index:1}
.ti-box{background:var(--cr);border-radius:15px;padding:22px 26px;flex:1;border:1px solid rgba(212,98,10,0.1);border-left:3px solid var(--sf)}
.ti-tag{display:inline-block;background:rgba(212,98,10,0.1);color:var(--sf);padding:3px 11px;border-radius:50px;font-size:10px;font-weight:700;margin-bottom:7px;letter-spacing:.5px}
.ti-h{font-size:16px;font-weight:700;color:var(--nv);margin-bottom:8px}
.ti-p{font-size:13.5px;color:var(--tm);line-height:1.75}

/* INCLUSIONS */
.inc-bg{background:var(--cr);padding:72px 0}
.inc-inner{max-width:1140px;margin:0 auto;padding:0 40px}
.inc-grid{display:grid;grid-template-columns:1fr 1fr;gap:34px;margin-top:40px}
.incbox{background:#fff;border-radius:20px;padding:30px;border:1px solid rgba(0,0,0,0.06)}
.incbox-h{font-size:17px;font-weight:700;margin-bottom:20px;display:flex;align-items:center;gap:9px}
.incbox-h.yes{color:#2e7d32}.incbox-h.no{color:#c62828}
.inclist{list-style:none}
.inclist li{display:flex;align-items:flex-start;gap:9px;padding:9px 0;border-bottom:1px solid rgba(0,0,0,0.04);font-size:13.5px;color:var(--tm)}
.inclist li:last-child{border-bottom:none}
.im{font-size:15px;flex-shrink:0;margin-top:1px}

/* HIGHLIGHTS */
.hl-bg{background:linear-gradient(135deg,var(--nv2),var(--nv));padding:72px 0}
.hl-inner{max-width:1140px;margin:0 auto;padding:0 40px}
.hl-inner .sh2{color:#fff}.hl-inner .sp{color:rgba(255,255,255,0.55)}
.hl-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:40px}
.hlcard{background:rgba(255,255,255,0.05);border:1px solid rgba(200,134,10,0.15);border-radius:16px;padding:24px;text-align:center;transition:all .25s;cursor:default}
.hlcard:hover{background:rgba(212,98,10,0.1);border-color:var(--sf);transform:translateY(-4px)}
.hl-icon{font-size:34px;margin-bottom:11px}
.hl-h{font-size:13px;color:var(--gd2);margin-bottom:7px;font-weight:700}
.hl-p{font-size:12px;color:rgba(255,255,255,0.5);line-height:1.65}

/* TRAVEL INFO */
.trav-bg{background:#fff;padding:72px 0}
.trav-inner{max-width:1140px;margin:0 auto;padding:0 40px}
.trav-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:40px}
.ticard{background:var(--cr);border-radius:20px;padding:26px;border:1px solid rgba(212,98,10,0.1)}
.ticard-icon{font-size:32px;margin-bottom:13px}
.ticard-h{font-size:16px;font-weight:700;color:var(--nv);margin-bottom:11px}
.ticard p,.ticard ul{font-size:13.5px;color:var(--tm);line-height:1.8}
.ticard ul{padding-left:15px}
.ticard ul li{margin-bottom:4px}

/* FAQ */
.faq-bg{background:var(--cr);padding:72px 0}
.faq-inner{    max-width: 100%;
    margin: 0 auto;
    padding: 0 0;}
.faq-list{margin-top:38px}
.faq-item{background:#fff;border-radius:13px;margin-bottom:11px;border:1px solid rgba(0,0,0,0.06);overflow:hidden}
.faq-q{padding:20px 22px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:700;font-size:14.5px;color:var(--nv);transition:color .2s;gap:12px}
.faq-q:hover{color:var(--sf)}
.faq-tog{font-size:20px;color:var(--sf);font-weight:900;flex-shrink:0;transition:transform .2s}
.faq-a{padding:0 22px 18px;font-size:13.5px;color:var(--tm);line-height:1.8;display:none}
.faq-item.open .faq-a{display:block}
.faq-item.open .faq-tog{transform:rotate(45deg)}

/* TESTIMONIALS */
.ts-bg{background:var(--nv);padding:72px 0}
.ts-inner{max-width:1140px;margin:0 auto;padding:0 40px}
.ts-inner .sh2{color:#fff}
.ts-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:40px}
.tscard{background:rgba(255,255,255,0.05);border:1px solid rgba(200,134,10,0.15);border-radius:18px;padding:26px}
.ts-stars{color:var(--gd2);font-size:15px;margin-bottom:13px}
.ts-text{font-size:13.5px;color:rgba(255,255,255,0.72);line-height:1.75;margin-bottom:20px;font-style:italic}
.ts-auth{display:flex;align-items:center;gap:12px}
.ts-av{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--sf),var(--gd));display:flex;align-items:center;justify-content:center;font-weight:800;color:#fff;font-size:16px;flex-shrink:0}
.ts-nm{font-weight:700;color:#fff;font-size:14px}
.ts-city{font-size:11px;color:rgba(255,255,255,0.4)}
.jyoti-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
}
/* Dropdown Arrow Rotate */
.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Rotate Arrow When Open */
.dropdown.show .dropdown-toggle::after,
.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}
.dropdown-toggle::after {
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left:0;
}

.navbar ul.dropdown-menu.custom-dropdown.show li {
    width:50%;
    float:left;
}