    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');   
        
        /* --- GLOBAL DESIGN SYSTEM & HEADER VARS --- */
        :root {
            /* Target Code Variables */
            --primary-dark: #0f172a;
            --secondary-dark: #1e293b;
            --accent-blue: #2563eb;
            --accent-emerald: #10b981;
            --accent-pink: #FFD1D1;
            --text-main: #334155;
            --text-light: #64748b;
            --bg-main: #ffffff;
            --bg-alt: #f8fafc;
            --border-light: #e2e8f0;
            --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-hover: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
            --radius-lg: 32px;
            --radius-md: 20px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --brand-gradient: linear-gradient(135deg, var(--accent-blue), var(--accent-emerald));
            --brand-gradient-muted: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.12));
            
            /* Webgate Header Variables - ADAPTED FOR LIGHT/GLASS THEME */
            --color-bg-main: var(--bg-main);
            --color-bg-nav: rgba(248, 250, 252, 0.7); /* Light slate with transparency */
            --color-bg-dropdown: #ffffff;
            --color-bg-card: #f8fafc;
            --color-bg-icon: #f1f5f9;
            --color-text-primary: var(--primary-dark);
            --color-text-secondary: var(--text-light);
            --color-text-dark: #ffffff; /* Used for CTA text, now white on gradient */
            --color-accent-brand: var(--accent-blue);
            --color-border: var(--border-light);
            --color-border-avatar: #ffffff;
            
            --font-family: 'Inter', sans-serif;
            --radius-pill: 50px;
            --radius-sm: 8px;
            --radius-xl: 24px;
            --transition-spring: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

