html {
    scroll-behavior: smooth;
}

.slider-static-logo {
    position: absolute;
    right: 440px;
    top: 86%;
    transform: translateY(-50%);
    z-index: 9;
}


/* Tablet */
@media (max-width: 991px) {
    .slider-static-logo {
        right: 30px;
    }
    .slider-static-logo img {
        max-width: 180px;
    }
}

/* Mobile – hide or move below */
@media (max-width: 767px) {
    .slider-static-logo {
        position: fixed;
        top: 90px;              /* adjust based on header height */
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        z-index: 9;
        text-align: center;
        width: 100%;
        pointer-events: none;   /* optional: avoid blocking slider swipe */
    }

    .slider-static-logo img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}
/* Glass background for slider logo */
.slider-static-logo {
    background: rgba(255, 255, 255, 0.596);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.35);
}

/* Image inside */
.slider-static-logo img {
    display: block;
     max-width: 430px;
}

/* Mobile refinement */
@media (max-width: 767px) {
    .slider-static-logo {
        padding: 12px 16px;
        border-radius: 12px;
    }

    .slider-static-logo img {
        max-width: 300px;
    }
}
/* Default state */
.logo-switch .logo-default {
    display: block;
}

.logo-switch .logo-scrolled {
    display: none;
}

/* When header is sticky / scrolled */
header.sticky .logo-switch .logo-default,
.header-sticky .logo-switch .logo-default {
    display: none;
}

header.sticky .logo-switch .logo-scrolled,
.header-sticky .logo-switch .logo-scrolled {
    display: block;
}

/* Optional sizing */
.logo-switch img {
    width: 210px;
    margin-top:4px;
    padding:3px;
}

/* Section spacing */
.py-90px {
    padding-top: 90px;
    padding-bottom: 90px;
}

/* Dark background */
.bg-dark-gray {
    background-color: #111827; /* deep premium dark */
}

/* Base color (use your theme color if already defined) */
.text-base-color {
    color: var(--base-color);
}

/* Icon styling */
.bg-dark-gray i {
    line-height: 1;
    transition: all 0.3s ease;
}

/* Title */
.bg-dark-gray h2 {
    color: #ffffff;
}

/* Benefit titles */
.bg-dark-gray h6 {
    color: #ffffff;
    font-size: 18px;
}

/* Descriptions */
.bg-dark-gray p {
    font-size: 15px;
    line-height: 1.7;
}

/* Subtle hover effect */
.bg-dark-gray .col-lg-4:hover i {
    transform: translateY(-6px);
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .py-90px {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .py-90px {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .bg-dark-gray h6 {
        font-size: 17px;
    }
}
.bg-solitude-blue h6 {
font-size: 22px;
font-weight: 500;
}
/* Benefit item transition */
.benefit-item {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    padding:10px;
}

/* Icon transition */
.benefit-item i {
    transition: transform 0.35s ease, color 0.35s ease;
}

/* Title & text transition */
.benefit-item h6,
.benefit-item p {
    transition: color 0.35s ease;
}

/* Hover effect */
.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item:hover i {
    transform: scale(1.15);
    color: var(--base-color);
}

.benefit-item:hover h6 {
    color: var(--base-color);
}

.benefit-item:hover p {
    opacity: 1;
}
.benefit-item:hover {
    box-shadow: 0 13px 25px rgba(0,0,0,0.25);
    border-radius: 10px;
    padding:10px;
}
.benefit-item {
    transition-delay: 0.05s;
}
@media (max-width: 767px) {
    .benefit-item:hover {
        transform: none;
        box-shadow: none;
    }
}
/* Pricing card base */
.eligibility-pricing {
    background: #ffffff;
    border-radius: 18px;
    padding: 45px 35px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.35s ease;
}

/* Hover effect */
.eligibility-pricing:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    border-color: var(--base-color);
}

/* Highlighted middle card */
.eligibility-pricing.featured {
    border: 2px solid var(--base-color);
    transform: scale(1.04);
}

/* Small top tag (like pricing plan label) */
.plan-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 20px;
    background: #f3f4f6;
    margin-bottom: 20px;
    font-weight: 500;
}

.plan-tag.highlight {
    background: var(--base-color);
    color: #fff;
}

/* Title */
.plan-title {
    font-weight: 600;
    margin-bottom: 25px;
    min-height: 70px;
}

/* Feature list */
.plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-list li {
    padding: 14px 0;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 15px;
}

.plan-list li:last-child {
    border-bottom: none;
}

/* Text transition */
.plan-title,
.plan-list li {
    transition: color 0.3s ease;
}

.eligibility-pricing:hover .plan-title,
.eligibility-pricing:hover .plan-list li {
    color: var(--base-color);
}

/* Mobile */
@media (max-width: 767px) {
    .eligibility-pricing.featured {
        transform: none;
    }
}
/* BASE CARD */
.pass-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 22px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 55px rgba(0,0,0,0.10);
    transition: all 0.35s ease;
}

/* HOVER LIFT */
.pass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

/* TITLES */
.pass-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 6px;
    
}

/* PRICE */
.pass-price {
    font-size: 34px;
    font-weight: 700;
    margin: 20px 0;
}

.pass-price span {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

/* LIST */
.pass-card ul {
    text-align: left;
    flex-grow: 1;
    margin-bottom: 28px;
}

/* BADGES */
.pass-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    padding:  2px;
    border-radius: 20px;
    
}

