
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', 'Barlow', sans-serif;
            background: #f6f7fb;
            color: #111827;
            overflow-x: hidden;
        }

        :root {
            --ch-teal: #14b8a6;
            --ch-dark-slate: #0f172a;
            --ch-white: #ffffff;
            --ch-slate-muted: #94a3b8;
            --ch-bg-light: #f8fafc;
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.2);
            --transition-speed: 0.3s;
        }

        /* Strict overflow handling to fix responsiveness across all devices */
        html,
        body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Barlow', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-color: #fff;
            touch-action: manipulation;
        }

        input,
        select,
        textarea,
        button {
            -webkit-appearance: none;
            border-radius: 0;
        }

        .section-pad {
            padding: clamp(60px, 8vw, 80px) 0;
        }

        .section-tag {
            color: var(--ch-teal);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: var(--ch-dark-slate);
            line-height: 1.2;
        }

        .highlight {
            color: var(--ch-teal);
        }

        /* --- Navbar --- */
        #mainNav {
            transition: all var(--transition-speed) ease;
            padding: 15px 0;
            background: transparent;
        }

        #mainNav.scrolled {
            background: rgba(15, 23, 42, 0.95) !important;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .text-logo span:first-child {
            font-size: clamp(35px, 6vw, 50px) !important;
        }

        .text-logo span:last-child {
            font-size: clamp(9px, 1.5vw, 11px) !important;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            transition: color var(--transition-speed) ease;
        }

        .nav-link:hover,
        .nav-item.active .nav-link {
            color: var(--ch-teal) !important;
        }

        .btn-nav-order {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 8px 20px !important;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            transition: all var(--transition-speed) ease;
        }

        .btn-nav-order:hover {
            background: var(--ch-teal);
            border-color: var(--ch-teal);
            color: #fff !important;
        }

        @media (max-width: 991px) {
            #mainNav {
                background: rgba(15, 23, 42, 0.95) !important;
            }
        }

        /* HERO SECTION */
        .modern-hero {
            width: 100%;
            min-height: 100vh;
            padding: 130px 0 80px; /* Added padding to clear fixed navbar properly */
            background: linear-gradient(to right, rgba(0, 11, 32, 0.97), rgba(0, 20, 55, 0.9)),
                        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1974&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: relative;
        }
        .modern-hero::before {
            content: "";
            position: absolute;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            width: 650px;
            height: 650px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(20, 217, 196, 0.18), transparent 70%);
            pointer-events: none;
        }
        .hero-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 2;
        }
        .hero-text small {
            color: #14d9c4;
            font-size: 1.1rem;
            letter-spacing: 1px;
            font-weight: 600;
        }
        .hero-text h1 {
            margin-top: 25px;
            font-size: 5rem;
            color: #fff;
            line-height: 1.1;
            font-weight: 800;
        }
        .hero-text h1 span {
            color: #14d9c4;
        }
        .hero-line {
            width: 110px;
            height: 4px;
            background: #14d9c4;
            margin: 35px 0;
            border-radius: 50px;
        }
        .hero-text p {
            color: rgba(255, 255, 255, 0.78);
            line-height: 2;
            max-width: 620px;
            font-size: 1.08rem;
        }
        .hero-image {
            display: flex;
            justify-content: flex-end;
            padding-right: 70px;
        }
        .shield-icon {
            width: 360px;
            height: 360px;
            border: 4px solid rgba(20, 217, 196, 0.35);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            box-shadow: 0 0 50px rgba(20, 217, 196, 0.2), inset 0 0 50px rgba(20, 217, 196, 0.15);
            transform: translateX(40px);
        }
        .shield-icon::before {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 2px dashed rgba(20, 217, 196, 0.4);
            animation: spin 20s linear infinite;
        }
        .shield-icon i {
            font-size: 7rem;
            color: #14d9c4;
        }
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* TABS */
        .tabs-section {
            background: #fff;
            padding: 50px 0 0;
        }
        .tabs {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .tab-item {
            text-align: center;
            cursor: pointer;
            position: relative;
            padding: 10px 25px;
            transition: all 0.2s;
            outline: none;
        }
        .tab-item:focus-visible {
            outline: 2px solid var(--ch-teal);
            border-radius: 40px;
        }
        .tab-item::after {
            content: "";
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 80px;
            background: #e6e6e6;
        }
        .tab-item:last-child::after {
            display: none;
        }
        .tab-icon {
            width: 85px;
            height: 85px;
            background: #f1f5f9;
            border-radius: 50%;
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            color: #6b7280;
            transition: 0.3s;
        }
        .tab-item.active .tab-icon {
            background: #14d9c4;
            color: #fff;
            box-shadow: 0 10px 30px rgba(20, 217, 196, 0.3);
        }
        .tab-item h4 {
            margin-top: 18px;
            font-size: 1rem;
            color: #6b7280;
            letter-spacing: 1px;
            font-weight: 600;
        }
        .tab-item.active h4 {
            color: #14d9c4;
        }
        .active-line {
            width: 80px;
            height: 4px;
            background: #14d9c4;
            border-radius: 20px;
            margin: 16px auto 0;
            opacity: 0;
            transition: 0.2s;
        }
        .tab-item.active .active-line {
            opacity: 1;
        }
        .panel-container {
            padding: 40px 0 70px;
            background: #fff;
        }
        .content-panel {
            display: none;
            animation: fadeIn 0.3s ease;
        }
        .content-panel.active-panel {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .panel-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 40px;
        }
        .panel-header i {
            color: #14d9c4;
            font-size: 2rem;
        }
        .panel-header h2 {
            font-size: 2.3rem;
            font-weight: 700;
            color: #0f172a;
            margin: 0;
        }
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }
        .info-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 35px rgba(20, 184, 166, 0.15);
        }
        .card-img {
            height: 260px;
            overflow: hidden;
        }
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .info-card:hover img {
            transform: scale(1.05);
        }
        .card-body {
            padding: 28px;
            flex: 1;
        }
        .card-body h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #111827;
        }
        .card-body .price {
            color: #14d9c4;
            font-size: 1.4rem;
            font-weight: 700;
        }
        .card-body .meta {
            color: #6b7280;
            font-size: 0.85rem;
            margin-top: 8px;
        }

        /* Coming Soon Image Placeholder styles */
        .coming-soon-img {
            width: 100%;
            height: 100%;
            background: #f1f5f9;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            border-bottom: 1px solid #e2e8f0;
        }
        .coming-soon-img i {
            font-size: 3rem;
            margin-bottom: 10px;
            color: #cbd5e1;
        }
        .coming-soon-img span {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 2px;
            color: #94a3b8;
        }

        /* Features */
        .features-modern {
            background: #fff;
            padding: 70px 0;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        .feature-modern {
            text-align: center;
            padding: 20px 30px;
            position: relative;
        }
        .feature-modern::after {
            content: "";
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 180px;
            background: #e5e7eb;
        }
        .feature-modern:last-child::after {
            display: none;
        }
        .feature-icon-modern {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: rgba(20, 217, 196, 0.12);
            margin: auto auto 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            color: #14d9c4;
        }
        .feature-modern h3 {
            font-size: 1.8rem;
            margin-bottom: 18px;
            color: #111827;
        }
        .feature-modern p {
            color: #6b7280;
            line-height: 1.9;
        }

        /* EXECUTIVES SECTION STYLES */
        .elite-executives {
            position: relative;
            padding: 40px 0;
            overflow: hidden;
            background: transparent;
        }
        .elite-executives::before,
        .elite-executives::after {
            display: none;
        }
        .executive-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1550px;
            margin: auto;
        }
        .executive-heading {
            text-align: center;
            margin-bottom: 40px;
        }
        .mini-crown {
            font-size: 42px;
            color: #d09a28;
            margin-bottom: 10px;
        }
        .executive-heading h1 {
            font-family: 'Cinzel', serif;
            font-size: 110px;
            font-weight: 700;
            letter-spacing: 14px;
            line-height: 1;
            background: linear-gradient(to bottom, #ffecae, #9a5d00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: #9a5d00;
            text-shadow: 0 3px 0 rgba(255,255,255,0.8), 0 5px 15px rgba(126,72,0,0.3);
        }
        .executive-heading p {
            margin-top: 12px;
            font-size: 17px;
            letter-spacing: 8px;
            color: #43311f;
            font-weight: 600;
        }
        .heading-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-top: 16px;
        }
        .heading-divider span {
            width: 180px;
            height: 1px;
            background: #c79a58;
        }
        .diamond-shape {
            width: 12px;
            height: 12px;
            border: 2px solid #c79a58;
            transform: rotate(45deg);
        }
        .executive-row {
            position: relative;
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 24px 35px;
            border-radius: 28px;
            margin-bottom: 14px;
            border: 2px solid #e2b15b;
            overflow: hidden;
            box-shadow: 0 12px 25px rgba(0,0,0,0.08), inset 0 0 20px rgba(255,255,255,0.3);
        }
        .diamond-layout {
            position: relative;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 40px;
            overflow: hidden;
        }
        .diamond-layout::before {
            content: '';
            position: absolute;
            top: -180px;
            left: 50%;
            transform: translateX(-50%);
            width: 650px;
            height: 650px;
            background: radial-gradient(circle, rgba(255,215,0,0.18), transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .diamond-layout > * {
            position: relative;
            z-index: 2;
        }
        .diamond-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 50px;
            width: 100%;
        }
        .gem-circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #ffcb6a;
            background: radial-gradient(circle at top, rgba(255,255,255,0.55), rgba(255,255,255,0.08));
            box-shadow: 0 0 25px rgba(255,193,7,0.5), inset 0 0 25px rgba(255,255,255,0.35);
            overflow: hidden;
            position: relative;
        }
        .gem-circle img {
            width: 78%;
            height: 78%;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(255,215,0,0.45));
        }
        .gem-circle::before {
            content: '';
            position: absolute;
            inset: 10px;
            border-radius: 50%;
            border: 2px solid rgba(255,215,0,0.45);
            box-shadow: 0 0 20px rgba(255,215,0,0.55), 0 0 40px rgba(255,215,0,0.25);
            animation: gentlePulse 2.5s infinite ease-in-out;
        }
        @keyframes gentlePulse {
            0% { box-shadow: 0 0 20px rgba(255,215,0,0.7), 0 0 35px rgba(255,200,0,0.4), inset 0 0 15px rgba(255,255,200,0.6); border-color: rgba(255,230,140,0.7); }
            50% { box-shadow: 0 0 35px rgba(255,215,0,1), 0 0 55px rgba(255,200,0,0.8), inset 0 0 25px rgba(255,255,200,1); border-color: rgba(255,245,180,1); }
            100% { box-shadow: 0 0 20px rgba(255,215,0,0.7), 0 0 35px rgba(255,200,0,0.4), inset 0 0 15px rgba(255,255,200,0.6); border-color: rgba(255,230,140,0.7); }
        }
        .rank-side {
            min-width: 420px;
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .rank-text h2 {
            font-family: 'Cinzel', serif;
            font-size: 44px;
            font-weight: 700;
            line-height: 1;
            color: #7d4b00;
        }
        .rank-text h3 {
            font-family: 'Cinzel', serif;
            font-size: 28px;
            font-weight: 600;
            margin-top: 6px;
            color: #7d4b00;
        }
        .ruby-theme .rank-text h2,
        .ruby-theme .rank-text h3,
        .sapphire-theme .rank-text h2,
        .sapphire-theme .rank-text h3 {
            color: #fff3d3;
        }
        .mini-divider {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 14px;
        }
        .mini-divider span {
            width: 80px;
            height: 1px;
            background: #c59a5b;
        }
        .mini-diamond {
            width: 10px;
            height: 10px;
            border: 2px solid #c59a5b;
            transform: rotate(45deg);
        }
        .leaders-grid {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 26px;
        }
        .diamond-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        .leader-box {
            text-align: center;
        }
        .leader-photo {
            width: 100%;
            height: 240px;
            overflow: hidden;
            border-radius: 14px;
            border: 4px solid #ffcb63;
            background: #ddd;
            box-shadow: 0 8px 18px rgba(0,0,0,0.22), 0 0 18px rgba(255,183,0,0.45);
        }
        
        /* New Coming Soon Placeholder Styles for Executives */
        .coming-soon-photo {
            background: rgba(0,0,0,0.05);
            border: 4px dashed rgba(0,0,0,0.15) !important;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: rgba(0,0,0,0.3);
            box-shadow: none !important;
        }
        .coming-soon-photo i {
            font-size: 4rem;
            margin-bottom: 15px;
        }
        .coming-soon-photo span {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 2px;
        }
        .ruby-theme .coming-soon-photo,
        .sapphire-theme .coming-soon-photo {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.2) !important;
            color: rgba(255,255,255,0.5);
        }

        .leader-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .leader-meta {
            margin-top: 12px;
        }
        .leader-meta h4 {
            font-size: 20px;
            font-weight: 700;
            color: #1d1d1d;
        }
        .leader-meta p {
            margin-top: 3px;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            letter-spacing: .5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .ruby-theme .leader-meta h4,
        .ruby-theme .leader-meta p,
        .sapphire-theme .leader-meta h4,
        .sapphire-theme .leader-meta p {
            color: #fff;
        }
        .diamond-layout .gem-circle {
            width: 190px;
            height: 190px;
        }
        .diamond-rank-text {
            margin-top: 30px;
        }
        .diamond-rank-text h2 {
            font-family: 'Cinzel', serif;
            font-size: 68px;
            font-weight: 800;
            letter-spacing: 10px;
            line-height: 1;
            background: linear-gradient(to bottom, #ffefb0, #9a5d00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: #7a4b00;
            text-shadow: 0 2px 0 rgba(255,255,255,0.7), 0 8px 20px rgba(122,72,0,0.25);
        }
        .center-divider {
            justify-content: center;
            margin-top: 22px;
        }
        .diamond-layout .leaders-grid {
            width: 100%;
            max-width: 1250px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .diamond-layout .leader-photo {
            height: 360px;
        }
        .diamond-layout .leader-photo:not(.coming-soon-photo):hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.22), 0 0 35px rgba(255,183,0,0.55);
        }
        .diamond-layout .leader-photo:not(.coming-soon-photo):hover img {
            transform: scale(1.05);
        }
        .diamond-layout .leader-meta h4 {
            font-size: 24px;
            font-weight: 800;
            color: #2b1a06;
        }
        .diamond-layout .leader-meta p {
            font-size: 14px;
            font-weight: 700;
            color: #5f3d13;
        }
        .flag-img {
            width: 24px;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .diamond-theme {
            background: linear-gradient(to right, #f5e5d6, #f9f1e8, #f6e8dc);
        }
        .pearl-theme {
            background: linear-gradient(to right, #fbf5ee, #f3e7dc, #fdf7f2);
        }
        .ruby-theme {
            background: radial-gradient(circle at right, rgba(255,0,76,0.4), transparent 30%),
                        linear-gradient(to right, #640019, #aa0038, #d10045);
        }
        .sapphire-theme {
            background: radial-gradient(circle at right, rgba(0,110,255,0.35), transparent 30%),
                        linear-gradient(to right, #00194d, #002f83, #003eb1);
        }
        
        /* Media Queries */
        @media (max-width: 1200px) {
            .executive-row { flex-direction: column; align-items: flex-start; }
            .rank-side { min-width: 100%; }
            .leaders-grid { width: 100%; }
        }
        @media (max-width: 1100px) {
            .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
            .hero-line { margin: 35px auto; }
            .hero-text p { margin-left: auto; margin-right: auto; }
            .modern-hero { padding: 140px 0 80px; min-height: auto; } 
            .hero-image { justify-content: center; padding-right: 0; margin-top: 40px; }
            .shield-icon { transform: translateX(0); width: 260px; height: 260px; margin: 0 auto; }
            .shield-icon::before { width: 200px; height: 200px; }
            .shield-icon i { font-size: 4rem; }
        }
        @media (max-width: 900px) {
            .feature-modern::after, .tab-item::after { display: none; }
            .hero-text h1 { font-size: 3rem; }
            .panel-header h2 { font-size: 1.8rem; }
        }
        @media (max-width: 768px) {
            .executive-heading h1 { font-size: 58px; letter-spacing: 6px; }
            .executive-heading p { font-size: 12px; letter-spacing: 3px; }
            .rank-side { flex-direction: column; text-align: center; justify-content: center; }
            .leaders-grid { grid-template-columns: repeat(2, 1fr); }
            .diamond-grid { grid-template-columns: repeat(2, 1fr); }
            .leader-photo { height: 220px; }
            .diamond-layout .leaders-grid { grid-template-columns: repeat(2,1fr); }
            .diamond-rank-text h2 { font-size:52px; letter-spacing:5px; }
            .back-to-top { width: 40px; height: 40px; font-size: 1.2rem; bottom: 20px; right: 20px; }
        }
        @media (max-width: 600px) {
            .modern-hero { padding: 120px 0 60px; } 
            .hero-text h1 { font-size: 2.2rem; }
            .cards-grid { grid-template-columns: 1fr; }
            .tabs { gap: 15px; }
            .tab-item { padding: 5px 10px; }
            .tab-icon { width: 65px; height: 65px; font-size: 1.4rem; }
            .shield-icon { width: 200px; height: 200px; }
            .shield-icon::before { width: 160px; height: 160px; }
            .shield-icon i { font-size: 3rem; }
        }
        @media (max-width: 576px) {
            .diamond-layout .leaders-grid { grid-template-columns:1fr; }
            .diamond-layout .leader-photo { height:340px; }
            .diamond-rank-text h2 { font-size:34px; letter-spacing:3px; }
            .diamond-layout { padding:45px 25px; }
            .diamond-layout .gem-circle { width:150px; height:150px; }
        }
        @media (max-width: 520px) {
            .leaders-grid, .diamond-grid { grid-template-columns: 1fr; }
            .executive-heading h1 { font-size: 42px; }
            .leader-photo { height: 280px; }
            .executive-row { padding: 25px 20px; }
        }
        img { max-width: 100%; height: auto; }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--ch-teal);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            border: none;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: #0d9488;
            transform: translateY(-5px);
        }

        /* =========================================================
            MAANGAS PRELOADER
        ========================================================= */
        body.is-loading {
            overflow: hidden !important;
            touch-action: none; 
        }

        #infinite-preloader {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100vh;
            height: 100dvh;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        #infinite-preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: pulse-glow 2s infinite alternate ease-in-out;
        }

        .preloader-brand {
            color: #fff;
            font-family: 'Bebas Neue', sans-serif;
            font-weight: 900;
            font-size: clamp(50px, 8vw, 80px);
            line-height: 0.8;
            letter-spacing: 2px;
        }

        .preloader-slogan {
            color: var(--ch-teal);
            font-family: 'Barlow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 6px;
            font-size: clamp(10px, 2vw, 14px);
            margin-top: 8px;
        }

        .preloader-line {
            width: 0;
            height: 3px;
            background: var(--ch-teal);
            margin-top: 25px;
            border-radius: 50px;
            box-shadow: 0 0 15px var(--ch-teal);
            animation: loading-bar 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
        }

        @keyframes pulse-glow {
            0% { transform: scale(0.98); filter: drop-shadow(0 0 10px rgba(20, 184, 166, 0.1)); }
            100% { transform: scale(1.02); filter: drop-shadow(0 0 30px rgba(20, 184, 166, 0.5)); }
        }

        @keyframes loading-bar {
            0% { width: 0%; opacity: 0; }
            10% { opacity: 1; }
            100% { width: 100%; opacity: 1; }
        }

        /* =========================================================
            OWNER MODAL REDESIGN
        ========================================================= */
        .owner-link {
            color: var(--ch-teal);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .owner-link:hover {
            color: #fff;
            text-decoration: underline;
        }

        .owner-modal-content {
            border-radius: 1.5rem;
            border: none;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
        }

        .owner-img-col {
            background: linear-gradient(135deg, #0f172a 0%, #14b8a6 100%);
            position: relative;
            height: 280px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: hidden;
        }

        @media (min-width: 992px) {
            .owner-img-col {
                height: auto;
                min-height: 550px;
            }
        }

        .glow-effect {
            position: absolute;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.15);
            filter: blur(60px);
            top: 15%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        #ownerModalImg {
            width: 85%;
            max-height: 95%;
            object-fit: contain;
            object-position: bottom;
            position: absolute;
            bottom: 0;
            z-index: 2;
            filter: drop-shadow(0 -10px 25px rgba(0, 0, 0, 0.3));
            transition: transform 0.4s ease;
        }

        #ownerModalImg:hover {
            transform: scale(1.03);
        }

        .owner-text-col {
            background: #ffffff;
            padding: 2rem 1.5rem;
        }

        @media (min-width: 992px) {
            .owner-text-col {
                padding: 4rem 3.5rem;
            }
        }

        #ownerModalName {
            color: var(--ch-dark-slate);
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 10vw, 4rem);
            line-height: 1;
            margin-bottom: 0.3rem;
            word-wrap: break-word;
        }

        #ownerModalTitle {
            font-family: 'Barlow', sans-serif;
            font-weight: 700;
            color: var(--ch-teal);
            letter-spacing: 1.5px;
            font-size: clamp(0.8rem, 3.5vw, 1rem);
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .owner-bio-box {
            position: relative;
            background: var(--ch-bg-light);
            padding: 1.5rem 1.25rem 1.5rem 2.5rem;
            border-radius: 1rem;
            border-left: 4px solid var(--ch-teal);
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
        }

        .owner-bio-box .fa-quote-left {
            position: absolute;
            top: -15px;
            left: 20px;
            font-size: 2rem;
            color: var(--ch-teal);
            opacity: 0.2;
            background: #fff;
            padding: 0 10px;
            border-radius: 50%;
        }

        #ownerModalBio {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--ch-dark-slate);
            margin: 0;
        }

        .owner-linkedin {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
            padding: 14px 24px;
            background-color: #0077b5;
            color: #fff !important;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            font-family: 'Barlow', sans-serif;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 119, 181, 0.25);
            width: 100%;
        }

        @media (min-width: 576px) {
            .owner-linkedin {
                width: auto;
            }
        }

        .owner-linkedin:hover {
            background-color: #005885;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 119, 181, 0.35);
        }

        .btn-close-custom {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 1050;
            background-color: #ffffff;
            border-radius: 50%;
            padding: 0.75rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .btn-close-custom:hover {
            opacity: 1;
            transform: rotate(90deg);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }