/* ===================================================================
   DIGILOADS - UNIQUE MODERN REDESIGN
   Premium Gradient & Glassmorphism Design
   Mobile-First Responsive Design
   =================================================================== */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ===============================================
   ROOT VARIABLES - Modern Color Palette
   =============================================== */
:root {
    /* Modern Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Premium Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-fresh: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* ===============================================
   GLOBAL TYPOGRAPHY OVERRIDES
   =============================================== */
body {
    font-family: var(--font-primary) !important;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading,
.heror-content .heading {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

/* ===============================================
   HERO SECTION - PREMIUM REDESIGN
   =============================================== */
.hero.hero-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(79, 172, 254, 0.2) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Modern Floating Shapes */
.hero .circle1,
.hero .circle2,
.hero .circle3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.hero .circle1 {
    width: 400px;
    height: 400px;
    background: rgba(102, 126, 234, 0.5);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero .circle2 {
    width: 350px;
    height: 350px;
    background: rgba(245, 87, 108, 0.5);
    top: 50%;
    right: -100px;
    animation-delay: 7s;
}

.hero .circle3 {
    width: 300px;
    height: 300px;
    background: rgba(79, 172, 254, 0.5);
    bottom: -50px;
    left: 30%;
    animation-delay: 14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Hero Content */
.hero .heror-content {
    position: relative;
    z-index: 10;
}

.hero .sub-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .heading {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism Search Bar - Balanced Professional Design */
.hero .search-bar {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    padding: 5px;
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    height: 52px;
}

.hero .search-bar:hover,
.hero .search-bar:focus-within {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow:
        0 12px 40px rgba(31, 38, 135, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero .search-bar .search-form--control,
.hero .search-bar input[type="text"] {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    padding: 0 18px !important;
    flex: 1;
    outline: none !important;
    font-weight: 500;
    height: 42px !important;
    line-height: 42px !important;
}

.hero .search-bar .search-form--control::placeholder,
.hero .search-bar input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 400;
}

.hero .search-bar .search-btn,
.hero .search-bar button[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.45) !important;
    flex-shrink: 0;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
}

.hero .search-bar .search-btn i,
.hero .search-bar .search-btn .icon,
.hero .search-bar .search-btn .la,
.hero .search-bar .search-btn .las {
    font-size: 1.05rem !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.hero .search-bar .search-btn:hover,
.hero .search-bar button[type="submit"]:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.65) !important;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}

.hero .search-bar .search-btn:active,
.hero .search-bar button[type="submit"]:active {
    transform: scale(0.98);
}

/* ===============================================
   CATEGORY CARDS - MODERN DESIGN
   =============================================== */
.category-wraper {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.category-card_body {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--radius-lg) !important;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 4px 16px rgba(31, 38, 135, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    position: relative;
    overflow: hidden;
}

.category-card_body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card_body:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow:
        0 12px 32px rgba(31, 38, 135, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.category-card_body:hover::before {
    opacity: 1;
}

.category-card_body .category-img {
    margin-bottom: 12px;
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.category-card_body:hover .category-img {
    transform: scale(1.15) rotate(5deg);
}

.category-card_body .category-img i,
.category-card_body .category-img svg {
    color: #ffffff !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.category-card_body .category-content h6 {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.95rem;
    margin: 0;
    letter-spacing: 0.3px;
}

.category-card_body .category-content a {
    color: #ffffff !important;
    text-decoration: none;
}

/* Category Background - Hide Default */
.category-bg {
    display: none !important;
}

/* ===============================================
   MOBILE RESPONSIVE
   =============================================== */
@media (max-width: 768px) {
    .hero.hero-bg {
        padding: 60px 0 80px;
        min-height: 75vh;
    }

    .hero .heading {
        font-size: 2rem !important;
        margin-bottom: 20px;
    }

    .hero .sub-heading {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .hero .search-bar {
        max-width: 100%;
        height: 50px;
        padding: 5px;
        gap: 5px;
        border-radius: 28px;
    }

    .hero .search-bar .search-form--control,
    .hero .search-bar input[type="text"] {
        padding: 0 14px !important;
        font-size: 0.9rem !important;
        height: 40px !important;
        line-height: 40px !important;
    }

    .hero .search-bar .search-btn,
    .hero .search-bar button[type="submit"] {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        font-size: 1rem !important;
    }

    .category-wraper {
        margin-top: 40px;
    }

    .category-card_body {
        padding: 20px 12px;
        border-radius: var(--radius-md) !important;
    }

    .category-card_body .category-img {
        font-size: 2rem;
    }

    .category-card_body .category-content h6 {
        font-size: 0.85rem;
    }

    /* Reduce circle sizes on mobile */
    .hero .circle1,
    .hero .circle2,
    .hero .circle3 {
        filter: blur(60px);
    }

    .hero .circle1 {
        width: 250px;
        height: 250px;
    }

    .hero .circle2 {
        width: 200px;
        height: 200px;
    }

    .hero .circle3 {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .hero .heading {
        font-size: 1.75rem !important;
    }

    .hero .search-bar {
        height: 48px;
        padding: 4px;
        gap: 4px;
        border-radius: 26px;
    }

    .hero .search-bar .search-form--control,
    .hero .search-bar input[type="text"] {
        padding: 0 12px !important;
        font-size: 0.85rem !important;
        height: 40px !important;
        line-height: 40px !important;
    }

    .hero .search-bar .search-btn,
    .hero .search-bar button[type="submit"] {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        font-size: 0.95rem !important;
    }

    .category-card_body {
        padding: 16px 10px;
    }

    .category-card_body .category-img {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }
}

/* ===============================================
   SECTION HEADERS - MODERN STYLING
   =============================================== */
.section-heading {
    margin-bottom: 60px;
    text-align: center;
}

.section-heading__title {
    font-family: var(--font-display) !important;
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-heading .subtitle {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #764ba2;
    margin-bottom: 12px;
}

/* ===============================================
   PRODUCT CARDS - MODERN GLASSMORPHISM
   =============================================== */
.card_wraper .card_body {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md) !important;
}

.card_wraper .card_body:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

.card_wraper .card-img {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
}

.card_wraper .card-img img {
    transition: transform 0.6s ease;
}

.card_wraper .card_body:hover .card-img img {
    transform: scale(1.08);
}

.card_wraper .content {
    padding: 20px !important;
}

.card_wraper .content h6,
.card_wraper .content .content-text h6 {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2d3748;
}

.card_wraper .content p,
.card_wraper .content .content-text p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
}

/* ===============================================
   BUTTONS - MODERN GRADIENT DESIGN
   =============================================== */
.btn--base,
.btn.btn--base {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 12px 32px !important;
    border-radius: 50px !important;
    font-family: var(--font-primary) !important;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.btn--base::before,
.btn.btn--base::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn--base:hover,
.btn.btn--base:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6) !important;
    color: #ffffff !important;
}

.btn--base:hover::before,
.btn.btn--base:hover::before {
    left: 0;
}

/* ===============================================
   FAQ SECTION - MODERN ACCORDION
   =============================================== */
.custom--accordion .accordion-button {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    padding: 18px 24px !important;
    font-family: var(--font-display) !important;
    transition: all 0.3s ease;
}

.custom--accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%) !important;
    border-color: rgba(102, 126, 234, 0.4) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.custom--accordion .accordion-button:hover {
    background: rgba(102, 126, 234, 0.05) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

.custom--accordion .accordion-body {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 20px 24px !important;
    color: #4a5568;
    line-height: 1.8;
}

/* ===============================================
   NEWS/BLOG CARDS
   =============================================== */
.nws-card_wraper .nws-card_body {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md) !important;
}

.nws-card_wraper .nws-card_body:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

/* ===============================================
   FOOTER - SUBTLE GRADIENT
   =============================================== */
.footer-area {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%) !important;
    position: relative;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
}

/* ===============================================
   FLOATING ANIMATIONS FOR ICONS
   =============================================== */
.animationBox_container .box1,
.animationBox_container .box3,
.animationBox_container .box6,
.animationBox_container .box7 {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

/* Hide hero shape background */
.hero-shape-bg {
    opacity: 0.1;
}

/* ===============================================
   SEARCH RESULTS - GLASSMORPHISM
   =============================================== */
.search-result-wrap {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-result-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-result-wrap .search-results a {
    display: block;
    padding: 12px 20px;
    color: #2d3748 !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-result-wrap .search-results a:hover {
    background: rgba(102, 126, 234, 0.1);
    padding-left: 28px;
    color: #667eea !important;
}

.search-result-wrap .search-results a:last-child {
    border-bottom: none;
}

/* ===============================================
   PRICE CARDS - MODERN DESIGN
   =============================================== */
.price-cardBody {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--radius-lg) !important;
    padding: 32px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md) !important;
}

.price-cardBody:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl) !important;
    border-color: rgba(102, 126, 234, 0.4) !important;
}

/* ===============================================
   SMOOTH SCROLLING & PERFORMANCE
   =============================================== */
html {
    scroll-behavior: smooth;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Optimize backdrop-filter for better performance */
@supports (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px)) {

    .hero .search-bar,
    .category-card_body,
    .card_wraper .card_body,
    .search-result-wrap {
        will-change: transform;
    }
}

/* ===============================================
   DARK MODE SUPPORT
   =============================================== */
.dark .hero.hero-bg {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1f3f 50%, #3d1f4a 100%);
}

.dark .card_wraper .card_body,
.dark .nws-card_wraper .nws-card_body,
.dark .price-cardBody {
    background: rgba(45, 55, 72, 0.5) !important;
    border-color: rgba(102, 126, 234, 0.2) !important;
}

.dark .search-result-wrap {
    background: rgba(45, 55, 72, 0.95);
}

.dark .custom--accordion .accordion-button {
    background: rgba(45, 55, 72, 0.5) !important;
    color: #e2e8f0 !important;
}

.dark .custom--accordion .accordion-body {
    background: rgba(45, 55, 72, 0.3);
    color: #cbd5e0;
}
/* ===================================================================
   PAGES STYLING - Login, Register, Contact, About, Browse
   Modern Unique Design with Glassmorphism
   =================================================================== */

/* General Page Backgrounds */
.section-bg, .py-80, .dashboard, .account-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
    position: relative;
}

.section-bg::before, .account-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(102,126,234,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(245,87,108,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Login Register Forms */
.account-form, .custom--card {
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255,255,255,0.5) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 10px 40px rgba(31,38,135,0.15), inset 0 1px 0 rgba(255,255,255,0.6) !important;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.account-form:hover, .custom--card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(31,38,135,0.2), inset 0 1px 0 rgba(255,255,255,0.7) !important;
}

.account-form .card-body, .custom--card .card-body {
    background: transparent !important;
    padding: 2.5rem !important;
}

.account-form h3, .account-form h4, .custom--card h3, .custom--card h4, .account-form .card-title {
    font-family: var(--font-display) !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

/* Form Inputs */
.form--control, .form-control, input.form--control, textarea.form--control, select.form--control {
    background: rgba(255,255,255,0.7) !important;
    border: 1.5px solid rgba(102,126,234,0.25) !important;
    border-radius: var(--radius-sm) !important;
    padding: 0.875rem 1.25rem !important;
    font-size: 0.95rem !important;
    color: #2d3748 !important;
    font-family: var(--font-primary) !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form--control:focus, .form-control:focus {
    background: rgba(255,255,255,0.9) !important;
    border-color: rgba(102,126,234,0.5) !important;
    box-shadow: 0 0 0 4px rgba(102,126,234,0.1), 0 4px 12px rgba(102,126,234,0.2) !important;
    outline: none !important;
    transform: translateY(-1px);
}

.form--control::placeholder, .form-control::placeholder {
    color: rgba(45,55,72,0.5) !important;
}

.form--label, .form-label, label {
    font-weight: 600 !important;
    color: #4a5568 !important;
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
    font-family: var(--font-primary) !important;
    letter-spacing: 0.3px;
}

/* Contact Page */
.contactus-form, .contact-form {
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255,255,255,0.5) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2.5rem !important;
    box-shadow: 0 10px 40px rgba(31,38,135,0.15), inset 0 1px 0 rgba(255,255,255,0.6) !important;
}

.contact-info__addres-wrap .single_wrapper, .contact-item, .info-box {
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.4) !important;
    border-radius: var(--radius-md) !important;
    padding: 2rem !important;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm) !important;
    margin-bottom: 1.5rem;
}

.contact-info__addres-wrap .single_wrapper:hover, .contact-item:hover, .info-box:hover {
    background: rgba(255,255,255,0.95) !important;
    border-color: rgba(102,126,234,0.3) !important;
    box-shadow: var(--shadow-lg) !important;
    transform: translateY(-6px);
}

.contact-info__addres-wrap .icon, .contact-item .icon, .info-box .icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(102,126,234,0.35);
}

/* Breadcrumb */
.breadcumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}

.breadcumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.breadcumb__title {
    font-family: var(--font-display) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    font-size: clamp(2rem, 5vw, 3rem) !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.breadcumb__item, .breadcumb__item-text {
    color: rgba(255,255,255,0.95) !important;
    font-weight: 500;
}

.breadcumb__link {
    color: rgba(255,255,255,0.85) !important;
    transition: color 0.3s ease;
}

.breadcumb__link:hover {
    color: #ffffff !important;
}

/* Pagination */
.pagination .page-item .page-link {
    background: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(102,126,234,0.25) !important;
    color: #4a5568 !important;
    border-radius: var(--radius-sm) !important;
    margin: 0 5px;
    padding: 0.5rem 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-item .page-link:hover {
    background: rgba(102,126,234,0.12) !important;
    border-color: rgba(102,126,234,0.4) !important;
    color: #667eea !important;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(102,126,234,0.35);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .account-form .card-body, .custom--card .card-body, .contactus-form {
        padding: 1.75rem !important;
    }
    .breadcumb {
        padding: 50px 0 35px;
    }
    .breadcumb__title {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 576px) {
    .account-form .card-body, .custom--card .card-body {
        padding: 1.5rem !important;
    }
    .form--control, .form-control {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    .breadcumb__title {
        font-size: 1.5rem !important;
    }
}

/* Dark Mode */
.dark .section-bg, .dark .py-80, .dark .account-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%) !important;
}

.dark .account-form, .dark .custom--card, .dark .contactus-form {
    background: rgba(45,55,72,0.7) !important;
    border-color: rgba(102,126,234,0.35) !important;
}

.dark .form--control, .dark .form-control {
    background: rgba(45,55,72,0.6) !important;
    border-color: rgba(102,126,234,0.35) !important;
    color: #e2e8f0 !important;
}

/* ===================================================================
   FOOTER REDESIGN - Colorful & Readable
   =================================================================== */

/* Footer Background with Beautiful Gradient */
.footer-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
    position: relative;
    padding: 80px 0 40px !important;
    overflow: hidden;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245,87,108,0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(79,172,254,0.15) 0%, transparent 60%);
    z-index: 0;
}

