/* ===== GLOBAL ROOT VARIABLES ===== */
:root {
    /* Primary Colors - Based on Aurexium Brand */
    --primary-gold: #c6a13b;
    --primary-gold-light: #d4b15c;
    --primary-gold-dark: #a8842a;

    /* Secondary Colors */
    --secondary-navy: #0a2540;
    --secondary-navy-light: #1e3a5f;
    --secondary-navy-dark: #051a2b;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-gray: #f0f2f5;
    --medium-gray: #e4e7ec;
    --gray: #9aa6b2;
    --dark-gray: #475467;
    --charcoal: #1d2939;
    --black: #101828;

    /* Semantic Colors */
    --success: #067647;
    --warning: #fdb022;
    --error: #f04438;
    --info: #2e90fa;

    /* Typography */
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Nunito", sans-serif;

    /* Font Sizes - Desktop */
    --text-xs: 0.75rem; /* 12px */
    --text-sm: 0.875rem; /* 14px */
    --text-base: 1rem; /* 16px */
    --text-md: 1.125rem; /* 18px */
    --text-lg: 1.25rem; /* 20px */
    --text-xl: 1.5rem; /* 24px */
    --text-2xl: 2rem; /* 32px */
    --text-3xl: 2.5rem; /* 40px */
    --text-4xl: 3rem; /* 48px */
    --text-5xl: 3.5rem; /* 56px */

    /* Spacing */
    --space-1: 0.25rem; /* 4px */
    --space-2: 0.5rem; /* 8px */
    --space-3: 0.75rem; /* 12px */
    --space-4: 1rem; /* 16px */
    --space-5: 1.25rem; /* 20px */
    --space-6: 1.5rem; /* 24px */
    --space-8: 2rem; /* 32px */
    --space-10: 2.5rem; /* 40px */
    --space-12: 3rem; /* 48px */
    --space-16: 4rem; /* 64px */
    --space-20: 5rem; /* 80px */

    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 0.25rem; /* 4px */
    --radius-md: 0.5rem; /* 8px */
    --radius-lg: 1rem; /* 16px */
    --radius-xl: 1.5rem; /* 24px */
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0px 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-sm: 0px 1px 3px rgba(16, 24, 40, 0.1),
        0px 1px 2px rgba(16, 24, 40, 0.06);
    --shadow-md: 0px 4px 8px -2px rgba(16, 24, 40, 0.1),
        0px 2px 4px -2px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0px 12px 16px -4px rgba(16, 24, 40, 0.1),
        0px 4px 6px -2px rgba(16, 24, 40, 0.05);
    --shadow-xl: 0px 20px 24px -4px rgba(16, 24, 40, 0.1),
        0px 8px 8px -4px rgba(16, 24, 40, 0.04);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
}

/* Mobile Font Sizes */
@media (max-width: 768px) {
    :root {
        --text-2xl: 1.75rem; /* 28px */
        --text-3xl: 2rem; /* 32px */
        --text-4xl: 2.25rem; /* 36px */
        --text-5xl: 2.5rem; /* 40px */
    }
}

/* ===== CSS RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.5;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-navy);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: var(--text-5xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
}

h4 {
    font-size: var(--text-2xl);
    font-weight: 600;
}

h5 {
    font-size: var(--text-xl);
    font-weight: 600;
}

h6 {
    font-size: var(--text-lg);
    font-weight: 600;
}

/* Paragraphs */
p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-gold-dark);
    text-decoration: none;
}

a:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Lists */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Inline Elements */
span {
    display: inline-block;
}

strong,
b {
    font-weight: 700;
    color: var(--secondary-navy);
}

em,
i {
    font-style: italic;
}

small {
    font-size: var(--text-sm);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Form Elements */
input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

@media (min-width: 640px) {
    .container {
        padding-left: var(--space-6);
        padding-right: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }
}

/* ===== SECTION SPACING ===== */
.section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.section-sm {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.section-lg {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}

@media (max-width: 768px) {
    .section {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12);
    }

    .section-lg {
        padding-top: var(--space-16);
        padding-bottom: var(--space-16);
    }
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-1) var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: 1px solid transparent;
    gap: var(--space-2);
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

/* Button Variants */
.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background-color: var(--primary-gold-dark);
    border-color: var(--primary-gold-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-navy);
    color: var(--white);
    border-color: var(--secondary-navy);
}

.btn-secondary:hover {
    background-color: var(--secondary-navy-light);
    border-color: var(--secondary-navy-light);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--secondary-navy);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--off-white);
    border-color: var(--off-white);
}

/* Full Width Button */
.btn-block {
    width: 100%;
    display: flex;
}

/* Disabled Button */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== BADGE STYLES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    line-height: 1.5;
    border-radius: var(--radius-full);
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

.badge-primary {
    background-color: rgba(198, 161, 59, 0.1);
    color: var(--primary-gold);
}

.badge-secondary {
    background-color: rgba(10, 37, 64, 0.1);
    color: var(--secondary-navy);
}

.badge-success {
    background-color: rgba(6, 118, 71, 0.1);
    color: var(--success);
}

.badge-warning {
    background-color: rgba(253, 176, 34, 0.1);
    color: var(--warning);
}

/* ===== RESPONSIVE UTILITIES ===== */

/* Display */
.d-none {
    display: none;
}
.d-block {
    display: block;
}
.d-inline {
    display: inline;
}
.d-inline-block {
    display: inline-block;
}
.d-flex {
    display: flex;
}
.d-inline-flex {
    display: inline-flex;
}
.d-grid {
    display: grid;
}

@media (min-width: 768px) {
    .d-md-none {
        display: none;
    }
    .d-md-block {
        display: block;
    }
    .d-md-flex {
        display: flex;
    }
    .d-md-grid {
        display: grid;
    }
}

@media (min-width: 1024px) {
    .d-lg-none {
        display: none;
    }
    .d-lg-block {
        display: block;
    }
    .d-lg-flex {
        display: flex;
    }
    .d-lg-grid {
        display: grid;
    }
}

/* Flex Utilities */
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-nowrap {
    flex-wrap: nowrap;
}

.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}

.align-start {
    align-items: flex-start;
}
.align-end {
    align-items: flex-end;
}
.align-center {
    align-items: center;
}
.align-stretch {
    align-items: stretch;
}

/* Gap Utilities */
.gap-1 {
    gap: var(--space-1);
}
.gap-2 {
    gap: var(--space-2);
}
.gap-3 {
    gap: var(--space-3);
}
.gap-4 {
    gap: var(--space-4);
}
.gap-5 {
    gap: var(--space-5);
}
.gap-6 {
    gap: var(--space-6);
}
.gap-8 {
    gap: var(--space-8);
}

/* Text Utilities */
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

.text-gold {
    color: var(--primary-gold);
}
.text-navy {
    color: var(--secondary-navy);
}
.text-white {
    color: var(--white);
}
.text-gray {
    color: var(--dark-gray);
}
.text-dark {
    color: var(--charcoal);
}

/* Font Weight */
.fw-light {
    font-weight: 300;
}
.fw-normal {
    font-weight: 400;
}
.fw-medium {
    font-weight: 500;
}
.fw-semibold {
    font-weight: 600;
}
.fw-bold {
    font-weight: 700;
}
.fw-extrabold {
    font-weight: 800;
}

/* Background Utilities */
.bg-gold {
    background-color: var(--primary-gold);
}
.bg-navy {
    background-color: var(--secondary-navy);
}
.bg-white {
    background-color: var(--white);
}
.bg-light {
    background-color: var(--off-white);
}
.bg-gray {
    background-color: var(--light-gray);
}

/* Spacing Utilities */
.m-0 {
    margin: 0;
}
.mt-1 {
    margin-top: var(--space-1);
}
.mt-2 {
    margin-top: var(--space-2);
}
.mt-3 {
    margin-top: var(--space-3);
}
.mt-4 {
    margin-top: var(--space-4);
}
.mt-5 {
    margin-top: var(--space-5);
}
.mt-6 {
    margin-top: var(--space-6);
}
.mt-8 {
    margin-top: var(--space-8);
}
.mt-10 {
    margin-top: var(--space-10);
}
.mt-12 {
    margin-top: var(--space-12);
}

.mb-1 {
    margin-bottom: var(--space-1);
}
.mb-2 {
    margin-bottom: var(--space-2);
}
.mb-3 {
    margin-bottom: var(--space-3);
}
.mb-4 {
    margin-bottom: var(--space-4);
}
.mb-5 {
    margin-bottom: var(--space-5);
}
.mb-6 {
    margin-bottom: var(--space-6);
}
.mb-8 {
    margin-bottom: var(--space-8);
}
.mb-10 {
    margin-bottom: var(--space-10);
}
.mb-12 {
    margin-bottom: var(--space-12);
}
.mb-16 {
    margin-bottom: var(--space-16);
}

.p-0 {
    padding: 0;
}
.p-1 {
    padding: var(--space-1);
}
.p-2 {
    padding: var(--space-2);
}
.p-3 {
    padding: var(--space-3);
}
.p-4 {
    padding: var(--space-4);
}
.p-5 {
    padding: var(--space-5);
}
.p-6 {
    padding: var(--space-6);
}
.p-8 {
    padding: var(--space-8);
}

/* Border Radius */
.rounded-none {
    border-radius: var(--radius-none);
}
.rounded-sm {
    border-radius: var(--radius-sm);
}
.rounded-md {
    border-radius: var(--radius-md);
}
.rounded-lg {
    border-radius: var(--radius-lg);
}
.rounded-xl {
    border-radius: var(--radius-xl);
}
.rounded-full {
    border-radius: var(--radius-full);
}

/* ===== HEADER STYLES - Aurexium ===== */

/* Site Header Base */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: var(--space-5) 0; /* Increased padding */
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Header Wrapper - Better spacing */
.header-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

/* ===== LOGO STYLES ===== */
/* ===== LOGO STYLES - IMAGE VERSION ===== */

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 20px; /* Desktop padding */
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.logo-img {
    display: block;
    width: auto;
    max-height: 50px; /* Desktop height */
    transition: all 0.3s ease;
}

/* Hover Effect */
.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* ===== DESKTOP LARGE (1200px+) ===== */
@media (min-width: 1200px) {
    .logo-img {
        max-height: 55px; /* Bade desktop mein thoda bada */
    }

    .logo {
        padding-right: 30px;
    }
}

/* DESKTOP (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .logo-img {
        max-height: 50px; /* Default desktop */
    }

    .logo {
        padding-right: 25px;
    }
}

/* TABLET (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .logo-img {
        max-height: 45px; /* Tablet size */
    }

    .logo {
        padding-right: 20px;
    }
}

/* MOBILE LARGE (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .logo-img {
        max-height: 40px; /* Mobile large */
    }

    .logo {
        padding-right: 15px;
    }
}

/* MOBILE SMALL (375px - 575px) */
@media (min-width: 375px) and (max-width: 575px) {
    .logo-img {
        max-height: 35px; /* Mobile small */
    }

    .logo {
        padding-right: 10px;
    }
}

/* MOBILE EXTRA SMALL (up to 374px) */
@media (max-width: 374px) {
    .logo-img {
        max-height: 32px; /* Chhoti mobile */
    }

    .logo {
        padding-right: 8px;
    }
}

/* STICKY HEADER - Agar sticky header ho to */
.site-header.sticky .logo-img {
    max-height: 45px; /* Sticky mein thoda chhota */
}

/* ===== OPTIONAL: DARK LOGO VERSION ===== */
/* Agar dark background pe light logo aur light background pe dark logo chahiye */

/* Light logo (default - dark backgrounds ke liye) */
.logo-img-light {
    display: block;
}

.logo-img-dark {
    display: none;
}

/* Dark background ke liye */
.dark-bg .logo-img-light {
    display: block;
}

.dark-bg .logo-img-dark {
    display: none;
}

/* Light background ke liye */
.light-bg .logo-img-light {
    display: none;
}

.light-bg .logo-img-dark {
    display: block;
}

/* Mobile menu ke liye */
.mobile-menu-open .logo-img-light {
    display: none;
}

.mobile-menu-open .logo-img-dark {
    display: block;
}

/* ===== RETINA DISPLAY SUPPORT ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        /* Retina ke liye high-res image */
        content: url("{{ url('frontEnd/images/logo/aurexium-logo@2x.png') }}");
    }
}

/* ===== FALLBACK (agar image load na ho) ===== */
.logo-img {
    /* Fallback text */
    font-family: "Nunito", sans-serif;
    font-size: 0; /* Hide text */
}

.logo-img[alt] {
    font-size: 24px; /* Agar image na ho to text dikhe */
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
}

/* ===== ANIMATION ===== */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-img {
    animation: logoFadeIn 0.5s ease;
}

/* ===== DESKTOP NAVIGATION ===== */
.main-navigation {
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-8);
}

.nav-menu li a {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--white);
    padding: var(--space-2) 0;
    position: relative;
    transition: var(--transition-fast);
    white-space: nowrap;
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-shrink: 0;
    margin-left: var(--space-4);
}

/* Badge Styles - Fixed */
.header-actions .badge {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem !important; /* Better padding */
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.header-actions .badge i {
    margin-right: 0.5rem;
    font-size: var(--text-md);
    color: var(--primary-gold);
}

.header-actions .badge span {
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
}

.header-actions .badge:hover {
    background: rgba(198, 161, 59, 0.2);
    border-color: var(--primary-gold);
}

/* ===== FIXED HAMBURGER MENU STYLES ===== */
.mobile-menu-toggle {
    display: none; /* Hidden by default, shown in mobile */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: var(--space-4);
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--white); /* White color */
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

/* Show hamburger on mobile/tablet */
@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex !important; /* Force show */
    }

    .main-navigation,
    .header-actions {
        display: none !important; /* Hide desktop items */
    }

    .site-header {
        background: var(
            --secondary-navy
        ) !important; /* Navy background for mobile */
        padding: var(--space-3) var(--space-4);
    }

    .logo-text {
        color: var(--white) !important;
        font-size: var(--text-xl);
    }

    .mobile-menu-toggle .bar {
        background: var(--white) !important; /* White bars */
    }
}

/* ===== MOBILE NAVIGATION PANEL ===== */
.mobile-navigation {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--secondary-navy);
    padding: var(--space-8) var(--space-4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    z-index: 999;
}

.mobile-navigation.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Menu Links */
.mobile-menu li a {
    display: block;
    font-family: var(--font-secondary);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--white);
    padding: var(--space-3) 0;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu li a:hover,
.mobile-menu li.active a {
    color: var(--primary-gold);
    padding-left: var(--space-4);
    background: rgba(198, 161, 59, 0.1);
}

/* Mobile Contact Section */
.mobile-contact {
    padding-top: var(--space-8);
    margin-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-contact .phone-number {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.mobile-contact .phone-number i {
    color: var(--primary-gold);
    font-size: var(--text-lg);
}

.mobile-contact .phone-number span {
    color: var(--white);
    font-size: var(--text-base);
    font-weight: 600;
}

.mobile-contact .btn {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-md);
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s;
}

.mobile-contact .btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(198, 161, 59, 0.3);
}

/* ===== BODY OVERFLOW CONTROL ===== */
body.menu-open {
    overflow: hidden;
}

/* ===== RESPONSIVE PADDING FIXES ===== */

/* Tablet */
@media (max-width: 1023px) {
    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    .header-wrapper {
        gap: var(--space-2);
    }

    .logo-text {
        font-size: var(--text-xl);
    }

    .mobile-navigation {
        top: 72px;
        height: calc(100vh - 72px);
        padding: var(--space-6) var(--space-4);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .site-header {
        padding: var(--space-3) 0;
    }

    .logo-text {
        font-size: var(--text-lg);
    }

    .mobile-navigation {
        top: 66px;
        height: calc(100vh - 66px);
        padding: var(--space-6) var(--space-4);
    }

    .mobile-menu li a {
        font-size: var(--text-lg);
        padding: var(--space-3) 0;
    }

    .mobile-contact .phone-number {
        padding: var(--space-3);
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .logo-text {
        font-size: var(--text-md);
    }

    .mobile-menu li a {
        font-size: var(--text-base);
    }
}

/* ===== STICKY HEADER STYLES ===== */
.site-header.sticky {
    background: var(--white) !important;
    box-shadow: var(--shadow-md);
    padding: var(--space-3) 0;
}

.site-header.sticky .logo-text {
    color: var(--secondary-navy) !important;
}

.site-header.sticky .nav-menu li a {
    color: var(--secondary-navy) !important;
}

.site-header.sticky .nav-menu li a:hover {
    color: var(--primary-gold) !important;
}

.site-header.sticky .nav-menu li.active a {
    color: var(--primary-gold) !important;
}

.site-header.sticky .badge {
    background: rgba(10, 37, 64, 0.05);
    border-color: rgba(10, 37, 64, 0.1);
}

.site-header.sticky .badge span,
.site-header.sticky .badge i {
    color: var(--secondary-navy) !important;
}

.site-header.sticky .mobile-menu-toggle .bar {
    background: var(--secondary-navy) !important;
}

/* ===== DESKTOP NAVIGATION (1024px+) ===== */
.main-navigation {
    margin-left: auto;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-8);
}

.nav-menu li {
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-menu li a {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--white);
    padding: var(--space-2) 0;
    position: relative;
    transition: var(--transition-fast);
    display: inline-block;
}

/* Hover Effect - Gold Underline */
.nav-menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Active Menu Item */
.nav-menu li.active a {
    color: var(--primary-gold);
    font-weight: 600;
}

.nav-menu li.active a::after {
    width: 100%;
}

/* ===== STICKY HEADER STYLES ===== */
.site-header.sticky {
    background: var(--white) !important;
    box-shadow: var(--shadow-md);
    padding: var(--space-3) 0;
}

.site-header.sticky .logo-text {
    color: var(--secondary-navy) !important;
}

.site-header.sticky .nav-menu li a {
    color: var(--secondary-navy) !important;
}

/* Hover underline in sticky state - GOLD color */
.site-header.sticky .nav-menu li a::after {
    background: var(--primary-gold) !important; /* Gold color */
}

.site-header.sticky .nav-menu li a:hover {
    color: var(--primary-gold) !important;
}

.site-header.sticky .nav-menu li a:hover::after {
    width: 100%;
}

.site-header.sticky .nav-menu li.active a {
    color: var(--primary-gold) !important;
}

.site-header.sticky .nav-menu li.active a::after {
    width: 100%;
    background: var(--primary-gold) !important;
}

/* ===== MOBILE/Tablet - Hide desktop navigation ===== */
@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex !important;
    }

    .main-navigation,
    .header-actions {
        display: none !important;
    }

    .site-header {
        background: transparent !important;
        padding: var(--space-3) var(--space-4);
    }

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

    .mobile-menu-toggle .bar {
        background: var(--white) !important;
    }

    /* Mobile menu underline effect - optional */
    .mobile-menu li a {
        position: relative;
        display: inline-block;
    }

    .mobile-menu li a::after {
        content: "";
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-gold);
        transition: width 0.3s ease;
    }

    .mobile-menu li a:hover::after,
    .mobile-menu li.active a::after {
        width: 30px;
    }
}
/* heading css start  */

/* ===== HERO SECTION - Aurexium ===== */

/* ===== FLOATING CONTACT BUTTON ===== */
.floating-contact-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

/* Desktop */
@media (min-width: 769px) {
    .floating-contact-btn {
        right: 30px;
        left: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .floating-contact-btn {
        left: 20px;
        right: auto;
    }
}

.btn-floating-contact {
    background: linear-gradient(145deg, #c6a13b, #a8842a);
    border: none;
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(198, 161, 59, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(198, 161, 59, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(198, 161, 59, 0.5);
    }
}

.btn-floating-contact:hover {
    transform: scale(1.1);
    background: linear-gradient(145deg, #0a2540, #1a3349);
    border-color: #c6a13b;
    animation: none;
}

.btn-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
}

.btn-floating-contact i {
    font-size: 12px;
    color: white;
    margin-bottom: 5px;
}

.btn-text {
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    line-height: 1.2;
}

/* ===== MODAL FORM ===== */
.contact-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form-modal.active {
    display: block;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #0a2540, #1a3349);
    color: white;
    padding: 20px 25px;
    border-radius: 24px 24px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #c6a13b;
}

.modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #c6a13b;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px 25px;
}

/* Quick Contact Form */
.quick-contact-form .form-group {
    margin-bottom: 20px;
}

.quick-contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e4e7ec;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fc;
}

.quick-contact-form .form-control:focus {
    border-color: #c6a13b;
    outline: none;
    box-shadow: 0 0 0 4px rgba(198, 161, 59, 0.1);
    background: white;
}

.quick-contact-form .form-control::placeholder {
    color: #9aa6b2;
    font-style: italic;
}

.quick-contact-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C6A13B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(145deg, #c6a13b, #a8842a);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(198, 161, 59, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(145deg, #0a2540, #1a3349);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 37, 64, 0.3);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .floating-contact-btn {
        right: 20px;
    }

    .btn-icon-wrapper {
        padding: 12px 15px;
    }

    .btn-floating-contact i {
        font-size: 24px;
    }

    .btn-text {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .floating-contact-btn {
        top: auto;
        bottom: 30px;
        right: 20px;
        transform: none;
    }

    .btn-icon-wrapper {
        flex-direction: row;
        padding: 12px 20px;
    }

    .btn-floating-contact i {
        margin-bottom: 0;
        margin-right: 8px;
        font-size: 20px;
    }

    .btn-text {
        writing-mode: horizontal-tb;
        font-size: 14px;
    }

    .modal-container {
        width: 95%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .floating-contact-btn {
        bottom: 20px;
        right: 15px;
    }

    .btn-icon-wrapper {
        padding: 10px 18px;
    }

    .modal-header h3 {
        font-size: 18px;
    }

    .modal-body {
        padding: 20px 15px;
    }

    .quick-contact-form .form-control {
        padding: 12px 15px;
    }
}
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0; /* Padding 0 karo - slider full height */
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    align-items: center;
    overflow: hidden;
}

/* ===== BACKGROUND IMAGE ===== */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    font-family: "object-fit: cover;";
}

/* ===== DARK OVERLAY (39% Black - Exact aapki tarah) ===== */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 50, 50, 0.39); /* Exact aapki value */
    z-index: 2;
}

/* ===== GRADIENT OVERLAY (Navy Blue Tint) ===== */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        rgba(10, 37, 64, 0.85) 0%,
        rgba(5, 26, 43, 0.7) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 3;
    mix-blend-mode: multiply;
}

/* ===== CONTENT CONTAINER ===== */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Wrapper */
.hero-wrapper {
    display: flex;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    padding: 120px 0 80px;
    position: relative;
    z-index: 10;
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 11;
}

/* ===== HERO BADGE ===== */
.hero-badge {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e7ebef;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    border: 1px solid #e7ebef;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeInUp 0.8s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== HERO TITLE ===== */
.hero-title {
    font-family: "Nunito", sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.1s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .text-gold {
    color: #c6a13b;
    position: relative;
    display: inline-block;
}

/* Underline effect for gold text */
.hero-title .text-gold::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    border-radius: 30px;
    z-index: -1;
}

/* ===== HERO DESCRIPTION ===== */
.hero-description {
    font-family: "Roboto", sans-serif;
    font-size: 14px; /* text-xs = 14px */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

/* ===== HERO BUTTONS ===== */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Gold Button */
.btn-gold {
    background: #c6a13b;
    color: #ffffff;
    font-weight: 700;
    padding: 8px 22px; /* space-2 = 8px, space-6 = 24px */
    border-radius: 4px;
    border: 2px solid #c6a13b;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(198, 161, 59, 0.3);
    backdrop-filter: blur(5px);
}

.btn-gold:hover {
    background: #a8842a;
    border-color: #a8842a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(198, 161, 59, 0.5);
}

/* Outline Light Button */
.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-decoration: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #0a2647;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Icons in buttons */
.btn-gold i,
.btn-outline-light i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.btn-gold:hover i {
    transform: translateX(5px);
}

.btn-outline-light:hover i {
    transform: scale(1.1);
}

/* ===== SLIDER NAVIGATION ARROWS ===== */

.slider-arrows {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: #c6a13b;
    border-color: #c6a13b;
    color: #ffffff;
    transform: scale(1.1);
}

/* ===== SLIDER DOTS ===== */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #c6a13b;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(198, 161, 59, 0.5);
}

.slider-dots .dot:hover {
    background: rgba(198, 161, 59, 0.7);
}

/* ===== BOTTOM FADE ===== */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #ffffff, transparent);
    z-index: 20;
    pointer-events: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 72px;
    }

    .hero-description {
        font-size: 18px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-content {
        max-width: 700px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .hero-section {
        min-height: 90vh;
    }

    .hero-slide,
    .hero-slider {
        height: 90vh;
        min-height: 90vh;
    }

    .hero-wrapper {
        min-height: 90vh;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 550px;
    }

    .hero-badge {
        font-size: 12px;
        letter-spacing: 2px;
        backdrop-filter: blur(3px);
    }

    .hero-bg img {
        object-position: 70% center;
    }

    .slider-arrows {
        bottom: 30px;
        right: 30px;
    }

    .slider-dots {
        bottom: 30px;
        left: 30px;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .hero-section {
        min-height: 85vh;
    }

    .hero-slide,
    .hero-slider {
        height: 85vh;
        min-height: 85vh;
    }

    .hero-wrapper {
        min-height: 85vh;
        padding: 120px 0 50px;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 15px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .btn-gold,
    .btn-outline-light {
        padding: 10px 24px;
        font-size: 14px;
        backdrop-filter: blur(3px);
    }

    .hero-bottom-fade {
        height: 100px;
    }

    .hero-bg img {
        object-position: 75% center;
    }

    .slider-arrows {
        bottom: 20px;
        right: 20px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-dots {
        bottom: 20px;
        left: 20px;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* Mobile Small (375px - 575px) */
@media (max-width: 575px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-slide,
    .hero-slider {
        height: 80vh;
        min-height: 80vh;
    }

    /* ===== FIX HERO BUTTONS MOBILE WIDTH ISSUE ===== */

    .hero-buttons {
        display: flex;
        gap: 15px;
    }

    @media (max-width: 767px) {
        .hero-buttons {
            display: inline-flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            align-items: center;
            justify-content: flex-start;
            width: auto !important;
        }

        .hero-buttons a.btn {
            width: auto !important;
            display: inline-flex !important;
            flex: 0 0 auto !important;
            white-space: nowrap;
        }
    }

    .hero-wrapper {
        min-height: 80vh;
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 10px;
        letter-spacing: 1.5px;
        padding: 6px 12px;
        backdrop-filter: blur(2px);
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column-reverse; /* Book a Free Consult pehle */
        width: 100%;
        gap: 12px;
    }

    .btn-gold,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .hero-bottom-fade {
        height: 80px;
    }

    .hero-bg img {
        object-position: 80% center;
    }

    .slider-arrows {
        display: none; /* Mobile mein arrows chhupa do */
    }

    .slider-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 4px 10px;
    }

    .hero-description {
        font-size: 12px;
    }
}

/* ===== PARALLAX EFFECT (Desktop only) ===== */
@media (min-width: 1024px) {
    .hero-section.parallax .hero-bg img {
        transform: scale(1.1);
        transition: transform 0.1s ease-out;
    }
}

/* ===== MOBILE BACKGROUND OPTIMIZATION ===== */
@media (max-width: 767px) {
    .hero-bg img {
        content: url("{{ url('frontEnd/images/hero-bg-mobile.jpg') }}");
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .btn-gold:hover,
    .btn-outline-light:hover,
    .slider-prev:hover,
    .slider-next:hover,
    .slider-dots .dot:hover {
        transform: none;
        background: inherit;
    }

    .btn-gold:active {
        background: #a8842a;
        transform: scale(0.98);
    }

    .btn-outline-light:active {
        background: #ffffff;
        color: #0a2647;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero-section {
        min-height: auto;
        background: #0a2647;
    }

    .hero-bg,
    .hero-overlay,
    .hero-gradient-overlay,
    .slider-arrows,
    .slider-dots,
    .hero-bottom-fade {
        display: none;
    }

    .hero-content {
        color: #000;
    }
}
/* ===== HERO SECTION - Aurexium ===== */

/* ===== ABOUT SECTION - Aurexium ===== */

.about-section {
    position: relative;
    padding: var(--space-20) 0;
    background: var(--white);
    overflow: hidden;
}

/* Optional: Subtle background pattern */
.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(198, 161, 59, 0.02) 0%,
        rgba(10, 37, 64, 0.02) 100%
    );
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
}

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

/* ===== SECTION BADGE ===== */
.section-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    background: rgba(198, 161, 59, 0.08);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    border: 1px solid rgba(198, 161, 59, 0.2);
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary-navy);
    margin-bottom: var(--space-6);
    letter-spacing: -0.01em;
}

.section-title .text-gold {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

/* Subtle underline effect */
.section-title .text-gold::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    z-index: -1;
}

/* ===== ABOUT DESCRIPTION ===== */
.about-description {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: var(--space-4);
}

.about-description:last-of-type {
    margin-bottom: var(--space-8);
}

/* ===== FEATURE GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-4);
}

/* Feature Card */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--off-white);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--white);
    border-color: rgba(198, 161, 59, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

/* Feature Icon */
.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 161, 59, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary-gold);
    font-size: 24px;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--primary-gold);
    color: var(--white);
    transform: rotateY(180deg);
}

