/* Custom Variables and Reset */
:root {
    --primary-yellow: #f2c050;
    --dark-bg: #1a1a1a;
    --text-muted: #6c757d;
    --primary-light: rgba(242, 192, 80, 0.1);
    --bg-gradient: linear-gradient(180deg, #fffcf0 0%, #ffffff 100%);
    --primary: #d4a017;
    --foreground: #020817;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --card: #ffffff;
    --muted: #64748b;
    --fiderColor: #f9f1df;
    --dark-blue: #020817;
    --accent-gold: #d4a017;

    --gold: #d4a017;
    --card-bg: #ffffff;
    --section-bg: #f8fafc;

    --dark-gradient-bg: linear-gradient(
        135deg,
        #0f172b 0%,
        #1d293d 50%,
        #0f172b 100%
    );
    --card-bg-transparent: rgba(255, 255, 255, 0.1); /* #FFFFFF1A */
    --card-border-top: 1px solid rgba(255, 255, 255, 0.2); /* #FFFFFF33 */
    --primary-gold: #d4a017;
    --text-gray: #64748b;
    --bg-light: #fdfdfd;
    --primary-dark: #0b2239;

    --gold-main: #d4a017;
    --dark-navy: #0b2239;
    --bg-soft: #fcfdfd;

    --gold-primary: #d4a017;
    --navy-dark: #0b2239;
    --input-bg: #f8fafc;
    --text-main: #1e293b;
    /* --text-muted: #64748b; */
}

body {
    font-family: "Plus Jakarta Sans Inter", sans-serif;
    background-color: #fff;
}

/* Top Banner */
.top-banner {
    background-color: var(--dark-bg);
    color: white;
    font-size: 0.85rem;
    padding: 10px 0;
}

.header-loginContat {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 10px;
}

.banner-btn {
    background-color: var(--primary-yellow);
    color: black;
    font-weight: bold;
    font-size: 0.75rem;
    border-radius: 50px;
    padding: 4px 12px;
    text-decoration: none;
    margin-left: 10px;
    transition: transform 0.2s;
    display: inline-block;
}

.banner-btn:hover {
    transform: scale(1.05);
    color: black;
}

/* Header & Navbar */
.main-header {
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* Scrolled State (Sticky effect) */
.header-scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.nav-link {
    font-weight: 600;
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: black !important;
}

/* Hover line effect */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width 0.3s;
}

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

/* Buttons */
.btn-start-now {
    background-color: var(--primary-yellow);
    color: black;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 25px;
    border: none;
    transition: all 0.3s;
}
.navbar-expand-lg {
    padding: 0;
    margin: 0;
}
.btn-start-now:hover {
    box-shadow: 0 8px 15px rgba(242, 192, 80, 0.3);
    transform: translateY(-2px);
}

.btn-contact-us {
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: black;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border 0.3s;
    font-size: 0.9rem;
}

.btn-contact-us:hover {
    border-color: black;
    color: black;
}

/* * Section 1 */
.hero-section {
    min-height: 300px;
    background: var(--bg-gradient);
}

/* Blur Backgrounds */
.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}
.blur-top {
    width: 500px;
    height: 500px;
    background: rgba(242, 192, 80, 0.08);
    top: 50px;
    right: -100px;
}
.blur-bottom {
    width: 300px;
    height: 300px;
    background: rgba(242, 192, 80, 0.05);
    bottom: 0;
    left: -50px;
}

.relative-content {
    position: relative;
    z-index: 10;
}

.text-yellow {
    color: var(--primary-yellow);
}

/* Underline SVG */
.underline-svg {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
}

/* Service Cards */
.custom-service-card {
    display: block;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 25px 20px;
    text-decoration: none;
    color: black;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.custom-service-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary-yellow);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-yellow);
    font-size: 20px;
}