.footer-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102,126,234,0.1);
    z-index: 0;
}

/* Footer Items - Better Visibility */
.footer-item {
    position: relative;
    z-index: 1;
}

/* Footer Title - White & Bold */
.footer-item__title {
    color: #ffffff !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.footer-item__title::after {
    background: rgba(255,255,255,0.4) !important;
}

/* Footer Description - Readable White */
.footer-item__desc {
    color: rgba(255,255,255,0.95) !important;
    font-size: 0.95rem !important;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Footer Links - White with Hover */
.footer-menu__link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.footer-menu__link:hover {
    color: #ffffff !important;
    transform: translateX(5px);
    text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.footer-menu__link::before {
    background: rgba(255,255,255,0.6) !important;
}

/* Footer Contact Items */
.footer-contact-menu__item {
    color: rgba(255,255,255,0.95) !important;
}

.footer-contact-menu__item p {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.footer-contact-menu__item .icon {
    color: #ffffff !important;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 8px;
}

/* Social Links - Glass Buttons */
.footer-item .social-list__item .social-list__link {
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.footer-item .social-list__item .social-list__link:hover {
    background: rgba(255,255,255,0.25) !important;
    border-color: rgba(255,255,255,0.5) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Newsletter Input */
.footer-subscribe-box .form--input__field,
.search-box.footer input.form--control,
.footer input.form--control {
    background: rgba(255,255,255,0.2) !important;
    border: 1.5px solid rgba(255,255,255,0.3) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.footer-subscribe-box .form--input__field::placeholder,
.search-box.footer input.form--control::placeholder,
.footer input.form--control::placeholder {
    color: rgba(255,255,255,0.7) !important;
}

.footer-subscribe-box .form--input__field:focus,
.search-box.footer input.form--control:focus,
.footer input.form--control:focus {
    background: rgba(255,255,255,0.3) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

/* Newsletter Button */
.footer-subscribe-box .search-btn,
.search-box.footer .search-btn {
    background: rgba(255,255,255,0.9) !important;
    color: #667eea !important;
    font-weight: 600;
}

.footer-subscribe-box .search-btn:hover,
.search-box.footer .search-btn:hover {
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* Bottom Footer */
.bottom-footer {
    background: rgba(0,0,0,0.15) !important;
    border-top: 1px solid rgba(255,255,255,0.15) !important;
    padding: 25px 0 !important;
    position: relative;
    z-index: 1;
}

.bottom-footer .bottom-footer-text {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.bottom-footer-menu ul li a {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.bottom-footer-menu ul li a:hover {
    color: #ffffff !important;
}

.bottom-footer-menu ul li::after {
    background: rgba(255,255,255,0.5) !important;
}

/* Footer Logo */
.footer-item__logo a img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-area {
        padding: 60px 0 30px !important;
    }
    
    .footer-item__title {
        font-size: 1.1rem !important;
    }
}

/* Dark Mode Override (Keep Colorful) */
.dark .footer-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
}

.dark .footer-item__title,
.dark .footer-menu__link,
.dark .footer-contact-menu__item p,
.dark .bottom-footer .bottom-footer-text {
    color: rgba(255,255,255,0.95) !important;
}