/* Feature Content */
.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-family: var(--font-secondary);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--secondary-navy);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.feature-content p {
    font-size: var(--text-sm);
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== ABOUT IMAGE ===== */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        145deg,
        rgba(198, 161, 59, 0.1) 0%,
        rgba(10, 37, 64, 0.2) 100%
    );
    pointer-events: none;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-left: 4px solid var(--primary-gold);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.experience-badge .text {
    font-size: var(--text-xs);
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .section-title {
        font-size: 48px;
    }

    .about-description {
        font-size: 18px;
    }

    .feature-card {
        padding: var(--space-6);
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .section-title {
        font-size: 38px;
    }

    .about-description {
        font-size: var(--text-md);
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .about-section {
        padding: var(--space-16) 0;
    }

    .section-title {
        font-size: 36px;
    }

    .about-image-wrapper {
        margin-top: var(--space-8);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: var(--space-3) var(--space-5);
    }

    .experience-badge .years {
        font-size: 28px;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .about-section {
        padding: var(--space-12) 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-badge {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .about-description {
        font-size: var(--text-base);
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .feature-card {
        padding: var(--space-4);
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .feature-content h4 {
        font-size: var(--text-md);
    }

    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: var(--space-2) var(--space-4);
    }

    .experience-badge .years {
        font-size: 24px;
    }

    .experience-badge .text {
        font-size: 11px;
    }
}

/* Mobile Small (375px - 575px) */
@media (max-width: 575px) {
    .about-section {
        padding: var(--space-10) 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .about-description {
        font-size: var(--text-sm);
    }

    .feature-card {
        padding: var(--space-3);
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .experience-badge {
        position: static;
        margin-top: var(--space-4);
        display: inline-block;
        width: auto;
    }
}

/* ===== ANIMATIONS ===== */
.about-section .section-badge,
.about-section .section-title,
.about-section .about-description,
.about-section .feature-card,
.about-section .about-image-wrapper {
    animation: fadeInUp 0.8s ease both;
}

.about-section .section-badge {
    animation-delay: 0.1s;
}
.about-section .section-title {
    animation-delay: 0.2s;
}
.about-section .about-description:nth-of-type(1) {
    animation-delay: 0.3s;
}
.about-section .about-description:nth-of-type(2) {
    animation-delay: 0.4s;
}
.about-section .feature-card:nth-child(1) {
    animation-delay: 0.5s;
}
.about-section .feature-card:nth-child(2) {
    animation-delay: 0.6s;
}
.about-section .about-image-wrapper {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ALTERNATIVE STYLE - With Background Pattern ===== */

.about-section.pattern-style {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
}

.about-section.pattern-style::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle at 10px 10px,
        rgba(198, 161, 59, 0.03) 2px,
        transparent 2px
    );
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* ===== MOBILE TOUCH OPTIMIZATIONS ===== */

@media (max-width: 767px) {
    /* Better touch targets */
    .feature-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(198, 161, 59, 0.1);
    }

    .feature-card:active {
        background: rgba(198, 161, 59, 0.05);
        transform: scale(0.98);
    }

    /* Remove hover effects on mobile */
    .feature-card:hover {
        transform: none;
        box-shadow: none;
    }

    .feature-card:hover .feature-icon {
        background: rgba(198, 161, 59, 0.1);
        color: var(--primary-gold);
        transform: none;
    }

    .about-image-wrapper:hover .about-image {
        transform: none;
    }

    /* Faster animations on mobile */
    .about-section .section-badge,
    .about-section .section-title,
    .about-section .about-description,
    .about-section .feature-card,
    .about-section .about-image-wrapper {
        animation-duration: 0.5s;
    }
}
/* ===== ABOUT SECTION - Aurexium ===== */

/* ===== ABOUT SECTION - Aurexium ===== */
/* ===== CONTACT US STYLES ===== */

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Section Header - Same as services */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c6a13b;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0a2647;
    margin-bottom: 20px;
    font-family: "Nunito", sans-serif;
}

.text-gold {
    color: #c6a13b;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: #c6a13b;
    margin: 0 auto;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 161, 59, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #c6a13b;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: rgba(198, 161, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 30px;
    color: #c6a13b;
    transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon {
    background: #c6a13b;
}

.contact-info-card:hover .info-icon i {
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 10px;
    font-family: "Nunito", sans-serif;
}

.contact-info-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.contact-info-card a {
    display: block;
    color: #c6a13b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #0a2647;
}

.contact-info-card .address {
    color: #0a2647;
    font-weight: 500;
    line-height: 1.6;
}

.contact-info-card .hours {
    color: #0a2647;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info-card .hours-note {
    font-size: 13px;
    color: #999;
}

/* Contact Form Grid */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
    margin-bottom: 60px;
}

/* Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 161, 59, 0.1);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 25px;
    font-family: "Nunito", sans-serif;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(198, 161, 59, 0.2);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #c6a13b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(198, 161, 59, 0.1);
    background: #ffffff;
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label a {
    color: #c6a13b;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 16px;
    justify-content: center;
}

.submit-btn i {
    font-size: 16px;
}

/* Map Card */
.contact-map-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 161, 59, 0.1);
}

.map-container {
    height: 200px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Quick Contact */
.quick-contact {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.quick-contact h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 20px;
    font-family: "Nunito", sans-serif;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.quick-contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(198, 161, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c6a13b;
    font-size: 18px;
}

.quick-contact-item span {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 3px;
}

.quick-contact-item a {
    color: #0a2647;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.quick-contact-item a:hover {
    color: #c6a13b;
}

/* Social Links */
.contact-social {
    padding: 25px;
}

.contact-social h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 20px;
    font-family: "Nunito", sans-serif;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(198, 161, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c6a13b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c6a13b;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===== STATIC CAPTCHA UI ===== */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f0f0;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d4d4d4;
}

.captcha-field {
    width: 300px !important;
    text-align: center;
    font-weight: 700;
    border: 2px solid #c6a13b !important;
    background: #ffffff !important;
    padding: 10px !important;
    margin: 0 !important;
}

.captcha-display {
    flex: 1;
    background: #0a2647;
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
}

.captcha-num {
    font-size: 22px;
    font-weight: 800;
    color: #c6a13b;
    margin: 0 2px;
    display: inline-block;
    min-width: 25px;
}

.captcha-op {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 2px;
}

.captcha-q {
    font-size: 22px;
    font-weight: 800;
    color: #c6a13b;
    background: rgba(255, 255, 255, 0.15);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 5px;
}
/* ===== REFRESH BUTTON - ENHANCED VERSION ===== */
.captcha-reload {
    width: 48px;
    height: 48px;
    background: linear-gradient(
        145deg,
        #c6a13b,
        #b38f2f
    ); /* Gradient for depth */
    border: none;
    border-radius: 50%; /* Circle shape - more modern */
    color: white;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(198, 161, 59, 0.3);
    position: relative;
    overflow: hidden;
}

/* Hover Effect - Multiple transformations */
.captcha-reload:hover {
    background: linear-gradient(
        145deg,
        #0a2647,
        #123456
    ); /* Dark blue gradient */
    box-shadow: 0 8px 20px rgba(10, 38, 71, 0.4);
}

/* Icon animation on hover */
.captcha-reload:hover i {
    transform: rotate(360deg) scale(1.1);
    transition: transform 0.5s ease;
}

/* Click effect */
.captcha-reload:active {
    transform: scale(0.9);
    box-shadow: 0 2px 8px rgba(198, 161, 59, 0.2);
}

/* Shine effect on hover */
.captcha-reload::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.captcha-reload:hover::before {
    left: 100%;
}

/* Focus state for accessibility */
.captcha-reload:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(198, 161, 59, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .captcha-reload {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .captcha-reload {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
}

.captcha-hint {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    margin-left: 5px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 576px) {
    .captcha-row {
        flex-wrap: wrap;
    }

    .captcha-field {
        width: 100% !important;
    }

    .captcha-display {
        width: 800%;
    }
}
/* CTA Section */
.contact-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #0a2647 0%, #1a3655 100%);
    border-radius: 12px;
    color: #ffffff;
}

.contact-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Nunito", sans-serif;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-cta a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.contact-cta a:hover {
    color: #c6a13b;
}

.contact-cta .btn-outline-gold {
    border-color: #ffffff;
    color: #ffffff;
}

.contact-cta .btn-outline-gold:hover {
    background: #ffffff;
    color: #0a2647;
    border-color: #ffffff;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-card {
        order: -1;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .contact-form-card {
        padding: 25px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-cta {
        padding: 30px 20px;
    }

    .contact-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 25px;
    }

    .quick-contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}
/* ===== ABOUT SECTION - Aurexium ===== */

/* ===== SERVICES SECTION - Aurexium ===== */

.services-section {
    position: relative;
    padding: var(--space-20) 0;
    background: var(--off-white);
    overflow: hidden;
}

/* Subtle background pattern */
.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle at 20px 20px,
        rgba(198, 161, 59, 0.02) 2px,
        transparent 2px
    );
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

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

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    background: rgba(198, 161, 59, 0.08);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    border: 1px solid rgba(198, 161, 59, 0.2);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary-navy);
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
}

.section-title .text-gold {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.section-title .text-gold::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    z-index: -1;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-md);
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: var(--space-6);
}

/* Gold Divider */
.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: var(--radius-full);
    margin: var(--space-4) auto 0;
    position: relative;
}

.gold-divider::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.6;
}

/* ===== SERVICES GRID ===== */
/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Service Card */
.service-card {
    position: relative;
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 161, 59, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #0a2647 0%, #1a3655 100%);
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
    opacity: 1;
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 80%
    );
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.service-card:hover .card-shine {
    opacity: 0.1;
    transform: scale(1);
}

/* ===== SERVICE IMAGE - FIXED (Hover par bhi image dikhegi) ===== */
.service-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Background only - light gold */
    background: rgba(198, 161, 59, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Image inside - Normal state */
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* ===== HOVER EFFECT - Image wahi rahegi, sirf background change ===== */
.service-card:hover .service-image {
    background: #c6a13b; /* Gold background */
    transform: scale(1.05); /* Thoda zoom */
    box-shadow: 0 5px 15px rgba(198, 161, 59, 0.3);
}

/* IMPORTANT - Image par koi filter ya color change nahi */
.service-card:hover .service-image img {
    /* filter: brightness(0) invert(1);  -- YEH LINE HATAYI */
    transform: scale(0.95); /* Sirf thoda zoom out for effect */
    /* Image apne original color mein rahegi */
}

/* Alternative - Border effect chahiye to */
.service-card:hover .service-image {
    background: transparent;
    transform: scale(1.05);
}

/* Title styling */
.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Description styling */
.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Hover effect on text */
.service-card:hover h3,
.service-card:hover p {
    color: #ffffff;
}

/* Service Title */
.service-card h3 {
    font-family: var(--font-secondary);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--secondary-navy);
    margin-bottom: var(--space-3);
    transition: var(--transition-base);
    position: relative;
    z-index: 2;
}

.service-card:hover h3 {
    color: var(--white);
}

/* Service Description */
.service-card p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 0;
    transition: var(--transition-base);
    position: relative;
    z-index: 2;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== VIEW ALL BUTTON ===== */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--primary-gold);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 700;
    padding: var(--space-4) var(--space-10);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    border: 2px solid var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(198, 161, 59, 0.2);
}

.btn-view-all i {
    font-size: var(--text-md);
    transition: var(--transition-base);
}

.btn-view-all:hover {
    background: var(--primary-gold-dark);
    border-color: var(--primary-gold-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(198, 161, 59, 0.3);
}

.btn-view-all:hover i {
    transform: translateX(8px);
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .section-title {
        font-size: 48px;
    }

    .service-card {
        padding: var(--space-10) var(--space-6);
    }

    .service-icon {
        width: 90px;
        height: 90px;
        font-size: 40px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .services-grid {
        gap: var(--space-5);
    }

    .service-card h3 {
        font-size: var(--text-lg);
    }

    .service-card p {
        font-size: var(--text-sm);
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .services-section {
        padding: var(--space-16) 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: var(--text-md);
    }

    .service-card {
        padding: var(--space-8) var(--space-5);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .btn-view-all {
        font-size: var(--text-md);
        padding: var(--space-2) var(--space-6);
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .services-section {
        padding: var(--space-12) 0;
    }

    .section-header {
        margin-bottom: var(--space-12);
    }

    .section-title {
        font-size: 32px;
    }

    .section-badge {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-subtitle {
        font-size: var(--text-base);
        padding: 0 var(--space-4);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card {
        padding: var(--space-6) var(--space-5);
    }

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

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: var(--space-4);
    }

    .btn-view-all {
        width: 100%;
        justify-content: center;
        font-size: var(--text-base);
        padding: var(--space-3) var(--space-6);
    }
}

/* Mobile Small (375px - 575px) */
@media (max-width: 575px) {
    .services-section {
        padding: var(--space-10) 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-subtitle {
        font-size: var(--text-sm);
    }

    .service-card {
        padding: var(--space-5);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .service-card h3 {
        font-size: var(--text-md);
    }

    .service-card p {
        font-size: var(--text-sm);
    }

    .gold-divider {
        width: 60px;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover {
        transform: none;
    }

    .service-card:hover::before {
        height: 0;
        opacity: 0;
    }

    .service-card:hover .service-icon {
        background: rgba(198, 161, 59, 0.08);
        color: var(--primary-gold);
        transform: none;
    }

    .service-card:hover h3 {
        color: var(--secondary-navy);
    }

    .service-card:hover p {
        color: var(--dark-gray);
    }

    .service-card:active {
        background: rgba(198, 161, 59, 0.02);
        transform: scale(0.98);
    }

    .btn-view-all:hover {
        transform: none;
    }
}

/* ===== ANIMATIONS ===== */
.services-section .section-badge,
.services-section .section-title,
.services-section .section-subtitle,
.services-section .gold-divider,
.services-section .service-card,
.services-section .btn-view-all {
    animation: fadeInUp 0.8s ease both;
}

.services-section .section-badge {
    animation-delay: 0.1s;
}
.services-section .section-title {
    animation-delay: 0.2s;
}
.services-section .section-subtitle {
    animation-delay: 0.3s;
}
.services-section .gold-divider {
    animation-delay: 0.4s;
}
.services-section .service-card:nth-child(1) {
    animation-delay: 0.5s;
}
.services-section .service-card:nth-child(2) {
    animation-delay: 0.6s;
}
.services-section .service-card:nth-child(3) {
    animation-delay: 0.7s;
}
.services-section .service-card:nth-child(4) {
    animation-delay: 0.8s;
}
.services-section .btn-view-all {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== ALTERNATIVE HOVER STYLE - Border Animation ===== */

.service-card.border-style {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, var(--primary-gold), var(--secondary-navy))
            border-box;
    background-size: 200% 200%;
    transition: all 0.4s ease;
}

.service-card.border-style:hover {
    background-position: 100% 0;
    transform: translateY(-5px);
}

/* ===== ALTERNATIVE HOVER STYLE - Icon Scale ===== */

.service-card.scale-style:hover .service-icon {
    animation: pulse 1s ease infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
/* ===== SERVICES SECTION - Aurexium ===== */

/* ===== ADVANTAGES SECTION - AUREXIUM ===== */

.advantages-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    overflow: hidden;
}

/* Background Pattern */
.advantages-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(198, 161, 59, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 1;
    animation: float 20s infinite ease-in-out;
}

.advantages-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(10, 37, 64, 0.02) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 1;
    animation: floatReverse 25s infinite ease-in-out;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 20px);
    }
}

@keyframes floatReverse {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -20px);
    }
}

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

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c6a13b;
    background: rgba(198, 161, 59, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    border: 1px solid rgba(198, 161, 59, 0.2);
    animation: fadeInDown 0.8s ease;
}

.section-title {
    font-family: "Nunito", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #0a2540;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.section-title .text-gold {
    color: #c6a13b;
    position: relative;
    display: inline-block;
}

.section-title .text-gold::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 30px;
    z-index: -1;
}

.section-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: #c6a13b;
    border-radius: 30px;
    margin: 20px auto 0;
    position: relative;
    animation: fadeIn 1s ease 0.3s both;
}

.gold-divider::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #c6a13b;
    border-radius: 50%;
    opacity: 0.6;
}

/* ===== STATS ROW ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 161, 59, 0.1);
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(198, 161, 59, 0.2);
}

.stat-number {
    font-family: "Nunito", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #c6a13b;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0a2540;
    letter-spacing: 0.5px;
}

/* ===== ADVANTAGES GRID ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Advantage Card */
.advantage-card {
    position: relative;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 161, 59, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.advantage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(198, 161, 59, 0.2);
}

.advantage-card:hover::before {
    opacity: 1;
}

/* Advantage Icon */
.advantage-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 161, 59, 0.1);
    border-radius: 50%;
    font-size: 40px;
    color: #c6a13b;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    background: #ffffff;
    color: #c6a13b;
    transform: scale(1.1) rotateY(360deg);
}

/* Advantage Title */
.advantage-card h3 {
    font-family: "Nunito", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover h3 {
    color: #ffffff;
}

/* Advantage Description */
.advantage-card p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Hover Effect Overlay */
.advantage-hover {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.advantage-card:hover .advantage-hover {
    opacity: 1;
    transform: scale(1);
}

/* ===== CTA BANNER ===== */
.advantages-cta {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(198, 161, 59, 0.2);
}

.advantages-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(198, 161, 59, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.advantages-cta::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 6s infinite reverse;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.advantages-cta h3 {
    font-family: "Nunito", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.advantages-cta p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */

/* Desktop Large */
@media (min-width: 1200px) {
    .section-title {
        font-size: 48px;
    }

    .stat-number {
        font-size: 56px;
    }

    .advantages-cta h3 {
        font-size: 36px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 30px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .advantages-cta {
        padding: 40px;
    }

    .advantages-cta h3 {
        font-size: 28px;
    }

    .advantages-cta p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .advantages-section {
        padding: 60px 0;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding: 20px;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-badge {
        font-size: 12px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .advantage-card {
        padding: 30px 20px;
    }

    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .advantage-card h3 {
        font-size: 20px;
    }

    .advantage-card p {
        font-size: 14px;
    }

    .advantages-cta {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .advantages-cta h3 {
        font-size: 24px;
    }

    .advantages-cta p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .advantages-cta .btn-gold {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .section-title {
        font-size: 28px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 40px;
    }

    .advantages-cta h3 {
        font-size: 22px;
    }

    .advantages-cta .btn-gold {
        width: 100%;
        justify-content: center;
    }
}

/* ===== ADVANTAGES SECTION - AUREXIUM ===== */

/* ===== TEAM SECTION - AUREXIUM ===== */
/* Complete Team Section Styles - Optimized for 4 Cards */

/* ===== CENTERED PAGINATION ===== */
.pagination-wrapper {
    margin-top: 50px;
    padding: 20px 0;
    width: 100%;
    display: flex !important;
    justify-content: center !important;
}

.pagination {
    margin: 0 auto !important;
    padding: 0;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: center !important;
}

.page-item {
    list-style: none;
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0a2540;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Effect */
.page-item:not(.active) .page-link:hover {
    background: rgba(198, 161, 59, 0.05);
    border-color: #c6a13b;
    color: #c6a13b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 161, 59, 0.15);
}

/* Active Page */
.page-item.active .page-link {
    background: #c6a13b;
    border-color: #c6a13b;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(198, 161, 59, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .pagination {
        gap: 5px !important;
    }

    .page-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .page-link {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .pagination-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 375px) {
    .pagination {
        gap: 3px !important;
    }

    .page-link {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
}

.team-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    overflow: hidden;
}

/* Background Pattern */
.team-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(198, 161, 59, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 1;
    animation: float 20s infinite ease-in-out;
}

.team-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(10, 37, 64, 0.02) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 1;
    animation: floatReverse 25s infinite ease-in-out;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 20px);
    }
}

@keyframes floatReverse {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -20px);
    }
}

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

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
}

.section-badge {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c6a13b;
    background: rgba(198, 161, 59, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid rgba(198, 161, 59, 0.2);
}

.section-title {
    font-family: "Nunito", sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: #0a2540;
    margin-bottom: 12px;
}

.section-title .text-gold {
    color: #c6a13b;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 20px;
}

.gold-divider {
    width: 70px;
    height: 3px;
    background: #c6a13b;
    border-radius: 30px;
    margin: 15px auto 0;
    position: relative;
}

.gold-divider::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #c6a13b;
    border-radius: 50%;
    opacity: 0.6;
}

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

/* Team Card */
.team-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(198, 161, 59, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpCard 0.8s forwards;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.team-card:nth-child(1) {
    animation-delay: 0.1s;
}
.team-card:nth-child(2) {
    animation-delay: 0.2s;
}
.team-card:nth-child(3) {
    animation-delay: 0.3s;
}
.team-card:nth-child(4) {
    animation-delay: 0.4s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(198, 161, 59, 0.15);
    border-color: rgba(198, 161, 59, 0.3);
}

/* Member Image */
.member-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    height: 240px;
    width: 100%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

/* Social Overlay */
.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(10, 37, 64, 0.9),
        rgba(198, 161, 59, 0.3)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .social-overlay {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 12px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.team-card:hover .social-icons {
    transform: translateY(0);
}

/* Social Icons */
.social-icon {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a2540;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
    animation: popIn 0.5s forwards;
}

.social-icon:nth-child(1) {
    animation-delay: 0.2s;
}
.social-icon:nth-child(2) {
    animation-delay: 0.25s;
}
.social-icon:nth-child(3) {
    animation-delay: 0.3s;
}

.social-icon:hover {
    background: #c6a13b;
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
}

/* Member Info */
.member-info {
    padding: 20px 15px;
    text-align: center;
    background: #ffffff;
    position: relative;
}

.member-info h3 {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.team-card:hover .member-info h3 {
    color: #c6a13b;
}

.member-info .position {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #c6a13b;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.member-info .bio {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #475467;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===== TEAM CTA ===== */
.team-cta {
    position: relative;
    z-index: 10;
    padding: 30px 0 10px;
    text-align: center;
}

.team-cta p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #0a2540;
    font-weight: 500;
    margin-bottom: 15px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop Large (1200px and above) */
@media (min-width: 1200px) {
    .team-grid {
        gap: 30px;
    }

    .member-image {
        height: 260px;
    }

    .section-title {
        font-size: 42px;
    }

    .team-card {
        max-width: 280px;
    }
}

/* Desktop Medium (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .team-grid {
        gap: 20px;
    }

    .member-image {
        height: 220px;
    }

    .team-card {
        max-width: 240px;
    }

    .member-info h3 {
        font-size: 17px;
    }

    .member-info .position,
    .member-info .bio {
        font-size: 12px;
    }

    .member-info {
        padding: 15px 12px;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .member-image {
        height: 220px;
    }

    .team-card {
        max-width: 300px;
    }
}

/* Mobile (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .member-image {
        height: 180px;
    }

    .team-card {
        max-width: 260px;
    }

    .member-info h3 {
        font-size: 16px;
    }

    .member-info .bio {
        font-size: 12px;
    }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
    .team-section {
        padding: 50px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%; /* Full width kiya */
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px; /* Side padding */
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-badge {
        font-size: 11px;
        letter-spacing: 1.5px;
        padding: 5px 12px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .member-image {
        height: 280px;
    }

    member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Image properly fit */
        object-position: center; /* Center me rahe */
    }

    .team-card {
        max-width: 100%; /* Full width */
        width: 100%;
        margin: 0 auto;
    }
    .member-info h3 {
        font-size: 18px;
    }

    .member-info .bio {
        font-size: 13px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .member-image {
        height: 260px;
    }

    .member-info {
        padding: 15px 10px;
    }

    .member-info h3 {
        font-size: 16px;
    }
}

/* Small Mobile (up to 575px) - IMAGE HEIGHT BADHAI */
@media (max-width: 575px) {
    .team-section {
        padding: 50px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-badge {
        font-size: 11px;
        letter-spacing: 1.5px;
        padding: 5px 12px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* IMAGE HEIGHT BADHA DIYA - CUT NA HO */
    .member-image {
        height: 280px !important; /* Pehle 220px tha, ab 280px */
        width: 100%;
    }

    .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Image properly fit */
        object-position: center; /* Center me rahe */
    }

    .team-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .member-info h3 {
        font-size: 18px;
    }

    .member-info .bio {
        font-size: 13px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* Yahan bhi height badhai */
    .member-image {
        height: 260px !important; /* Pehle 200px tha, ab 260px */
    }

    .member-info {
        padding: 15px 10px;
    }

    .member-info h3 {
        font-size: 16px;
    }

    .team-card {
        max-width: 100%;
    }
}

/* Mobile Large (376px to 425px) */
@media (min-width: 376px) and (max-width: 425px) {
    .member-image {
        height: 270px !important; /* Pehle 210px tha, ab 270px */
    }
}

/* Mobile Medium (426px to 575px) */
@media (min-width: 426px) and (max-width: 575px) {
    .member-image {
        height: 300px !important; /* Thoda aur bada */
    }
}

/* ===== TEAM CARD - BASE STYLES UPDATE ===== */
.member-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    height: 240px; /* Desktop ke liye */
    width: 100%;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Thoda upar se crop ho to acha */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== TEAM SECTION - AUREXIUM ===== */

/* ===== BLOG SECTION - AUREXIUM ===== */

.blog-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf9f9 0%, #f8f9fc 100%);
    overflow: hidden;
}

/* Background Pattern */
.blog-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(198, 161, 59, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 1;
}

.blog-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(10, 37, 64, 0.02) 0%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 1;
}

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

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-badge {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c6a13b;
    background: rgba(198, 161, 59, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    border: 1px solid rgba(198, 161, 59, 0.2);
    animation: fadeInDown 0.8s ease;
}

.section-title {
    font-family: "Nunito", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #0a2540;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.section-title .text-gold {
    color: #c6a13b;
    position: relative;
    display: inline-block;
}

.section-title .text-gold::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 30px;
    z-index: -1;
}

.section-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: #c6a13b;
    border-radius: 30px;
    margin: 20px auto 0;
    position: relative;
    animation: fadeIn 1s ease 0.3s both;
}

.gold-divider::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #c6a13b;
    border-radius: 50%;
    opacity: 0.6;
}

/* ===== BLOG FILTERS ===== */
.blog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid rgba(198, 161, 59, 0.2);
    border-radius: 30px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #475467;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #c6a13b;
    color: #c6a13b;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #c6a13b;
    border-color: #c6a13b;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(198, 161, 59, 0.3);
}

/* ===== BLOG GRID ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* Featured Post - First post large */
.blog-card.featured {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: row;
}

.blog-card.featured .blog-image {
    width: 50%;
    height: auto;
}

.blog-card.featured .blog-content {
    width: 50%;
    padding: 30px;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(198, 161, 59, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpCard 0.8s forwards;
}

.blog-card:nth-child(1) {
    animation-delay: 0.1s;
}
.blog-card:nth-child(2) {
    animation-delay: 0.2s;
}
.blog-card:nth-child(3) {
    animation-delay: 0.3s;
}
.blog-card:nth-child(4) {
    animation-delay: 0.4s;
}
.blog-card:nth-child(5) {
    animation-delay: 0.5s;
}
.blog-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(198, 161, 59, 0.15);
    border-color: rgba(198, 161, 59, 0.3);
}

/* Blog Image */
.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-card.featured .blog-image {
    aspect-ratio: 1/1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

/* Blog Category Tag */
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c6a13b;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(198, 161, 59, 0.3);
    animation: slideInLeft 0.5s ease;
}

/* Blog Overlay */
.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(10, 37, 64, 0.8) 100%
    );
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 0.5;
}

/* Blog Content */
.blog-content {
    padding: 25px 20px;
}

.blog-card.featured .blog-content {
    padding: 30px;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #475467;
}

.blog-meta i {
    color: #c6a13b;
    margin-right: 5px;
    font-size: 12px;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
}

/* Blog Title */
.blog-title {
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card.featured .blog-title {
    font-size: 24px;
}

.blog-title a {
    color: #0a2540;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #c6a13b;
}

/* Blog Excerpt */
.blog-excerpt {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #475467;
    margin-bottom: 20px;
}

/* Blog Footer */
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(198, 161, 59, 0.1);
    padding-top: 15px;
}

/* Blog Author */
.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c6a13b;
}

.blog-author span {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0a2540;
}

/* Read More Link */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #c6a13b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #a8842a;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== VIEW ALL BUTTON ===== */

.btn-gold i {
    transition: transform 0.3s ease;
}

.btn-gold:hover i {
    transform: translateX(5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */

/* Desktop Large */
@media (min-width: 1200px) {
    .section-title {
        font-size: 48px;
    }

    .blog-card.featured .blog-title {
        font-size: 28px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card.featured {
        grid-column: span 2;
        flex-direction: column;
    }

    .blog-card.featured .blog-image,
    .blog-card.featured .blog-content {
        width: 100%;
    }

    .blog-card.featured .blog-image {
        aspect-ratio: 16/9;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .blog-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 25px;
    }

    .blog-card.featured {
        grid-column: span 1;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-badge {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .blog-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .blog-meta {
        font-size: 12px;
        gap: 10px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-card.featured .blog-title {
        font-size: 20px;
    }

    .blog-excerpt {
        font-size: 13px;
    }

    .blog-author img {
        width: 30px;
        height: 30px;
    }

    .blog-author span {
        font-size: 12px;
    }

    .btn-gold {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }

    .blog-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .read-more {
        align-self: flex-end;
    }
}

/* ===== BLOG details SECTION - AUREXIUM ===== */
.blog-details-section {
    padding: 60px 0;
    background: #947e43;
    font-family: "Roboto", sans-serif;
}

/* ===== BLOG DETAILS CARD ===== */
.blog-details-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.card-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.blog-details-card:hover .card-image img {
    transform: scale(1.03);
}

/* Card Body */
.card-body {
    padding: 30px;
}

/* Meta Info */
.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
}

.meta-info span {
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.meta-info i {
    color: #c6a13b;
    font-size: 14px;
}
/* ===== CARD TITLE - FIXED ===== */
.card-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a2647;
    margin: 0 0 20px 0; /* Fixed margin */
    line-height: 1.3;
    font-family: "Nunito", sans-serif;
    word-wrap: break-word; /* Long titles ke liye */
}

/* ===== CARD CONTENT - FIXED ===== */
.card-content {
    margin-bottom: 25px;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* LEAD paragraph - IMPORTANT FIX */
.card-content p.lead {
    font-size: 16px !important; /* Override kar diya */
    font-weight: 500;
    color: #0a2647;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c6a13b;
    margin-bottom: 25px;
}

/* Make sure nested content is styled properly */
.card-content p.lead * {
    font-size: 16px;
}

.card-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0a2647;
    margin: 30px 0 15px;
    font-family: "Nunito", sans-serif;
}

/* ===== ADD THESE STYLES FOR BETTER CONTENT ===== */
.card-content ul,
.card-content ol {
    margin: 15px 0 20px;
    padding-left: 25px;
}

.card-content li {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

.card-content strong {
    color: #0a2647;
    font-weight: 600;
}

.card-content blockquote {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c6a13b;
    margin: 20px 0;
    font-style: italic;
}

.card-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* ===== META INFO FIX ===== */
.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.meta-info span {
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Gap increase kiya */
}

.meta-info i {
    color: #c6a13b;
    font-size: 14px;
    order: -1; /* Icon ko pehle dikhao */
}

/* Category, Date, Author styling */
.meta-info .category i,
.meta-info .date i,
.meta-info .author i {
    margin-right: 5px;
}

/* ===== SIDEBAR CARDS ===== */
.sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Card Header */
.card-header {
    font-size: 18px;
    font-weight: 700;
    color: #0a2647;
    padding: 18px 20px;
    margin: 0;
    border-bottom: 2px solid #c6a13b;
    font-family: "Nunito", sans-serif;
    background: #ffffff;
}

/* Categories List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #f0f0f0;
}

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

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.category-list a:hover {
    background: #f8f9fa;
    color: #c6a13b;
    padding-left: 25px;
}

.category-list span {
    color: #999;
    font-size: 13px;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 30px;
}

/* Recent Posts */
.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item .post-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-item .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .post-image img {
    transform: scale(1.1);
}

.recent-post-item .post-info {
    flex: 1;
}

.recent-post-item .post-info h4 {
    font-size: 15px;
    margin: 0 0 8px;
    font-weight: 600;
    line-height: 1.4;
}

.recent-post-item .post-info h4 a {
    color: #0a2647;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-item .post-info h4 a:hover {
    color: #c6a13b;
}

.recent-post-item .post-date {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-post-item .post-date i {
    color: #c6a13b;
    font-size: 11px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .blog-details-section {
        padding: 40px 0;
    }

    .card-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .card-body {
        padding: 20px;
    }

    .card-title {
        font-size: 24px;
    }

    .meta-info {
        gap: 15px;
        font-size: 13px;
    }

    .card-content h2 {
        font-size: 20px;
    }

    .info-box {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .blog-details-section {
        padding: 30px 0;
    }

    .card-title {
        font-size: 22px;
    }

    .meta-info {
        flex-wrap: wrap;
        gap: 10px;
    }

    .recent-post-item {
        flex-direction: column;
    }

    .recent-post-item .post-image {
        width: 100%;
        height: 150px;
    }
}

/* ===== BLOG details SECTION - AUREXIUM ===== */

/* ===== BLOG SECTION - AUREXIUM ===== */

/* ===== TESTIMONIALS SECTION - Aurexium ===== */

.testimonials-section {
    position: relative;
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    overflow: hidden;
}

/* Elegant background pattern */
.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 20 L50 20 L40 30 L45 45 L30 35 L15 45 L20 30 L10 20 L25 20 Z' fill='%23C6A13B' fill-opacity='0.02'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 1;
}

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

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    background: rgba(198, 161, 59, 0.08);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    border: 1px solid rgba(198, 161, 59, 0.2);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-navy);
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
}

.section-title .text-gold {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.section-title .text-gold::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    z-index: -1;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: var(--space-6);
}

/* ===== TESTIMONIALS SLIDER WRAPPER ===== */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-10) var(--space-12);
    margin: var(--space-4);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(198, 161, 59, 0.1);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--primary-gold),
        var(--secondary-navy)
    );
    opacity: 0;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(198, 161, 59, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    z-index: 2;
}

/* Quote Icon */
.quote-icon {
    margin-bottom: var(--space-6);
}

.quote-icon i {
    font-size: 48px;
    color: var(--primary-gold);
    opacity: 0.3;
    transition: var(--transition-base);
}

.testimonial-card:hover .quote-icon i {
    opacity: 0.5;
    transform: scale(1.1);
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-6);
}

.star-rating i {
    color: #ffb800;
    font-size: var(--text-lg);
    text-shadow: 0 2px 4px rgba(255, 184, 0, 0.2);
}

/* Testimonial Text */
.testimonial-text {
    font-family: var(--font-secondary);
    font-size: var(--text-xl);
    font-weight: 500;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: var(--space-8);
    position: relative;
    padding-left: var(--space-4);
    border-left: 2px solid var(--primary-gold);
    font-style: normal;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Author Avatar */
.author-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--primary-gold) 0%,
        var(--primary-gold-dark) 100%
    );
    color: var(--white);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: var(--text-xl);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: 0 8px 15px rgba(198, 161, 59, 0.2);
    transition: var(--transition-base);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(198, 161, 59, 0.3);
}

/* Author Details */
.author-details {
    flex: 1;
}

.author-name {
    font-family: var(--font-secondary);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--secondary-navy);
    margin-bottom: var(--space-1);
}