.premium-cta-card {
    background: radial-gradient(circle at 15% 40%, rgba(37, 61, 133, 0.5) 0%, transparent 45%), radial-gradient(circle at 85% 60%, rgba(20, 120, 110, 0.35) 0%, transparent 50%), linear-gradient(135deg, #0a1128 0%, #0d1b2a 40%, #0f2027 70%, #102b28 100%) !important;
}

         * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; color: var(--text-main); background-color: var(--bg-main); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }

        .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
        .section-padding { padding: 7rem 0; }
        .bg-alt { background-color: var(--bg-alt); }

        h1, h2, h3, h4 { color: var(--primary-dark); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; }
        .text-gradient { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }






   



        .dassys_black_icon{filter: invert(0%) sepia(6%) saturate(24%) hue-rotate(330deg) brightness(104%) contrast(100%);}
        .dassys_white_icon{filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(124deg) brightness(105%) contrast(101%);}
        .dassys_menu_icon_size_20{ width: 20px; height: auto;}
        .dassys_menu_icon_size_25{ width: 25px; height: auto;}
        .dassys_menu_icon_size_30{ width: 30px; height: auto;}
        .dassys_menu_icon_size_35{ width: 35px; height: auto;}
        .dassys_menu_icon_size_45{ width: 45px; height: auto;}


        /* Scroll Reveal Animation */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 100ms; }
        .delay-2 { transition-delay: 200ms; }
        .delay-3 { transition-delay: 300ms; }



        /* =========================================
           MAIN HEADER MENU
           ========================================= */
        .section-header { text-align: center; margin-bottom: 4rem; max-width: 850px; margin-left: auto; margin-right: auto; }
        .section-header h2 { font-size: 3.5rem; margin-bottom: 1.5rem; }
        .section-header p { color: var(--text-light); font-size: 1.25rem; font-weight: 400; line-height: 1.6; }
        .dassys-header {
            width: 100%;
            padding: 16px 0; /* Let .container handle horizontal padding */
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            background-color: #ffffff; /* Full white initially */
            color: var(--color-text-primary);
            border-bottom: 1px solid var(--color-border);
            transition: all 0.3s ease;
        }

        .dassys-header.is-scrolled {
            background-color: rgba(255, 255, 255, 0.85); /* Glassmorphism background */
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
        }

        .dassys-header__container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .dassys-header__logo {
            display: flex;
            align-items: center;
            transition: var(--transition-spring);
        }

        .dassys-header__logo:hover {
            transform: scale(1.02);
        }
        
        .dassys-header__logo img {
            height: 40px; /* Sizing the Dassys Logo properly */
        }

        .dassys-header__nav {
            background-color: var(--color-bg-nav);
            border-radius: var(--radius-pill);
            padding: 6px 8px;
            border: 1px solid rgba(0,0,0,0.05); /* Subtle border for depth */
            transition: var(--transition);
            z-index: 50;
        }

        .dassys-header__menu {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .dassys-header__menu-item {
            position: relative;
        }

        .dassys-header__menu-link {
            display: block;
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            transition: color 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dassys-header__menu-link::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--color-accent-brand);
            transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            transform: translateX(-50%);
            border-radius: 2px;
            opacity: 0;
        }

        .dassys-header__menu-link:hover,
        .dassys-header__menu-item.is-active .dassys-header__menu-link {
            color: var(--color-accent-brand);
        }

        .dassys-header__menu-link:hover::after,
        .dassys-header__menu-item.is-active .dassys-header__menu-link::after {
            width: 20px;
            opacity: 1;
        }

        .dassys-header__cta, .dassys-mega-menu__btn {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--brand-gradient);
            color: var(--color-text-dark);
            padding: 10px 10px 10px 24px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition-spring);
            box-shadow: 0 8px 20px -5px rgba(37, 99, 235, 0.2);
            border: none;
        }

        .dassys-header__cta:hover, .dassys-mega-menu__btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 30px -10px rgba(37, 99, 235, 0.4);
            color: var(--color-text-dark);
        }

        .dassys-header__cta-icon-box {
            background-color: rgba(255, 255, 255, 0.25);
            color: #ffffff;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 12px;
            overflow: hidden;
        }

        .dassys-header__cta-icon-box i {
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .dassys-header__cta:hover .dassys-header__cta-icon-box i,
        .dassys-mega-menu__btn:hover .dassys-header__cta-icon-box i {
            transform: translate(2px, -2px) scale(1.1);
        }

        .dassys-header__hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-dark);
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .dassys-header__hamburger:hover {
            color: var(--color-accent-brand);
            transform: scale(1.1);
        }

        /* Mega Menu Dropdown */
        .dassys-mega-menu {
            position: absolute;
            top: calc(100% + 40px);
            left: 50%;
            transform: translateX(-32%);
            width: 1111px;
            background-color: var(--color-bg-dropdown);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-xl);
            padding: 40px;
            display: flex;
            gap: 40px;
            box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08); /* Lighter shadow for white theme */
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.3s;
            z-index: -1;
            text-align: left;
        }

        .dassys-mega-menu::before {
            content: '';
            position: absolute;
            top: -30px;
            left: 0;
            width: 100%;
            height: 30px;
        }

        

        .dassys-header__menu-item:hover .dassys-mega-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            top: calc(100% + 20px);
            z-index: 10;
        }

        .dassys-mega-menu__intro {
            flex: 0 0 28%;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .dassys-mega-menu__badge {
            align-self: flex-start;
            background: var(--brand-gradient-muted);
            padding: 6px 12px;
            border: 1px solid rgba(37, 99, 235, 0.15);
            border-radius: var(--radius-sm);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-dark);
            text-transform: uppercase;
        }

        .dassys-mega-menu__badge::before {
            content: '';
            display: block;
            width: 6px;
            height: 6px;
            background-color: var(--accent-blue);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--accent-blue);
        }

        .dassys-mega-menu__title {
            font-size: 32px;
            line-height: 1.1;
            font-weight: 700;
            color: var(--color-text-primary);
        }

        .dassys-mega-menu__title-highlight {
            color: var(--color-accent-brand);
            transition: text-shadow 0.3s ease;
        }

        .dassys-mega-menu:hover .dassys-mega-menu__title-highlight {
            text-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
        }

        .dassys-mega-menu__desc {
            color: var(--color-text-secondary);
            font-size: 16px;
            line-height: 1.5;
        }

        .dassys-mega-menu__services {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            align-content: start;
        }

        .dassys-service-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            background-color: transparent;
            cursor: pointer;
            color: var(--color-text-primary);
        }

        .dassys-service-card:hover {
            background-color: var(--color-bg-card);
            border-color: var(--color-accent-brand);
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
        }

        .dassys-service-card__icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--color-bg-icon);
            color: var(--primary-dark);
            font-size: 16px;
            transition: var(--transition-spring);
        }

        .dassys-service-card__icon--brand {
            background: var(--brand-gradient);
            color: #fff;
        }

        .dassys-service-card:hover .dassys-service-card__icon:not(.dassys-service-card__icon--brand) {
            transform: scale(1.15) rotate(5deg);
            color: var(--color-accent-brand);
            background-color: rgba(37, 99, 235, 0.1);
        }
        
        .dassys-service-card:hover .dassys-service-card__icon.dassys-service-card__icon--brand {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
        }

        .dassys-service-card__title {
            font-size: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
            line-height: 16px;
        }
        
        .dassys-service-card:hover .dassys-service-card__title {
            color: var(--color-accent-brand);
        }

        @keyframes fadeUpStagger {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .dassys-header__menu-item:hover .dassys-service-card {
            animation: fadeUpStagger 0.4s ease forwards;
            opacity: 0; 
        }

        .dassys-header__menu-item:hover .dassys-service-card:nth-child(1) { animation-delay: 0.1s; }
        .dassys-header__menu-item:hover .dassys-service-card:nth-child(2) { animation-delay: 0.15s; }
        .dassys-header__menu-item:hover .dassys-service-card:nth-child(3) { animation-delay: 0.2s; }
        .dassys-header__menu-item:hover .dassys-service-card:nth-child(4) { animation-delay: 0.25s; }
        .dassys-header__menu-item:hover .dassys-service-card:nth-child(5) { animation-delay: 0.3s; }

        .dassys-mega-menu__cta {
            flex: 0 0 28%;
            background-color: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
            border: 1px solid var(--color-border);
            transition: border-color 0.4s ease;
        }
        
        .dassys-mega-menu__cta:hover {
            border-color: rgba(37, 99, 235, 0.3);
        }

        .dassys-mega-menu__cta-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-text-primary);
        }

        .dassys-mega-menu__cta-desc {
            color: var(--color-text-secondary);
            font-size: 16px;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .dassys-mega-menu__avatars {
            display: flex;
            justify-content: center;
            margin-bottom: 8px;
        }

        .dassys-mega-menu__avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--color-border-avatar);
            object-fit: cover;
            transition: var(--transition-spring);
            position: relative;
            z-index: 1;
            cursor: pointer;
        }

        .dassys-mega-menu__avatar:nth-child(2) {
            margin-left: -12px;
        }

        .dassys-mega-menu__avatar:hover {
            transform: scale(1.2) translateY(-4px);
            z-index: 5;
            border-color: var(--color-accent-brand);
            box-shadow: 0 6px 12px rgba(15, 23, 42, 0.15);
        }

        .dassys-mega-menu__btn {
            width: 75%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        @media (max-width: 1100px) {
            .dassys-mega-menu { width: 90vw; padding: 30px; gap: 20px; }
            .dassys-mega-menu__intro, .dassys-mega-menu__cta { flex: 0 0 25%; }
            .dassys-mega-menu__title { font-size: 24px; }
            .dassys-mega-menu__cta-title { font-size: 22px; }
        }

        @media (max-width: 992px) {
            .dassys-header { padding: 20px 0; }
            .dassys-header__nav, .dassys-header__menu-item { position: static; }
            .dassys-mega-menu {
                flex-direction: column;
                width: 90vw;
                left: 50%;
                transform: translateX(-50%);
                top: calc(100% + 20px);
                height: auto;
                max-height: 80vh;
                overflow-y: auto;
            }
            .dassys-header__menu-item:hover .dassys-mega-menu { top: 100%; }
            .dassys-mega-menu__intro, .dassys-mega-menu__cta, .dassys-mega-menu__services { flex: auto; width: 100%; }
            .dassys-header__menu-item:hover .dassys-service-card { animation: none; opacity: 1; }
        }

        @media (max-width: 768px) {
            .dassys-header__cta { display: none; }
            .dassys-header__hamburger { display: block; }
            .dassys-header__nav {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                padding: 24px;
                background-color: #ffffff;
                border-radius: 0 0 var(--radius-xl) var(--radius-xl);
                box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
                border-top: 1px solid var(--color-border);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                pointer-events: none;
                transition: var(--transition);
            }
            .dassys-header__nav.is-open {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }
            .dassys-header__menu { flex-direction: column; align-items: flex-start; width: 100%; gap: 8px; }
            .dassys-header__menu-item { width: 100%; }
            .dassys-header__menu-link { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
            .dassys-header__menu-link::after { left: 20px; transform: none; }
            .dassys-header__menu-item.has-dropdown .dassys-header__menu-link::before {
                content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 20px; transition: transform 0.3s ease;
            }
            .dassys-header__menu-item.dassys-mobile-mega-open .dassys-header__menu-link::before { transform: rotate(180deg); }
            .dassys-mega-menu {
                position: static; width: 100%; transform: none !important; background-color: transparent; border: none; box-shadow: none; padding: 10px 10px 20px 10px; margin-top: 0; display: none; opacity: 0; visibility: hidden; top: auto; left: auto;
            }
            .dassys-mega-menu::before { display: none; }
            .dassys-header__menu-item:hover .dassys-mega-menu:not(.dassys-mobile-mega-open .dassys-mega-menu) { opacity: 0; visibility: hidden; pointer-events: none; display: none; }
            .dassys-header__menu-item.dassys-mobile-mega-open .dassys-mega-menu { display: flex; opacity: 1; visibility: visible; pointer-events: auto; animation: fadeUpStagger 0.4s ease forwards; }
            .dassys-mega-menu__services { grid-template-columns: 1fr; }
        }











        /* =========================================
           BUTTONS
           ========================================= */
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2.2rem; border-radius: 100px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); border: none; gap: 0.75rem; }
        .btn-primary { background: var(--brand-gradient); color: #ffffff; box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3); }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 35px -10px rgba(37, 99, 235, 0.5); }
        .btn-outline { background-color: transparent; color: #ffffff; border: 2px solid rgba(255, 255, 255, 0.2); }
        .btn-outline:hover { background: #ffffff; color: var(--primary-dark) !important; border-color: #ffffff; transform: translateY(-3px); }
        .btn-dark { background-color: var(--primary-dark); color: #ffffff !important; }
        .btn-dark:hover { background-color: #000; transform: translateY(-3px); box-shadow: var(--shadow-hover); }



        /* =========================================
           TOP BADGE
           ========================================= */
        .badge {
            display: inline-flex; align-items: center; gap: 10px; padding: 0.5rem 1.25rem; 
            background: var(--brand-gradient-muted); color: var(--bg-main);
            border: 1px solid rgba(37, 99, 235, 0.15); border-radius: 50px; font-size: 14px; font-weight: 600; text-transform: uppercase;
             margin-bottom: 1.5rem;
        }
        .badge span { width: 8px; height: 8px; background-color: var(--accent-blue); border-radius: 50%; box-shadow: 0 0 10px var(--accent-blue); }

        .badge-dark {
            display: inline-flex; align-items: center; gap: 10px; padding: 0.5rem 1.25rem; 
            background: var(--brand-gradient-muted); color: var(--primary-dark);
            border: 1px solid rgba(37, 99, 235, 0.15); border-radius: 50px; font-size: 14px; font-weight: 600; text-transform: uppercase;
             margin-bottom: 1.5rem;
        }


        /* =========================================
           PAGE HERO SECTION
           ========================================= */
        .hero {
            padding-top: 200px; padding-bottom: 120px; background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.15), transparent 40%), radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.15), transparent 40%);
            color: white; text-align: center;
            margin-top: 0; 
        }
        .hero h1 { font-size: 4rem; color: white; margin-bottom: 1.5rem; line-height: 1.1; max-width: 900px; margin-left: auto; margin-right: auto; }
        .hero p { font-size: 1.25rem; color: #94a3b8; max-width: 700px; margin: 0 auto 3rem auto; line-height: 1.7; }

        /* Page Hero Section */
        .page-hero {
            padding-top: 180px; padding-bottom: 80px;
            background-color: var(--primary-dark);
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.15), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.15), transparent 25%);
            color: white; text-align: center; position: relative;
        }
        .page-hero h1 { font-size: 3.5rem; color: white; margin-bottom: 1.5rem; }
        .page-hero p { font-size: 1.25rem; color: #94a3b8; max-width: 700px; margin: 0 auto; line-height: 1.7; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px; padding: 0.5rem 1.25rem;
            background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; color: #e2e8f0;
        }






































        /* FOOTER */

        .mega-footer {
            background-color: #09090b; color: #ffffff; padding-top: 5rem; position: relative; overflow: hidden; border-top: 1px solid #e2e8f0;
        }
        .mega-footer-glow {
            position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px;
            background: rgba(30, 58, 138, 0.05); filter: blur(120px); pointer-events: none;
        }
        .mega-footer-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; position: relative; z-index: 10; margin-bottom: 4rem;
        }
        .mf-section { margin-bottom: 3rem; }
        .mf-title {
            font-size: 1.125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.025em; margin-bottom: 1rem; line-height: 1.4; color: #ffffff;
        }
        .mf-divider { height: 2px; width: 4rem; border-radius: 9999px; margin-bottom: 1.5rem; opacity: 0.8; }
        .mf-divider.blue-amber { background: linear-gradient(to right, #3b82f6, #f43f5e, #f59e0b); }
        .mf-divider.indigo-pink { background: linear-gradient(to right, #6366f1, #a855f7, #ec4899); }
        .mf-divider.yellow-orange { background: linear-gradient(to right, #eab308, #f59e0b, #f97316); }
        .mf-divider.rose-orange { background: linear-gradient(to right, #f43f5e, #ef4444, #f97316); }
        .mf-divider.cyan-indigo { background: linear-gradient(to right, #22d3ee, #3b82f6, #6366f1); }
        .mf-divider.amber-rose { background: linear-gradient(to right, #fbbf24, #f97316, #f43f5e); }
        .mf-divider.zinc { background: linear-gradient(to right, #d4d4d8, #a1a1aa, #71717a); }
        .mf-divider.emerald-cyan { background: linear-gradient(to right, #34d399, #14b8a6, #06b6d4); }
        .mf-list { list-style: none; padding: 0; margin: 0; }
        .mf-list li { margin-bottom: 0.75rem; }
        .mf-list a { display: inline-flex; align-items: center; gap: 0.5rem; color: #a1a1aa; font-size: 1rem; transition: all 0.3s ease; text-decoration: none; }
        .mf-dot { width: 4px; height: 4px; border-radius: 50%; background-color: #3f3f46; transition: background-color 0.3s ease; }
        .mf-list a:hover { color: #ffffff; }
        .mf-list a:hover .mf-dot { background-color: #3b82f6; }
        .mf-socials { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
        .mf-social-icon {
            width: 36px; height: 36px; border-radius: 50%; background-color: #18181b; border: 1px solid #27272a;
            display: flex; align-items: center; justify-content: center; color: #a1a1aa; transition: all 0.3s ease; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        }
        .mf-social-icon svg { width: 16px; height: 16px; fill: currentColor; }
        .mf-social-icon:hover { color: #ffffff; transform: translateY(-4px); }
        .mf-social-icon.fb:hover { border-color: #3b5998; background-color: rgba(59,89,152,0.2); }
        .mf-social-icon.in:hover { border-color: #0077b5; background-color: rgba(0,119,181,0.2); }
        .mf-social-icon.ig:hover { border-color: #ec4899; background: linear-gradient(to top right, rgba(250,204,21,0.2), rgba(236,72,153,0.2), rgba(147,51,234,0.2)); }
        .mf-social-icon.be { font-size: 12px; font-weight: bold; }
        .mf-social-icon.be:hover { border-color: #1769ff; background-color: rgba(23,105,255,0.2); }
        .mf-social-icon.pi:hover { border-color: #bd081c; background-color: rgba(189,8,28,0.2); }
        .mf-social-icon.wa:hover { border-color: #25d366; background-color: rgba(37,211,102,0.2); }
        .mf-social-icon.sk { font-size: 12px; font-weight: bold; }
        .mf-social-icon.sk:hover { border-color: #00aff0; background-color: rgba(0,175,240,0.2); }
        .mf-terms { font-size: 0.875rem; color: #71717a; font-weight: 500; letter-spacing: 0.025em; }
        .mf-terms a { color: inherit; transition: color 0.3s; margin: 0 5px; }
        .mf-terms a:hover { color: #ffffff; }
        .mf-contact-box {
            margin-top: 2.5rem; position: relative; border-radius: 1rem; padding: 1px;
            background: linear-gradient(to bottom, #27272a, #18181b);  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
        }
        .mf-contact-box-glow {
            position: absolute; inset: 0; background: linear-gradient(to right, rgba(245,158,11,0.2), rgba(249,115,22,0.2), rgba(244,63,94,0.2));
            opacity: 0; transition: opacity 0.7s ease;
        }
        .mf-contact-box:hover .mf-contact-box-glow { opacity: 1; }
        .mf-contact-inner {
            position: relative; background: rgba(9,9,11,0.9); backdrop-filter: blur(12px); border-radius: 1rem; padding: 1.5rem; text-align: center;
            border: 1px solid rgba(39,39,42,0.5); height: 100%; display: flex; flex-direction: column; justify-content: center;    margin-left: -50px !important;
    left: -60px !important;
        }
        .mf-contact-subtitle { color: #a1a1aa; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
        .mf-contact-team { display: flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 1rem; margin-bottom: 1rem; font-weight: 500; }
        .mf-contact-team-line { width: 2rem; height: 1px; }
        .mf-contact-team-line.left { background: linear-gradient(to right, transparent, rgba(251,191,36,0.5)); }
        .mf-contact-team-line.right { background: linear-gradient(to left, transparent, rgba(251,191,36,0.5)); }
        .mf-contact-team-text { background: linear-gradient(to right, #fcd34d, #fb923c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 0.025em; }
        .mf-contact-phone {
            color: #ffffff; font-size: 1.875rem; font-weight: 800; letter-spacing: -0.025em; margin-top: 0;
            background: linear-gradient(to bottom right, #ffffff, #e4e4e7, #71717a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: transform 0.5s ease;
        }
        .mf-contact-box:hover .mf-contact-phone { transform: scale(1.05); }
        .mf-bottom { margin-top: 5rem; border-top: 1px solid #18181b; background-color: #050505; padding: 1.5rem 0; position: relative; z-index: 10; }
        .mf-bottom-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: space-between; }
        @media (min-width: 768px) { .mf-bottom-inner { flex-direction: row; } }
        .mf-brand { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
        .mf-brand-icon {
            width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: linear-gradient(to bottom right, #27272a, #18181b); border: 1px solid #27272a;
            display: flex; align-items: center; justify-content: center; color: #ffffff; font-weight: 700; font-size: 1.125rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transition: border-color 0.3s ease;
        }
        .mf-brand:hover .mf-brand-icon { border-color: #52525b; }
        .mf-brand-text { display: flex; flex-direction: column; }
        .mf-brand-text-top { color: #ffffff; font-weight: 800; font-size: 1rem; letter-spacing: 0.2em; line-height: 1; margin-bottom: 0.25rem; }
        .mf-brand-text-bottom { color: #71717a; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.3em; line-height: 1.2; }
        .mf-copyright { font-size: 0.875rem; color: #52525b; font-weight: 500; letter-spacing: 0.025em; }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
            .mega-footer-grid { grid-template-columns: 1fr 1fr; }
            .contact-form-wrapper { padding: 2.5rem; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .page-hero { padding-top: 130px; padding-bottom: 60px; }
            .page-hero h1 { font-size: 2.5rem; }
            .contact-grid { margin-top: 0; padding-top: 2rem; }
            .form-grid { grid-template-columns: 1fr; }
            .mega-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .mf-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
            .contact-form-wrapper { padding: 2rem 1.5rem; }
        }






        /* CONTACT US PAGE */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            margin-top: -40px;
            position: relative;
            z-index: 10;
        }

        /* Contact Info Cards */
        .contact-info-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-card {
            background: var(--bg-main);
            padding: 2.5rem 2rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: #bfdbfe;
        }

        .info-icon {
            width: 54px;
            height: 54px;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            color: var(--accent-blue);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.5rem;
        }

        .info-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .info-content p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
        }
        .info-content a:hover {
            color: var(--accent-blue);
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--bg-main);
            padding: 3.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-hover);
        }

        .contact-form-wrapper h2 {
            font-size: 2.25rem;
            margin-bottom: 0.5rem;
        }

        .contact-form-wrapper > p {
            color: var(--text-light);
            margin-bottom: 2.5rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--primary-dark);
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 1px solid var(--border-light);
            border-radius: 12px;
            background-color: var(--bg-alt);
            font-family: inherit;
            font-size: 1rem;
            color: var(--text-main);
            transition: var(--transition);
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-blue);
            background-color: var(--bg-main);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Locations / Map Section */
        .locations-section {
            background-color: var(--bg-main);
        }

        .map-wrapper {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-soft);
            height: 500px;
            background-color: #e2e8f0;
            position: relative;
        }
        
        .map-placeholder {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80') center/cover;
            filter: grayscale(0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .map-overlay {
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(8px);
            padding: 2rem 3rem;
            border-radius: var(--radius-md);
            color: white;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .map-overlay h3 { color: white; font-size: 1.5rem; margin-bottom: 0.5rem; }
        
        
 /* FOOTER */

        .mega-footer {
            background-color: #09090b; color: #ffffff; padding-top: 5rem; position: relative; overflow: hidden; border-top: 1px solid #e2e8f0;
        }
        .mega-footer-glow {
            position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px;
            background: rgba(30, 58, 138, 0.05); filter: blur(120px); pointer-events: none;
        }
        .mega-footer-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; position: relative; z-index: 10; margin-bottom: 4rem;
        }
        .mf-section { margin-bottom: 3rem; }
        .mf-title {
            font-size: 1.125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.025em; margin-bottom: 1rem; line-height: 1.4; color: #ffffff;
        }
        .mf-divider { height: 2px; width: 4rem; border-radius: 9999px; margin-bottom: 1.5rem; opacity: 0.8; }
        .mf-divider.blue-amber { background: linear-gradient(to right, #3b82f6, #f43f5e, #f59e0b); }
        .mf-divider.indigo-pink { background: linear-gradient(to right, #6366f1, #a855f7, #ec4899); }
        .mf-divider.yellow-orange { background: linear-gradient(to right, #eab308, #f59e0b, #f97316); }
        .mf-divider.rose-orange { background: linear-gradient(to right, #f43f5e, #ef4444, #f97316); }
        .mf-divider.cyan-indigo { background: linear-gradient(to right, #22d3ee, #3b82f6, #6366f1); }
        .mf-divider.amber-rose { background: linear-gradient(to right, #fbbf24, #f97316, #f43f5e); }
        .mf-divider.zinc { background: linear-gradient(to right, #d4d4d8, #a1a1aa, #71717a); }
        .mf-divider.emerald-cyan { background: linear-gradient(to right, #34d399, #14b8a6, #06b6d4); }
        .mf-list { list-style: none; padding: 0; margin: 0; }
        .mf-list li { margin-bottom: 0.25rem; }
        .mf-list a { display: inline-flex; align-items: center; color: #a1a1aa; font-size: 1rem; transition: color 0.3s ease; text-decoration: none; }
        .mf-list a:hover { color: #ffffff; }
        
        /* --- Premium Footer Hover Animation (Rolling Text Only) --- */
        .roll-text {
            position: relative;
            display: inline-flex;
            overflow: hidden;
            color: inherit;
        }

        .roll-text span {
            display: inline-block;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .roll-text::after {
            content: attr(data-text);
            position: absolute;
            top: 100%;
            left: 0;
            color: #ffffff;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mf-list a:hover .roll-text span {
            transform: translateY(-100%);
        }

        .mf-list a:hover .roll-text::after {
            transform: translateY(-100%);
        }
         
        .mf-dot { width: 4px; height: 4px; border-radius: 50%; background-color: #3f3f46; transition: background-color 0.3s ease; }
        .mf-list a:hover .mf-dot { background-color: #3b82f6; }
        .mf-socials { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
        .mf-social-icon {
            width: 36px; height: 36px; border-radius: 50%; background-color: #18181b; border: 1px solid #27272a;
            display: flex; align-items: center; justify-content: center; color: #a1a1aa; transition: all 0.3s ease; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        }
        .mf-social-icon svg { width: 16px; height: 16px; fill: currentColor; }
        .mf-social-icon:hover { color: #ffffff; transform: translateY(-4px); }
        .mf-social-icon.fb:hover { border-color: #3b5998; background-color: rgba(59,89,152,0.2); }
        .mf-social-icon.in:hover { border-color: #0077b5; background-color: rgba(0,119,181,0.2); }
        .mf-social-icon.ig:hover { border-color: #ec4899; background: linear-gradient(to top right, rgba(250,204,21,0.2), rgba(236,72,153,0.2), rgba(147,51,234,0.2)); }
        .mf-social-icon.be { font-size: 12px; font-weight: bold; }
        .mf-social-icon.be:hover { border-color: #1769ff; background-color: rgba(23,105,255,0.2); }
        .mf-social-icon.pi:hover { border-color: #bd081c; background-color: rgba(189,8,28,0.2); }
        .mf-social-icon.wa:hover { border-color: #25d366; background-color: rgba(37,211,102,0.2); }
        .mf-social-icon.sk { font-size: 12px; font-weight: bold; }
        .mf-social-icon.sk:hover { border-color: #00aff0; background-color: rgba(0,175,240,0.2); }
        .mf-terms { font-size: 0.875rem; color: #71717a; font-weight: 500; letter-spacing: 0.025em; }
        .mf-terms a { color: inherit; transition: color 0.3s; margin: 0 5px; }
        .mf-terms a:hover { color: #ffffff; }
        .mf-contact-box {
            margin-top: 2.5rem; position: relative; border-radius: 1rem; padding: 1px;
            background: linear-gradient(to bottom, #27272a, #18181b);  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
        }
        .mf-contact-box-glow {
            position: absolute; inset: 0; background: linear-gradient(to right, rgba(245,158,11,0.2), rgba(249,115,22,0.2), rgba(244,63,94,0.2));
            opacity: 0; transition: opacity 0.7s ease;
        }
        .mf-contact-box:hover .mf-contact-box-glow { opacity: 1; }
        .mf-contact-inner {
            position: relative; background: rgba(9,9,11,0.9); backdrop-filter: blur(12px); border-radius: 1rem; padding: 1.5rem; text-align: center;
            border: 1px solid rgba(39,39,42,0.5); height: 100%; display: flex; flex-direction: column; justify-content: center;    margin-left: -50px !important;
    left: -60px !important;
        }
        .mf-contact-subtitle { color: #a1a1aa; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
        .mf-contact-team { display: flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 1rem; margin-bottom: 1rem; font-weight: 500; }
        .mf-contact-team-line { width: 2rem; height: 1px; }
        .mf-contact-team-line.left { background: linear-gradient(to right, transparent, rgba(251,191,36,0.5)); }
        .mf-contact-team-line.right { background: linear-gradient(to left, transparent, rgba(251,191,36,0.5)); }
        .mf-contact-team-text { background: linear-gradient(to right, #fcd34d, #fb923c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 0.025em; }
        .mf-contact-phone {
            color: #ffffff; font-size: 1.875rem; font-weight: 800; letter-spacing: -0.025em; margin-top: 0;
            background: linear-gradient(to bottom right, #ffffff, #e4e4e7, #71717a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: transform 0.5s ease;
        }
        .mf-contact-box:hover .mf-contact-phone { transform: scale(1.05); }
        .mf-bottom { margin-top: 5rem; border-top: 1px solid #18181b; background-color: #050505; padding: 1.5rem 0; position: relative; z-index: 10; }
        .mf-bottom-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; justify-content: space-between; }
        @media (min-width: 768px) { .mf-bottom-inner { flex-direction: row; } }
        .mf-brand { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
        .mf-brand-icon {
            width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: linear-gradient(to bottom right, #27272a, #18181b); border: 1px solid #27272a;
            display: flex; align-items: center; justify-content: center; color: #ffffff; font-weight: 700; font-size: 1.125rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transition: border-color 0.3s ease;
        }
        .mf-brand:hover .mf-brand-icon { border-color: #52525b; }
        .mf-brand-text { display: flex; flex-direction: column; }
        .mf-brand-text-top { color: #ffffff; font-weight: 800; font-size: 1rem; letter-spacing: 0.2em; line-height: 1; margin-bottom: 0.25rem; }
        .mf-brand-text-bottom { color: #71717a; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.3em; line-height: 1.2; }
        .mf-copyright { font-size: 0.875rem; color: #52525b; font-weight: 500; letter-spacing: 0.025em; }

         

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
            .mega-footer-grid { grid-template-columns: 1fr 1fr; }
            .contact-form-wrapper { padding: 2.5rem; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .page-hero { padding-top: 130px; padding-bottom: 60px; }
            .page-hero h1 { font-size: 2.5rem; }
            .contact-grid { margin-top: 0; padding-top: 2rem; }
            .form-grid { grid-template-columns: 1fr; }
            .mega-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .mf-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
            .contact-form-wrapper { padding: 2rem 1.5rem; }
        }

 
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        