/* SILVER */
.pass-card.silver { border-top: 5px solid #bfc4ca; }
.pass-badge.silver { background: #eef0f3; color: #555; }

/* GOLD */
.pass-card.gold { border-top: 5px solid #f0b429; }
.pass-badge.gold { background: #fff1cc; color: #a87500; }

/* PLATINUM */
.pass-card.platinum { border-top: 5px solid #6a5cff; }
.pass-badge.platinum { background: #f1f0ff; color: #4b47d6; }

/* REGISTER BUTTON BASE */
.btn-pass {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* BUTTON COLORS */
.silver-btn {
    background: linear-gradient(135deg, #aeb3b8, #8f9499);
}
.gold-btn {
    background: linear-gradient(135deg, #f0b429, #ff8f1f);
}
.platinum-btn {
    background: linear-gradient(135deg, #6a5cff, #4b4bff);
}

/* BUTTON HOVER */
.btn-pass:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    color: #fff;
}
.about-list {
    list-style: none;
    padding-left: 0;
    margin-top:20px;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    line-height: 1.6;
    border-bottom:1px solid #f3ecec;
}

.about-list li::before {
    content: "\f058"; /* Font Awesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff9f1c; /* matches your orange accent */
    position: absolute;
    left: 0;
    top: 3px;
}
/* Link wrapper */
.process-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card */
.process-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    height: 100%;
}

/* Hover effect */
.process-card-link:hover .process-card {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--base-color);
}

/* Stage label */
.stage-label {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    background: #f3f4f6;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* Title */
.stage-title {
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    color:#2d3d5f;
}



/* List */
.process-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 15px;
    color:#3c4b6b;

    line-height: 1.6;
    border-bottom:1px solid #f3ecec;
}

.process-card ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--base-color);
}

/* Hover color effects */
.process-card-link:hover .stage-label {
    background: var(--base-color);
    color: #fff;
}

.process-card-link:hover .stage-title {
    color: var(--base-color);
}

/* Mobile */
@media (max-width: 767px) {
    .process-card {
        padding: 30px 24px;
    }
}
/* Arrow connector between process columns */
.process-col {
    position: relative;
}

/* Arrow line */
.process-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px; /* distance between cards */
    width: 36px;
    height: 2px;
    background: #d1d5db;
}

/* Arrow head */
.process-col:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: -18px;
    border-left: 8px solid #d1d5db;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Hover highlight */
.process-col:hover::after,
.process-col:hover::before {
    border-left-color: var(--base-color);
    background: var(--base-color);
}

/* Keep cards above arrows */
.process-card {
    position: relative;
    z-index: 2;
    border:1px solid #ccc;
}

/* Mobile & tablet – remove arrows */
@media (max-width: 991px) {
    .process-col::after,
    .process-col::before {
        display: none;
    }
}

/* Equal height columns */
.process-col {
    display: flex;
}

/* Card fills full column height */
.process-col .process-card {
    flex: 1;
}

/* Sector grid */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    justify-content: center;
}

/* Equal-width sector item */
.sector-item {
    text-align: center;
    padding: 4px 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}


/* Hover effect */
.sector-item:hover {
    background: var(--base-color);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--base-color);
}

/* Mobile tweaks */
@media (max-width: 767px) {
    .sector-item {
        font-size: 14px;
        padding: 8px 14px;
    }
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #c0c3df;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}
.eoi-form .form-control,
.eoi-form .form-select {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

.eoi-form .form-control:focus,
.eoi-form .form-select:focus {
    border-color: var(--base-color);
    box-shadow: none;
}
.form-select, .form-control {
    padding:2px!important;
}

/* Dark background */
.bg-dark-gray {
    background: #0f172a; /* deep navy / slate */
}

/* Timeline wrapper */
.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

/* Horizontal line */
.timeline-wrapper::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(39, 14, 182, 0.623);
}

/* Timeline item */
.timeline-item {
    position: relative;
    text-align: center;
    width: 20%;
    padding-top: 40px;
}

/* Dot */
.timeline-dot {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: var(--base-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(255,255,255,0.08);
}

/* Date */
.timeline-date {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--base-color);
}

/* Title */
.timeline-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
}

/* Hover effect */
.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 0 10px rgba(255,255,255,0.12);
    transition: all 0.3s ease;
}

/* Mobile – vertical timeline */
@media (max-width: 991px) {
    .timeline-wrapper {
        flex-direction: column;
    }

    .timeline-wrapper::before {
        left: 12px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .timeline-item {
        width: 100%;
        text-align: left;
        padding-left: 50px;
        padding-top: 0;
        margin-bottom: 35px;
    }

    .timeline-dot {
        left: 12px;
        top: 6px;
        transform: none;
    }
}
/* Gallery image wrapper */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover zoom */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-item::after {
    content: "+";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Mobile */
@media (max-width: 767px) {
    .gallery-item img {
        height: 220px;
    }
}
/* Lightbox image sizing */
#galleryModalImg {
    max-width: 85vw;     /* control width */
    max-height: 85vh;    /* control height */
    object-fit: contain;
    transform: scale(0.85);   /* start smaller */
    transition: transform 0.4s ease;
}

/* When modal is fully shown */
.modal.show #galleryModalImg {
    transform: scale(1);
}
.bg-slate-blue {
    background: #0f172a; /* deep slate blue */
}
select, input { color: #000 !important;}
.sector-item {
    display: flex;
    align-items: center;
    gap: 5px;   
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sector-item i {
    font-size: 15px;
    color: var(--base-color);
    transition: transform 0.3s ease;
}

.sector-item:hover {
    background: var(--base-color);
    color: #ffffff;
    transform: translateY(-4px);
}

.sector-item:hover i {
    color: #ffffff;
    transform: scale(1.1);
}
.gallery-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-scroll-track {
    display: flex;
    width: max-content;
    animation: scrollGallery 40s linear infinite;
}

.gallery-grid-scroll {
    display: flex;
    gap: 20px;
}

.gallery-grid-scroll img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
}

/* Pause on hover (optional) */
.gallery-scroll-wrapper:hover .gallery-scroll-track {
    animation-play-state: paused;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.video-testimonial-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

/* Thumbnail */
.video-testimonial-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover zoom */
.video-testimonial-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

/* Play button */
.play-overlay i {
    font-size: 64px;
    color: #ffffff;
    background: var(--base-color);
    border-radius: 50%;
    padding: 18px 20px;
}

/* Mobile */
@media (max-width: 767px) {
    .video-testimonial-card img {
        height: 220px;
    }
}