.author-position {
    font-size: var(--text-sm);
    color: var(--dark-gray);
    margin-bottom: 0;
    font-weight: 400;
}

/* ===== SLIDER NAVIGATION ===== */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-10);
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid rgba(198, 161, 59, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-gold);
    font-size: var(--text-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(198, 161, 59, 0.2);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
}

.slider-dots .dot.active {
    width: 30px;
    background: var(--primary-gold);
}

.slider-dots .dot:hover {
    background: var(--primary-gold-light);
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .section-title {
        font-size: 48px;
    }

    .testimonial-text {
        font-size: 22px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .testimonial-card {
        padding: var(--space-8) var(--space-10);
    }

    .testimonial-text {
        font-size: var(--text-lg);
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .testimonials-section {
        padding: var(--space-16) 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: var(--text-md);
    }

    .testimonial-card {
        padding: var(--space-8);
    }

    .testimonial-text {
        font-size: var(--text-md);
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }

    .author-name {
        font-size: var(--text-md);
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .testimonials-section {
        padding: var(--space-12) 0;
    }

    .section-header {
        margin-bottom: var(--space-10);
    }

    .section-title {
        font-size: 32px;
    }

    .section-badge {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-subtitle {
        font-size: var(--text-base);
        padding: 0 var(--space-4);
    }

    .testimonial-card {
        padding: var(--space-6);
        margin: var(--space-2);
    }

    .quote-icon i {
        font-size: 36px;
    }

    .star-rating i {
        font-size: var(--text-md);
    }

    .testimonial-text {
        font-size: var(--text-base);
        padding-left: var(--space-3);
    }

    .testimonial-author {
        gap: var(--space-3);
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: var(--text-md);
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: var(--text-sm);
    }
}

/* Mobile Small (375px - 575px) */
@media (max-width: 575px) {
    .testimonials-section {
        padding: var(--space-10) 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-subtitle {
        font-size: var(--text-sm);
    }

    .testimonial-card {
        padding: var(--space-5);
    }

    .quote-icon i {
        font-size: 32px;
    }

    .testimonial-text {
        font-size: var(--text-sm);
        margin-bottom: var(--space-6);
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin-bottom: var(--space-2);
    }

    .slider-navigation {
        gap: var(--space-3);
    }

    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
    }
}

/* ===== SLICK SLIDER CUSTOMIZATION ===== */
.testimonials-slider {
    margin-bottom: var(--space-4);
}

.testimonials-slider .slick-list {
    margin: 0 -15px;
}

.testimonials-slider .slick-slide {
    margin: 0 15px;
}

.testimonials-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
    padding: 0;
    list-style: none;
}

.testimonials-slider .slick-dots li {
    margin: 0;
}

.testimonials-slider .slick-dots button {
    display: none;
}

.testimonials-slider .slick-dots li::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(198, 161, 59, 0.2);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
}

.testimonials-slider .slick-dots li.slick-active::before {
    width: 30px;
    background: var(--primary-gold);
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .testimonial-card:hover {
        transform: none;
        box-shadow: var(--shadow-lg);
    }

    .testimonial-card:hover::before {
        opacity: 0;
    }

    .testimonial-card:hover .quote-icon i {
        transform: none;
    }

    .testimonial-card:hover .author-avatar {
        transform: none;
    }

    .slider-prev:hover,
    .slider-next:hover {
        background: var(--white);
        border-color: rgba(198, 161, 59, 0.2);
        color: var(--primary-gold);
        transform: none;
    }

    .slider-prev:active,
    .slider-next:active {
        background: var(--primary-gold);
        color: var(--white);
    }
}

/* ===== ANIMATIONS ===== */
.testimonials-section .section-badge,
.testimonials-section .section-title,
.testimonials-section .section-subtitle,
.testimonials-section .gold-divider,
.testimonials-section .testimonial-card {
    animation: fadeInUp 0.8s ease both;
}

.testimonials-section .section-badge {
    animation-delay: 0.1s;
}
.testimonials-section .section-title {
    animation-delay: 0.2s;
}
.testimonials-section .section-subtitle {
    animation-delay: 0.3s;
}
.testimonials-section .gold-divider {
    animation-delay: 0.4s;
}
.testimonials-section .testimonial-card:nth-child(1) {
    animation-delay: 0.5s;
}
.testimonials-section .testimonial-card:nth-child(2) {
    animation-delay: 0.6s;
}
.testimonials-section .testimonial-card:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ALTERNATIVE STYLE 1 - Minimal Elegant ===== */

.testimonials-section.minimal-style .testimonial-card {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: var(--space-8);
}

.testimonials-section.minimal-style .testimonial-card::before {
    display: none;
}

.testimonials-section.minimal-style .testimonial-text {
    border-left: none;
    padding-left: 0;
    text-align: center;
    font-size: 22px;
    color: var(--secondary-navy);
}

/* ===== ALTERNATIVE STYLE 2 - Card with Border ===== */

.testimonials-section.border-style .testimonial-card {
    border: 1px solid rgba(198, 161, 59, 0.2);
    box-shadow: none;
}

.testimonials-section.border-style .testimonial-card:hover {
    border-color: var(--primary-gold);
}
/* ===== TESTIMONIALS SLIDER WRAPPER ===== */

/* ===== About us  SLIDER WRAPPER ===== */
/* ===== ABOUT PAGE STYLES ===== */

/* Page Header */
.page-header {
    padding: 80px 0;
    background: linear-gradient(105deg, #0a2647 0%, #1a3655 100%);
    position: relative;
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: "Nunito", sans-serif;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #c6a13b;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "/";
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: #f8f9fa;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c6a13b;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a2647;
    margin-bottom: 15px;
    font-family: "Nunito", sans-serif;
}

.section-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== About Overview ===== */
.about-image-wrapper {
    position: relative;
    padding-right: 4px;
}

.about-image-main {
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-small {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 200px;
    overflow: hidden;
}

.about-image-small img {
    width: 100%;
    height: auto;
}

.about-experience {
    position: absolute;
    top: 30px;
    right: 0;
    background: #c6a13b;
    color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
}

.about-experience .years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.about-experience .text {
    font-size: 14px;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding-left: 30px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 25px 0;
}

/* Features */
.about-features {
    margin: 30px 0;
}

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

.feature-icon i {
    font-size: 24px;
    color: #c6a13b;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #c6a13b;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Mission Vision ===== */
.mission-card,
.vision-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: rgba(198, 161, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 36px;
    color: #c6a13b;
    transition: all 0.3s ease;
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
    transform: scale(1.1);
    color: #0a2647;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ===== Core Values ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 161, 59, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(198, 161, 59, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 30px;
    color: #c6a13b;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #c6a13b;
}

.value-card:hover .value-icon i {
    color: #ffffff;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ===== Why Choose Us ===== */
.why-content {
    padding-right: 30px;
}

.why-list {
    margin: 30px 0;
}

.why-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.why-item i {
    font-size: 20px;
    color: #c6a13b;
    background: rgba(198, 161, 59, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 5px;
}

.why-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.why-image {
    border-radius: 10px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.why-image:hover img {
    transform: scale(1.05);
}

/* ===== About CTA ===== */
.about-cta {
    padding: 80px 0;
    background: #f3f0e7;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111010;
    margin-bottom: 15px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-image-wrapper {
        padding-right: 0;
    }

    .about-image-small {
        width: 150px;
        bottom: -20px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header-content h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cta-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-image-small {
        width: 120px;
    }

    .about-experience {
        padding: 15px;
        min-width: 100px;
    }

    .about-experience .years {
        font-size: 24px;
    }
}
/* ===== About us  SLIDER WRAPPER ===== */

/* ===== term and conditions  SLIDER WRAPPER ===== */
/* ===== TERMS AND CONDITIONS STYLES ===== */

.terms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Section Header - Same as services section */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c6a13b;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0a2647;
    margin-bottom: 20px;
    font-family: "Nunito", sans-serif;
}

.text-gold {
    color: #c6a13b;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: #c6a13b;
    margin: 0 auto;
}

/* Last Updated */
.last-updated {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(198, 161, 59, 0.1);
    color: #c6a13b;
    font-size: 14px;
    border-radius: 30px;
    margin-bottom: 40px;
}

.last-updated i {
    margin-right: 8px;
}

/* Terms Grid */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Terms Card */
.terms-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 161, 59, 0.1);
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #c6a13b;
}

.terms-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(198, 161, 59, 0.2);
}

.terms-number {
    font-size: 24px;
    font-weight: 800;
    color: #c6a13b;
    opacity: 0.5;
    line-height: 1;
}

.terms-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a2647;
    margin: 0;
    font-family: "Nunito", sans-serif;
}

.terms-card-body {
    color: #666;
}

.terms-card-body p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Terms List */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.terms-list li {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.terms-list li::before {
    content: "\f111";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 4px;
    color: #c6a13b;
    font-size: 8px;
}

.terms-list.numbered {
    counter-reset: item;
}

.terms-list.numbered li {
    padding-left: 30px;
}

.terms-list.numbered li::before {
    content: counter(item) ".";
    counter-increment: item;
    font-size: 14px;
    font-weight: 600;
    color: #c6a13b;
    top: 0;
}

.terms-list strong {
    color: #0a2647;
}

/* Important Note */
.important-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #856404;
    margin: 20px 0 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.important-note i {
    color: #ffc107;
    font-size: 18px;
}

/* Confidentiality Box */
.confidentiality-box {
    background: rgba(198, 161, 59, 0.05);
    border: 1px solid rgba(198, 161, 59, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.confidentiality-box i {
    font-size: 24px;
    color: #c6a13b;
}

.confidentiality-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2647;
    margin-bottom: 5px;
}

.confidentiality-box p {
    margin: 0;
    font-size: 14px;
}

/* Contact Info */
.term-contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(198, 161, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c6a13b;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    color: #0a2647;
    margin-bottom: 3px;
}

.contact-item p,
.contact-item a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    margin: 0;
    line-height: 1.5;
}

.contact-item a:hover {
    color: #c6a13b;
}

/* Download Section */
.download-section {
    margin-top: 30px;
}

.download-section .btn-outline-gold {
    padding: 12px 35px;
}

/* Responsive */
@media (max-width: 992px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .terms-card {
        padding: 25px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .terms-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .terms-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
/* ===== term and conditions   SLIDER WRAPPER ===== */

/* ===== FOOTER SECTION - CA/ACCOUNTING FIRM STYLE ===== */

.footer {
    background: #0a2540; /* Professional navy blue */
    padding: 70px 0 0;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    position: relative;
    overflow: hidden;
}

/* Professional Grid Pattern */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
            rgba(198, 161, 59, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(198, 161, 59, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ===== FOOTER MAIN GRID ===== */
.footer-main {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* ===== COLUMN 1: BRAND ===== */
.footer-brand {
    margin-bottom: 20px;
}

.footer-brand a {
    text-decoration: none;
    display: inline-block;
}

.brand-name {
    font-family: "Nunito", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    display: block;
    line-height: 1.2;
}

.brand-tagline {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #c6a13b;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    max-width: 350px;
}

/* Certification Badges */
.certification-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(198, 161, 59, 0.1);
    border: 1px solid rgba(198, 161, 59, 0.3);
    color: #c6a13b;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: #c6a13b;
    color: #0a2540;
    border-color: #c6a13b;
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #c6a13b;
    border-color: #c6a13b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(198, 161, 59, 0.3);
}

/* ===== FOOTER HEADINGS ===== */
.footer-col h5 {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #c6a13b;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c6a13b;
    border-radius: 2px;
}

/* ===== FOOTER LISTS ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links li a::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #c6a13b;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #c6a13b;
    padding-left: 20px;
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info li i {
    color: #c6a13b;
    font-size: 16px;
    min-width: 20px;
    margin-top: 3px;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: #c6a13b;
}

/* ===== PAYMENT METHODS ===== */
.payment-methods {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #c6a13b;
    transform: scale(1.1);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #c6a13b;
}

.separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #c6a13b;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(198, 161, 59, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #a8842a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(198, 161, 59, 0.4);
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-text {
        max-width: 100%;
    }

    .brand-name {
        font-size: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 767px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-text {
        margin-left: auto;
        margin-right: auto;
    }

    .certification-badges {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li a {
        padding-left: 0;
    }

    .footer-links li a::before {
        display: none;
    }

    .footer-links li a:hover {
        padding-left: 0;
    }

    .contact-info li {
        justify-content: center;
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-bottom-links {
        gap: 10px;
    }

    .footer-bottom-links a {
        font-size: 13px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 375px) {
    .brand-name {
        font-size: 26px;
    }

    .brand-tagline {
        font-size: 11px;
    }

    .footer-text {
        font-size: 14px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer-col h5 {
        font-size: 15px;
    }

    .footer-links li a,
    .contact-info li {
        font-size: 14px;
    }

    .payment-icons i {
        font-size: 22px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 5px;
    }

    .separator {
        display: none;
    }
}

/* ===== EXTRA SMALL ===== */
@media (max-width: 320px) {
    .footer-social {
        gap: 8px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .payment-icons {
        gap: 10px;
    }

    .payment-icons i {
        font-size: 20px;
    }
}

/* ===== FOOTER SECTION - CA/ACCOUNTING FIRM STYLE ===== */

/* ===== GLOBLE HERO SECTION - OPTIMIZED ===== */

.custom-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Desktop ke liye */
    overflow: hidden;
    display: flex;
    align-items: center;
}

.custom-hero-slider {
    position: relative;
    width: 100%;
}

.custom-hero-slide {
    position: relative;
    width: 100%;
    height: 100vh; /* Desktop ke liye */
    display: flex;
    align-items: center;
}

/* Background Image */
.custom-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../frontEnd/images/all-page.jpg");
}

/* Premium Overlays */
.custom-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.6); /* Thoda light kiya */
    z-index: 2;
}

.custom-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 37, 64, 0.8) 0%,
        rgba(198, 161, 59, 0.2) 100%
    );
    z-index: 3;
}

.custom-hero-wrapper {
    max-width: 700px; /* Thoda chhota kiya */
}

.custom-hero-content {
    color: #ffffff;
}

/* Premium Badge */
.hero-badge-wrapper {
    margin-bottom: 15px; /* Kam space */
}

.text-gold::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    z-index: -1;
}

/* Premium Description */
.hero-description {
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    line-height: 1.6; /* Tighter line height */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px; /* Kam space */
    max-width: 550px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVE FIXES - SPACE KAM KIYA ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .custom-hero-section {
        min-height: 80vh;
    }

    .custom-hero-slide {
        height: 80vh;
    }

    .hero-title {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 500px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .custom-hero-section {
        min-height: 70vh;
    }

    .custom-hero-slide {
        height: 70vh;
    }

    .custom-hero-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .custom-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 18px;
        margin-left: auto;
        margin-right: auto;
        max-width: 450px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .custom-hero-section {
        min-height: 60vh;
    }

    .custom-hero-slide {
        height: 60vh;
    }

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
        max-width: 100%;
    }

    .btn-gold {
        padding: 12px 25px;
        font-size: 14px;
        gap: 8px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 4px 10px;
        letter-spacing: 2px;
    }
}

/* Mobile Medium */
@media (max-width: 425px) {
    .custom-hero-section {
        min-height: 55vh;
    }

    .custom-hero-slide {
        height: 55vh;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .custom-hero-section {
        min-height: 50vh;
    }

    .custom-hero-slide {
        height: 50vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .premium-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* iPhone SE and very small devices */
@media (max-width: 320px) {
    .custom-hero-section {
        min-height: 45vh;
    }

    .custom-hero-slide {
        height: 45vh;
    }

    .hero-title {
        font-size: 24px;
    }
}

/* ===== GLOBLE HERO SECTION - OPTIMIZED ===== */
