/*
Theme Name: Divine Startup Advisory
Theme URI: http://divineadvisory.com
Author: Antigravity
Author URI: https://divineadvisory.com
Description: Premium dark-mode theme for Divine Startup Advisory LLP. Featuring glassmorphism, gold accents, and startup-focused UI.
Version: 1.0.5
Text Domain: divine-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Theme Independent Assets */
    --accent-gold: #c5a02c;
    --accent-gold-soft: #b8972e;
    --accent-gold-glow: rgba(197, 160, 44, 0.15);
    --container-width: 1240px;
    --section-padding: 120px;
    --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 32px;

    /* Theme Dependent - Dark Mode (Default) */
    --bg-main: #0b0f1a;
    --bg-sub: #111827;
    --text-main: #ffffff;
    --text-sub: #9ca3af;
    --text-dim: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-main: rgba(255, 255, 255, 0.08);
    --shadow-main: 0 20px 40px rgba(0, 0, 0, 0.4);
    --header-bg: rgba(11, 15, 26, 0.8);
    --glass-blur: blur(12px);
}

body.light-theme {
    /* Theme Dependent - Light Mode (High Contrast) */
    --bg-main: #ffffff;
    --bg-sub: #f8fafc;
    --text-main: #0f172a;
    --text-sub: #334155;
    --text-dim: #64748b;
    --card-bg: #ffffff;
    --border-main: rgba(15, 23, 42, 0.1);
    --shadow-main: 0 10px 25px rgba(15, 23, 42, 0.05);
    --header-bg: rgba(255, 255, 255, 0.95);
}

/* Global Icon Restoration */
i[class*="fa-"] {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', sans-serif !important;
    font-style: normal;
    font-weight: 400;
    /* Default */
}

i.fa-solid,
i.fas {
    font-weight: 900 !important;
}

i.fa-brands,
i.fab {
    font-family: 'Font Awesome 6 Brands', sans-serif !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Typography Refresh */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

section h2 span {
    color: var(--accent-gold);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 10px;
}

p {
    color: var(--text-sub);
    font-weight: 400;
    font-size: 1.05rem;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: var(--section-padding) 0 60px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.8rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.transparent {
    background: transparent;
}

.header.scrolled {
    padding: 1.2rem 0;
    background: var(--header-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-main);
    box-shadow: var(--shadow-main);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    line-height: 1;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.01em;
}

.logo span {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* ELITE DROPDOWN SYSTEM */
.nav-links-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 1rem;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    list-style: none;
}

.nav-links>li {
    position: relative;
    padding: 1rem 0;
    white-space: nowrap;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.8;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

/* Active Navigation Link - Current Page Highlight */
.nav-links li a.active {
    color: var(--accent-gold);
    opacity: 1;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 4px;
}

/* Sub-menu styling - Luxe Dropdown */
.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: var(--bg-main);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.nav-links li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu li {
    margin-bottom: 0.5rem;
    width: 100%;
}

.nav-links .sub-menu li a {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-sub);
    font-weight: 600;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    display: block;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-links .sub-menu li a:hover {
    background: var(--accent-gold-glow);
    color: var(--accent-gold);
    opacity: 1;
    border-color: rgba(212, 175, 55, 0.15);
    padding-left: 1.5rem;
}

/* Dropdown Arrow Indicator */
.menu-item-has-children>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    opacity: 0.6;
    transition: 0.3s;
}

.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

/* Theme Toggle Button (Premium Pill) */
.theme-toggle {
    background: var(--card-bg);
    border: 1px solid var(--border-main);
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    position: relative;
    overflow: hidden;
    min-width: 110px;
    box-shadow: var(--shadow-main);
    white-space: nowrap;
}

.theme-toggle:hover {
    border-color: var(--accent-gold);
    background: var(--bg-main);
    transform: translateY(-2px);
}

.toggle-icon {
    width: 24px;
    height: 24px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-main);
}

body.light-theme .toggle-icon {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

.theme-label {
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.sun-icon {
    display: none;
}

body.light-theme .moon-icon {
    display: none;
}

body.light-theme .sun-icon {
    display: block;
}

/* Components Refresh */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    border: none;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-gold {
    background: var(--accent-gold);
    color: #ffffff;
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--accent-gold-glow);
    filter: brightness(1.1);
}

.btn-outline {
    border: 1px solid var(--border-main);
    color: var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-main);
    border-color: var(--text-main);
    transform: translateY(-4px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-whatsapp:hover {
    background: #20ba58;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    filter: brightness(1.05);
}

.nav-cta {
    min-width: auto;
    padding: 0.7rem 1.4rem !important;
    font-size: 0.7rem !important;
    white-space: nowrap;
}

/* Hero System v2 (Centered & Premium) */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
    background: var(--bg-main);
}

.hero-visual-accents {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.6;
    animation: pulseGlow 8s infinite alternate;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 50%;
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.4;
    animation: pulseGlow 12s infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.2) translate(5%, 5%);
        opacity: 0.7;
    }
}

.hero-inner {
    position: relative;
    z-index: 5;
    max-width: 900px;
    width: 100%;
    margin-top: -60px;
}

.hero-inner h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

body.light-theme .hero-inner h1 {
    color: var(--text-main);
    text-shadow: none;
}

body.light-theme .page-hero {
    background: linear-gradient(135deg, #ffffff 0%, rgba(197, 160, 44, 0.1) 50%, #fef9f3 100%) !important;
}

body.light-theme #home-hero {
    background: linear-gradient(135deg, #ffffff 0%, rgba(197, 160, 44, 0.1) 50%, #fef9f3 100%) !important;
}

body.light-theme .hero-glow-1 {
    opacity: 0.25;
}

body.light-theme .hero-glow-2 {
    opacity: 0.15;
}

.hero-inner p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-sub);
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    animation: fadeBounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

@keyframes fadeBounce {

    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, 10px);
        opacity: 0.8;
    }
}

/* Redesigned Counter Section */
.counter-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-main);
    z-index: 10;
    margin-top: -60px;
    /* Slight overlap for flow */
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.counter-card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.counter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold-glow), transparent);
    opacity: 0;
    transition: 0.4s;
}

.counter-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

.counter-card i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    display: block;
    transition: 0.4s;
}

.counter-card:hover i {
    transform: scale(1.1) translateY(-5px);
}

.counter-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.counter-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

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

@media (max-width: 768px) {
    .page-hero {
        min-height: 80vh;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .counter-card {
        padding: 3rem 2rem;
    }
}

/* Glass Card Component Shared Styles */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-main);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold-glow), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-main);
}

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

.glass-card i {
    font-size: 2.4rem;
    color: var(--accent-gold);
    margin-bottom: 1.8rem;
    display: inline-block;
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', sans-serif !important;
    font-style: normal;
    font-weight: 900 !important;
}

.glass-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 991px) {
    .navbar {
        padding: 0 2rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links-container {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        z-index: 1000;
    }

    .nav-links-container.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-links>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li a {
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
        justify-content: space-between;
    }

    .nav-links .sub-menu {
        position: static;
        width: 100%;
        background: transparent;
        padding: 0 0 1rem 1.5rem;
        border: none;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }

    .nav-links li:hover>.sub-menu {
        display: block;
    }

    .nav-cta {
        margin: 2rem 0 0;
        width: 100%;
        text-align: center;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatPattern {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 600px 600px;
    }
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background: var(--bg-sub);
    padding: 120px 0 60px;
    border-top: 1px solid var(--border-main);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.footer-logo span {
    color: var(--accent-gold);
    font-weight: 500;
    font-size: 0.9rem;
    margin-left: 5px;
}

.footer-desc p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--card-bg);
    border: 1px solid var(--border-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sub);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--accent-gold-glow);
    border-color: var(--accent-gold);
}

.footer-links h4 {
    margin-bottom: 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border-main);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Original Components Restoration */

.marquee-container {
    padding: 60px 0;
    background: var(--bg-sub);
    overflow: hidden;
    border-top: 1px solid var(--border-main);
    border-bottom: 1px solid var(--border-main);
}

.marquee-content {
    display: flex;
    gap: 5rem;
    animation: scrollLoop 50s linear infinite;
    width: max-content;
}

.trust-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dim);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Testimonial Carousel */
.testimonial-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 3.5rem 3rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(197, 160, 44, 0.05) 0%, rgba(13, 18, 37, 0.8) 100%);
    border: 1.5px solid rgba(197, 160, 44, 0.2);
    border-left: 4px solid var(--accent-gold);
    border-right: 4px solid var(--accent-gold);
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.star-rating i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(197, 160, 44, 0.3);
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0.25rem 0 0 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 4rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-main);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-gold);
    width: 35px;
    border-radius: 10px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-control {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(197, 160, 44, 0.3);
    background: rgba(197, 160, 44, 0.05);
    border-radius: 50%;
    color: var(--accent-gold);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.carousel-control:hover {
    background: rgba(197, 160, 44, 0.15);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.carousel-control:active {
    transform: scale(0.95);
}

/* Additional Utilities from Original */
.hero-light {
    position: relative;
    overflow: hidden;
}

.hero-light .hero-patterns {
    opacity: 0.15;
    background-image: url('images/hero_pattern.svg');
    background-size: 600px;
    animation: floatPattern 60s linear infinite;
    filter: invert(1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.checklist li i {
    color: var(--accent-gold);
}

/* About Page Premium Redesign Sections */

.team-section {
    position: relative;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.15;
    animation: floatShape 15s infinite alternate ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-gold);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(30deg);
    }
}

.shimmer-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 1.5rem auto 4rem;
    position: relative;
    overflow: hidden;
}

.shimmer-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmerEffect 2s infinite;
}

@keyframes shimmerEffect {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-main);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-main);
}

.team-image-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(45deg, var(--accent-gold), transparent);
    margin-bottom: 2rem;
    position: relative;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-main);
}

.specialty-tag {
    background: var(--accent-gold-glow);
    color: var(--accent-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-card .designation {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    display: block;
}

.team-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--glass-border);
}

.team-social a:hover {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

.quote-strip {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    padding: 3rem 0;
    margin-top: 5rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.quote-strip p {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--text-white);
    opacity: 0.9;
}

/* Partners Section */

.partners-section {
    background: var(--bg-main);
}

.logo-slider-container {
    width: 100%;
    padding: 5rem 0;
    background: var(--bg-sub);
    border-top: 1px solid var(--border-main);
    border-bottom: 1px solid var(--border-main);
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.logo-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.logo-track span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dim);
    opacity: 0.6;
    padding: 0 5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: 0.3s;
    display: inline-block;
}

.logo-track span:hover {
    opacity: 1;
    color: var(--accent-gold);
    filter: grayscale(0);
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trust-stats {
    padding: 80px 0 0;
}

.stat-card {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold-glow);
}

/* Content Area Styling (Legal/Standard Pages) */
.entry-content {
    color: var(--text-main);
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3 {
    margin: 3rem 0 1.5rem;
    color: var(--accent-gold);
}

.entry-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-sub);
}

.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--text-sub);
}

.entry-content li {
    margin-bottom: 1rem;
}

/* Responsive Grids */
@media (max-width: 991px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .theme-toggle {
        min-width: 120px;
        padding: 6px 12px;
    }

    .theme-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 600px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}