.custom-service-card h5 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.custom-service-card p {
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.arrow-icon {
    font-size: 16px;
    color: #ccc;
    transition: all 0.3s;
}

.custom-service-card:hover .arrow-icon {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

/* Trust Bar */
.divider {
    width: 1px;
    height: 20px;
    background: #eee;
}

.fade-in {
    animation: fadeInOut 0.5s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ! Section 3 */
.packages-section {
    background-color: #ffffff;
    z-index: 1;
}

/* Font Weights */
.fw-extrabold {
    font-weight: 800;
}
.text-xs {
    font-size: 0.75rem;
}
.text-sm {
    font-size: 0.875rem;
}
.text-lg {
    font-size: 1.125rem;
}

/* Gradients & Backgrounds */
.text-gradient {
    background: linear-gradient(to right, #f2c050, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-warm {
    background: radial-gradient(
        circle at center,
        rgba(242, 192, 80, 0.08) 0%,
        transparent 70%
    );
}

.absolute-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

.blur-blob-right {
    position: absolute;
    top: 20%;
    right: -5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(242, 192, 80, 0.08);
    filter: blur(64px);
    border-radius: 9999px;
}

/* Badge Custom */
.badge-custom {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(242, 192, 80, 0.15);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Card Styling (Exact React Layout) */
.pkg-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-card {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dark-card,
.popular-card {
    background: var(--foreground);
    color: white;
    border: 2px solid var(--primary);
    transform: scale(1.04);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.light-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Elements inside Card */
.popular-tag {
    background: var(--primary);
    color: #000;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.icon-wrapper-pkg {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bg-primary-10 {
    background: rgba(242, 192, 80, 0.1);
}
.bg-primary-20 {
    background: rgba(242, 192, 80, 0.2);
}

.pkg-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

/* Colors for Dark Card */
.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}
.text-white-40 {
    color: rgba(255, 255, 255, 0.4);
}

/* Buttons */
.btn-pkg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary-yellow {
    background: var(--primary);
    color: #000;
}
.btn-black {
    background: #000;
    color: #fff;
}

.btn-pkg:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}
.transition-arrow {
    transition: transform 0.2s;
}
.btn-pkg:hover .transition-arrow {
    transform: translateX(4px);
}

/* ! Section 4 */

:root {
    --primary-color: #3b82f6; /* Aap apna brand color yahan set karein */
    --primary-foreground: #ffffff;
    --muted-foreground: #64748b;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
}

.fw-extrabold {
    font-weight: 800;
}

/* Gradient Text */
.text-gradient {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badge Styling */
.custom-badge {
    background-color: var(--primary);
    color: black;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

/* Circle Number Styling */
.step-number-circle {
    width: 4.5rem;
    height: 4.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

/* Connector Line Logic */
.max-w-4xl {
    max-width: 896px;
}

/* Container ko relative rakhein */
.steps-container {
    position: relative;
}

.connector-line {
    position: absolute;
    top: 3.5rem; /* Circle ke exact center height ke mutabiq adjust karein */
    left: 16.6%; /* 1/6th of 100% (taake pehle col ke center se shuru ho) */
    width: 66.8%; /* Do gaps cover karne ke liye (33.4% * 2) */
    height: 2px;
    background: var(--primary);
    z-index: 1;
    pointer-events: none; /* Line click na ho */
}

/* Button Hover Effect */
.btn-custom {
    padding: 0.8rem 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.btn-custom:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

/* ! Section 5 */

/* --- Features Section Styling --- */

.features-section {
    background-color: #ffffff;
}

.max-w-2xl {
    max-width: 672px;
}

/* Grid Card Styling */
.feature-card {
    background: #ffffff; /* bg-card */
    border: 1px solid #e2e8f0; /* border-border */
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

/* Hover Lift Effect (Same as React) */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(242, 192, 80, 0.3);
}

.feature-icon-box {
    width: 3rem;
    height: 3rem;
    background: rgba(242, 192, 80, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background: rgba(242, 192, 80, 0.2);
}

.feature-icon-box i {
    font-size: 1.5rem;
    color: #f2c050; /* primary color */
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #020817; /* foreground */
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #64748b; /* muted-foreground */
    line-height: 1.6;
}

/* ! Secction 6 */

/* --- Eligibility Section - Static & Stable Version --- */

/* 1. Background Layer */
.section-warm {
    background: linear-gradient(180deg, #faf0d7, #f5d790);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 2. Utility Classes */
.max-w-4xl {
    max-width: 896px;
}
.max-w-5xl {
    max-width: 1024px;
}

/* 3. Advantages/Disadvantages Cards */
.card-custom {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    height: 100%;
    /* Sirf hover par halka sa effect rakha hai */
    transition: box-shadow 0.3s ease;
}

.card-custom:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 4. Eligibility Criteria Cards */
.criteria-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1.75rem;
    border-radius: 1.25rem;
    height: 100%;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.criteria-card:hover {
    border-color: rgba(242, 192, 80, 0.4);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.06);
}

.criteria-card .icon-box {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(242, 192, 80, 0.12);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #f2c050; /* Primary Gold */
    font-size: 1.3rem;
}

.criteria-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #020817;
    margin-bottom: 0.6rem;
}

.criteria-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.8rem;
}

/* 5. REMOVED ALL REVEAL/ANIMATION LOGIC */
/* Ab page load hote hi sab 100% visible hoga */
.reveal {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    filter: none !important;
}

/* List Icons Styling */
.list-unstyled li i {
    font-size: 1.1rem;
}

/* ! Section 7 */

/* --- Employment Section Specifics --- */

.max-w-3xl {
    max-width: 768px;
}

/* Dot Marker for Retirement List */
.dot-marker {
    width: 6px;
    height: 6px;
    background-color: #f2c050; /* primary gold */
    border-radius: 50%;
    flex-shrink: 0;
}

/* Conclusion Box Styling */
.conclusion-box {
    background-color: rgba(242, 192, 80, 0.1);
    border-left: 4px solid #f2c050;
}

/* Custom spacing for cards */
.criteria-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
}

.criteria-card:hover {
    border-color: rgba(242, 192, 80, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card-custom {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
}

.text-gradient {
    background: linear-gradient(90deg, #f2c050, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badge Styling */
.badge-custom {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(242, 192, 80, 0.15);
    color: #020817;
    font-size: 0.875rem;
    font-weight: 600;
}

.effortlessly-text {
    color: var(--primary);
}

/* General Layout Fixes */
.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.fw-extrabold {
    font-weight: 800;
}

/* ! Section 8 */
/* --- Financial Aid Section Styles --- */

.aid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.aid-card:hover {
    border-color: rgba(242, 192, 80, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.aid-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(242, 192, 80, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2c050; /* Primary Color */
}

.amount-box {
    background-color: rgba(242, 192, 80, 0.05);
}

/* Custom Button (React Style) */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(242, 192, 80, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(242, 192, 80, 0.4);
    background-color: #d4a017;
}

.tracking-wider {
    letter-spacing: 0.05em;
}
.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.section-warm {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(242, 192, 80, 0.03) 100%
    );
}

/* ! Section 9 */
/* --- Platform Section Custom Styles --- */

.platform-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 192, 80, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Icon Box with Gradient Background (Like React) */
.platform-icon-box {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(
        135deg,
        rgba(242, 192, 80, 0.2),
        rgba(242, 192, 80, 0.05)
    );
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2c050;
    transition: transform 0.4s ease;
}

.platform-card:hover .platform-icon-box {
    transform: scale(1.1);
}

/* Typography & Layout */
.p-8 {
    padding: 2.5rem !important;
}

.platform-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
}

.platform-card p {
    line-height: 1.7;
    margin-bottom: 0;
}

/* Gradient Text logic (re-using from previous sections) */
.text-gradient {
    background: linear-gradient(90deg, #f2c050, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ! Section 10 */

.bg-primary-light {
    background-color: var(--primary);
}
.blur-3xl {
    filter: blur(64px);
}
.text-xs {
    font-size: 0.75rem;
}

.journey-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.journey-card:hover {
    border-color: rgba(242, 192, 80, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Icon Box Gradients */
.journey-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2c050;
    transition: transform 0.3s ease;
}

.bg-grad-1 {
    background: linear-gradient(
        135deg,
        rgba(242, 192, 80, 0.2),
        rgba(242, 192, 80, 0.05)
    );
}
.bg-grad-2 {
    background: linear-gradient(
        135deg,
        rgba(242, 192, 80, 0.15),
        rgba(242, 192, 80, 0.05)
    );
}
.bg-grad-3 {
    background: linear-gradient(
        135deg,
        rgba(242, 192, 80, 0.1),
        rgba(242, 192, 80, 0.05)
    );
}

.journey-card:hover .journey-icon-box {
    transform: scale(1.1);
}

/* Journey Tags (Links) */
.journey-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background-color: #f8fafc; /* muted bg */
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.journey-tag:hover {
    background-color: rgba(242, 192, 80, 0.15);
    color: #020817;
}

/* Arrow Animation */
.arrow-move {
    transition: all 0.3s ease;
}

.journey-card:hover .arrow-move {
    color: #f2c050 !important;
    transform: translateX(5px);
}

/* Responsive constraints */
.max-w-xl {
    max-width: 36rem;
}

/* ! Section 10 */
/* --- Experts Section (Dark Theme) --- */

.bg-dark-section {
    background-color: #020817; /* Dark background like 'foreground' in shadcn */
    position: relative;
}

.text-primary-gold {
    color: #f2c050 !important;
}

.bg-primary-glow {
    background-color: rgba(242, 192, 80, 0.1);
}
.bg-primary-soft-glow {
    background-color: rgba(242, 192, 80, 0.05);
}

/* Badge */
.badge-expert {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(242, 192, 80, 0.2);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Expert Cards */
.expert-card {
    background: rgba(255, 255, 255, 0.03); /* background/5 */
    border: 1px solid rgba(255, 255, 255, 0.1); /* border/10 */
    backdrop-filter: blur(8px);
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
}

.expert-card:hover {
    background: rgba(255, 255, 255, 0.08); /* background/10 */
    border-color: rgba(242, 192, 80, 0.3);
}

.expert-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(242, 192, 80, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2c050;
    transition: transform 0.4s ease;
}

.expert-card:hover .expert-icon-box {
    transform: scale(1.1);
}

.expert-role {
    font-size: 0.7rem;
    font-weight: 700;
    color: #f2c050;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.expert-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6); /* background/60 */
    line-height: 1.6;
}

/* CTA Link */
.expert-cta {
    color: #f2c050;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.expert-cta:hover {
    color: #ffffff;
}

.arrow-transition {
    transition: transform 0.3s ease;
}

.expert-card:hover .arrow-transition {
    transform: translateX(5px);
}

/* ! Section 11 */

/* --- Testimonials Styles --- */

.inline-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: #f1f5f9; /* bg-muted */
    border-radius: 9999px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f2c050; /* text-primary */
}

.stat-text {
    font-size: 0.85rem;
    color: #64748b; /* text-muted-foreground */
    text-align: left;
    max-width: 200px;
    line-height: 1.2;
}

.testimonial-card {
    background: #ffffff; /* bg-card */
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

/* Featured Card (Dark Logic) */
.testimonial-card.featured {
    background: #020817; /* bg-foreground */
    color: #ffffff;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card .stars i {
    font-size: 0.85rem;
}

.quote-icon {
    color: rgba(242, 192, 80, 0.3);
    display: block;
}

.testimonial-card.featured .quote-icon {
    color: rgba(242, 192, 80, 0.4);
}

.testimonial-text {
    font-size: 0.875rem;
    line-height: 1.7;
    font-style: italic;
}

.author-info .name {
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info .role {
    font-size: 0.75rem;
}

.testimonial-card.featured .author-info .role {
    color: rgba(255, 255, 255, 0.5);
}

/* Re-using your global classes */
.p-7 {
    padding: 1.75rem !important;
}

/* ! Section 12 */
.section-warm {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(242, 192, 80, 0.03) 100%
    );
}
.faq-bg-card {
    background-color: #ffffff;
}
.faq-bg-white {
    background-color: #f8fafc;
}
#faq {
    background-color: #f9f1df;
}
.accordion.space-y-3 > .accordion-item {
    margin-bottom: 0.75rem; /* space-y-3 */
    border: 1px solid #e2e8f0 !important; /* border-border */
}

.accordion-button {
    font-weight: 700;
    color: #020817; /* text-foreground */
    background-color: transparent !important;
    padding: 1.25rem 1.5rem;
    font-size: 15px;
    box-shadow: none !important;
    text-align: left;
}

.accordion-button:not(.collapsed) {
    color: #f2c050; /* Primary color when active */
}

/* Accordion Body (Shadcn style) */
.accordion-body {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.875rem; /* text-sm */
    color: #64748b; /* text-muted-foreground */
    line-height: 1.625; /* leading-relaxed */
}

/* Simple Chevron Icon logic */
.accordion-button::after {
    background-size: 1rem;
    transition: transform 0.2s ease;
}

/* --- Footer Custom Styles --- */

.section-dark {
    background-color: #101828; /* Same as ExpertenSection bg */
}

/* CTA Band Gradient */
.footer-cta-band {
    background: linear-gradient(
        90deg,
        rgba(242, 192, 80, 0.15),
        rgba(242, 192, 80, 0.05)
    );
    border: 1px solid rgba(242, 192, 80, 0.2);
    border-radius: 2rem;
}

/* Logo Invert (brightness-0 invert logic) */
.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5); /* text-background/50 */
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f2c050; /* text-primary */
}

/* Helper Classes */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}
.text-white-20 {
    color: rgba(255, 255, 255, 0.2) !important;
}
.text-xs {
    font-size: 0.75rem;
}
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.hover-white:hover {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Arrow move animation for button */
.btn-primary-custom:hover .arrow-move {
    transform: translateX(4px);
}

.arrow-move {
    transition: transform 0.2s ease;
    display: inline-block;
}

/* * How Its Work Page Styling */

.work-section {
    position: relative;
    height: 80vh;
    background: var(--dark-gradient-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
    color: white;
}

.bg-glow-orb {
    position: absolute;
    width: 530px;
    height: 529px;
    top: 67px;
    left: 455px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-yellow) 50%,
        var(--primary) 100%
    );
    opacity: 0.28;
    filter: blur(130px);
    z-index: 0;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 896px; /* Specific width from requirements */
}

/* Top Pill Badge */
.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
}

/* aaaaaaaaa */

.about-pill i {
    color: var(--primary-yellow);
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.main-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}
.main-subtitles {
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
}

/* The Cards (Same to Same UI) */
.glass-card {
    background: var(--card-bg-transparent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: var(--card-border-top);
    border-radius: 16px;
    height: 150px; /* Precise height from requirements */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
    backdrop-filter: blur(10px);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.icon-style {
    color: var(--primary-yellow);
    font-size: 26px;
    /* margin-bottom: 12px; */
}

.card-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bg-glow-orb {
        width: 300px;
        height: 300px;
        left: 10%;
    }
    .main-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .work-section {
        height: 130vh;
    }
}

/* * Our Mission Section In How Its Work */

.mission-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Badge Styling */
.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--fiderColor);
    color: var(--accent-gold);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.mission-badge i {
    font-size: 16px;
}

/* Heading Styling */
.mission-title {
    font-size: 2.5rem; /* Responsive size */
    color: var(--dark-blue);
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: Poppins;
}

/* Main Text Styling */
.mission-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    font-family: Inter;
}

.text-dark-blue {
    color: var(--dark-blue) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mission-section {
        padding: 30px 20px;
    }
}

/* ! Section Our services */
.section-title {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.services-section {
    background:
    /* linear-gradient(0deg, #f8fafc, #f8fafc), */ linear-gradient(
        135deg,
        #f8fafc 0%,
        rgba(254, 252, 232, 0.3) 50%,
        #f8fafc 100%
    );
    padding-top: 30px;
    padding-bottom: 30px;
}

.title-underline {
    width: 50px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 0 auto;
}

/* Card Styling */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    border: 1px solid #eef0f3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.active-card {
    background-color: var(--dark-blue);
    color: #fff;
    border: 2px solid var(--primary-gold);
}

.icon-box {
    background-color: var(--primary-gold);
    color: #fff;
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-subtext {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.active-card .card-subtext {
    color: rgba(255, 255, 255, 0.7);
}

/* List Styling */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 0.85rem;
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.active-card .service-list li {
    color: rgba(255, 255, 255, 0.9);
}

.service-list li::before {
    content: "•";
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Button styling */
.btn-view-all {
    display: inline-block;
    background-color: var(--primary-gold);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(212, 160, 23, 0.3);
}

.btn-view-all:hover {
    background-color: #b88a14;
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 48px;
    }
    .service-card {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 35px;
    }
    .service-card {
        padding: 20px;
    }
}

/* ! Section Meet Out team */
.team-section {
    padding: 80px 0;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0 auto;
}

/* Card Styling */
.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.team-card:hover {
    transform: translateY(-10px);
}

.member-image-box {
    background-color: #e9eff6; /* Placeholder color from image */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.member-role {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .team-title {
        font-size: 2rem;
    }
}

/* ? Start Services section */

/* ! Services section 1 */

/* --- Base Styles (Same as yours) --- */
.work-section {
    position: relative;
    min-height: 80vh; /* height ki jagah min-height use karein takay mobile pe auto-adjust ho */
    background: var(--dark-gradient-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
    color: white;
}

.bg-glow-orb {
    position: absolute;
    width: 530px;
    height: 529px;
    top: 50%; /* Centered vertically */
    left: 50%;
    transform: translate(-50%, -50%); /* Centered exactly */
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-yellow) 50%,
        var(--primary) 100%
    );
    opacity: 0.15; /* Adjusted for better text readability */
    filter: blur(130px);
    z-index: 0;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px; /* Increased slightly for 4 cards */
}

/* --- Card Styles (Same structure, updated look) --- */
.glass-card {
    background: var(--card-bg-transparent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: var(--card-border-top);
    border-radius: 16px;
    height: 160px; /* Kept similar to your requirement */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
    backdrop-filter: blur(10px);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Image se matching value size */
.card-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Image se matching label style */
.card-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: none; /* Removed Uppercase to match image */
    letter-spacing: 0.5px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .work-section {
        height: auto;
        padding: 60px 0;
    }
    .main-title {
        font-size: 2.2rem;
    }
}

/* ! Services Section 2 for 4 Carts  */

.services-wrapper {
    padding: 40px 0;
}

.section-heading {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.heading-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0 auto;
}

/* Card General Styling */
.service-card {
    padding: 35px;
    border-radius: 25px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Dark Card Specific */
.dark-card {
    background-color: var(--primary-dark);
    color: #fff;
    border: 2px solid var(--accent-gold);
}

/* Light Card Specific */
.light-card {
    background-color: #ffffff;
    color: var(--primary-dark);
    border: 1px solid #eee;
}

/* Icon Box */
.icon-box {
    width: 45px;
    height: 45px;
    background-color: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.dark-card .card-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Feature List Styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 0.88rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.4;
}

.feature-list li::before {
    content: "\f058"; /* FontAwesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.light-card .feature-list li {
    color: var(--text-gray);
}

/* Button Styling */
.btn-learn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--accent-gold);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-learn:hover {
    background-color: #b88a14;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    .service-card {
        padding: 25px;
    }
}

/* ! Section 3  */
.algerian-services {
    background-color: var(--bg-soft);
    padding: 20px 0;
}

/* Header Styling */
.header-badge {
    background-color: var(--gold-main);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.main-heading {
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 2.5rem;
}

.sub-heading {
    color: var(--text-gray);
    max-width: 650px;
    margin: 10px auto;
}

/* Card General Styling */
.card-item {
    border-radius: 30px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gold-main);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Dark Card */
.dark-theme {
    background-color: var(--dark-navy);
    color: #fff;
}

/* Light Card */
.light-theme {
    background-color: #fff;
    color: var(--dark-navy);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--gold-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.service-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 25px;
}

/* List Styling */
.feature-list {
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.feature-lists {
    color: black;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.feature-list li {
    font-size: 0.85rem;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.feature-list li::before {
    content: "•";
    color: var(--gold-main);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Buttons */
.btn-commencer {
    background-color: var(--gold-main);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-commencer:hover {
    background-color: #b88a14;
    color: white;
}

/* Bottom Help Bar */
.help-bar {
    background-color: #fff;
    border-radius: 20px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.help-text h5 {
    margin: 0;
    font-weight: 700;
    color: var(--dark-navy);
}

.help-text p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.btn-contact {
    background-color: var(--gold-main);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .help-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 1.8rem;
    }
    .card-item {
        padding: 30px 20px;
    }
}

/* ! Start Contact Us Page Now */
/* * Section 1 */
.contact-section {
    position: relative;
    height: 80vh;
    background: var(--dark-gradient-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
    color: white;
}

/* Same Glow Effect as other sections */
.bg-glow-orb {
    position: absolute;
    width: 530px;
    height: 529px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(242, 192, 80, 0.1) 0%,
        rgba(15, 23, 43, 0) 70%
    );
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

/* Badge Styling */
.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.about-pill i {
    color: var(--primary-yellow);
}

.main-title {
    font-size: 56px; /* Matches your large typography */
    font-weight: 700;
    margin-bottom: 15px;
}

.main-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Cards Styling */
.glass-card {
    background: var(--card-bg-transparent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-yellow);
}

.icon-style {
    color: var(--primary-yellow);
    font-size: 32px;
    margin-bottom: 15px;
}

.card-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    .contact-section {
        padding: 60px 0;
    }
    .glass-card {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        height: 140vh;
    }
}

/** Section 3  Conatact Us Wala*/
.contact-form-section {
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
}

.form-title {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 2.5rem;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Form Styling */
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-label span {
    color: var(--gold-primary);
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-custom i {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
    font-size: 1rem;
}

.form-control {
    background-color: var(--input-bg);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 12px 12px 45px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.textarea-custom {
    padding-left: 15px; /* No icon for textarea */
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.btn-submit {
    background-color: var(--gold-primary);
    color: white;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #b88a14;
}

/* Info Cards Styling */
.info-card,
.faq-card {
    background-color: var(--input-bg);
    border-radius: 20px;
    padding: 30px;
}

.info-title {
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: #fef3c7;
    color: var(--gold-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
}

.info-value {
    font-weight: 600;
    color: var(--navy-dark);
    margin: 0;
    font-size: 0.95rem;
}

.info-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* FAQ Styling */
.faq-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-faq {
    display: block;
    width: 100%;
    background-color: var(--navy-dark);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
    .form-title {
        font-size: 2rem;
    }
}

/* ! Section 4 Conatct Us */
/* Color Palette from Image */
.location-section {
    background-color: var(--section-bg);
    font-family: "Inter", sans-serif;
}

.main-title {
    font-weight: 800;
    color: var(--navy);
    font-size: 2.5rem;
}

.main-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Map UI Styling */
.map-wrapper {
    background-color: #d1d5db;
    border-radius: 25px;
    height: 100%;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-bg {
    width: 100%;
    height: 447px;
    object-fit: cover;
    opacity: 0.5;
}

.marker-container {
    position: absolute;
    text-align: center;
}

.country-text {
    color: #c2410c;
    font-weight: 900;
    font-size: 1.6rem;
    display: block;
    margin-bottom: 5px;
}

.marker-circle {
    width: 60px;
    height: 60px;
    background-color: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.marker-address {
    color: var(--navy);
}

/* Info Cards Styling */
.info-card-white {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.icon-circle-yellow {
    width: 44px;
    height: 44px;
    background-color: #fef3c7;
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.card-title-sm {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.small-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
}

.transport-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-list li {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 6px;
    position: relative;
    padding-left: 14px;
}

.transport-list li::before {
    content: "•";
    color: #fbbf24;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Gold Button Style */
.btn-itinerary {
    background-color: var(--gold);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.btn-itinerary:hover {
    background-color: #b88a14;
    color: white;
}

/* Responsive Scaling */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }
    .map-wrapper {
        min-height: 350px;
    }
}

/* ! Login Page Ka style */
.dark-hero-side {
    background:
        linear-gradient(rgba(15, 23, 43, 0.9), rgba(15, 23, 43, 0.95)),
        url("https://images.unsplash.com/photo-1557683316-973673baf926?q=80&w=2070&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}

.secure-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.text-gold {
    color: var(--gold) !important;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Right Side Form */
.form-container {
    width: 100%;
    max-width: 420px;
}

.form-title {
    font-size: 2.2rem;
    color: var(--navy-dark);
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-custom i {
    position: absolute;
    left: 15px;
    color: #94a3b8;
}

.input-group-custom .eye-toggle {
    left: auto;
    right: 15px;
    cursor: pointer;
}

.input-group-custom input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border-radius: 12px;
    background: var(--input-bg);
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.btn-login {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-login:hover {
    background-color: #b88a14;
    transform: translateY(-2px);
}

.divider {
    text-align: center;
    position: relative;
    color: #94a3b8;
    font-size: 0.8rem;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e2e8f0;
}

.divider::before {
    left: 0;
}
.divider::after {
    right: 0;
}

.btn-google {
    border: 1px solid #e2e8f0;
    background: white;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--navy-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.googleimg {
    width: 18px;
}

/* Responsive Scaling */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* * Client Registration CSS */

.form-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.step-indicator {
    border-collapse: separate;
    display: table;
    margin-left: 0px;
    position: relative;
    table-layout: fixed;
    text-align: center;
    vertical-align: middle;
    padding-left: 0;
    padding-top: 20px;
}

.step-indicator li {
    display: table-cell;
    position: relative;
    float: none;
    padding: 0;
    width: 1%;
}

.step-indicator .step {
    background-color: #f2c050;
    border-radius: 50%;
    border: 1px solid #ccc;
    color: #fff;
    font-size: 24px;
    height: 64px;
    line-height: 64px;
    margin: 0 auto;
    position: relative;
    width: 64px;
    z-index: 1;
}

.step-indicator li.completed .step {
    border-color: #87d37c;
    color: #87d37c;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-map-marker:before {
    content: "\f041";
}

.step-indicator .caption {
    color: #ccc;
    padding: 11px 16px;
}

.step-indicator li.completed .caption {
    color: #87d37c;
}

.step-indicator li:after {
    background-color: #ccc;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 100%;
    top: 32px;
}

.step-indicator li:after {
    left: 50%;
}

.step-indicator li.completed:after {
    background-color: #87d37c;
}

.step-indicator li.active .step {
    color: white;
    background-color: #f2c050;
}

.step-indicator .caption {
    color: #ccc;
    padding: 11px 16px;
}

.step-indicator li.active .caption {
    color: #4183d7;
}

.step-indicator li:last-child:after {
    display: none;
    /* Hide the line after the last item */
}

.footer {
    background-color: #13385e;
    text-align: center;
    padding: 7px 0;
    color: #f8faff;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
}

.header {
    background-color: #e3e8ee;
    color: black;
    text-align: center;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.header .logo {
    margin-left: 10%;
    width: 30%;
}

.header .logo img {
    margin: 4px 0px 0px 0px;
    width: 20%;
}

.position-relative {
    position: relative;
}

.eye-icon {
    position: absolute;
    font-size: 18px;
    top: 65%;
    right: 30px;
    /* Adjust as needed */
    transform: translateY(-50%);
    cursor: pointer;
    color: #333;
    z-index: 1;
    /* Ensure it stays on top */
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.form-control.error-border {
    border: 1px solid red !important;
}

.btnNext {
    background-color: var(--primary);
    border: none;
}
.btnNext:hover {
    background-color: #fff;
    color: black;
    border: solid 1px black;
}
