/* ==========================================================================
   1. GLOBAL VARIABLES & THEME CONTROL (DARK/LIGHT)
   ========================================================================== */
:root {
    --body-bg: #020617;
    --body-gradient: radial-gradient(circle at 50% 50%, #0d1b2a 0%, #020617 100%);
    --body-text: #ffffff;
    --panel-bg: rgba(255, 255, 255, 0.04);
    --accent-cyan: #22d3ee;
    --accent-purple: #a855f7;
    --accent-pink: #ff00fb;
    --border-color: rgba(0, 209, 255, 0.25);
    --brand-text: #22d3ee;
    --brand-subtext: rgba(255, 255, 255, 0.6);
    --card-list-text: #ffffff;
    
    /* Floating Navigation */
    --nav-bg: rgba(10, 12, 16, 0.7);
    --nav-text: rgba(255, 255, 255, 0.5);
    --nav-hover-bg: rgba(34, 211, 238, 0.15);
    --banner-img-bg: rgba(255, 255, 255, 0.95);

    /* Subtitle Theme Variables (Dark Mode) */
    --card-sub-cyan: #22d3ee;
    --card-sub-purple: #a855f7;
    --card-sub-pink: #ff00fb;
}

body.light {
    --body-bg: #f3f4f6; 
    --body-gradient: none;
    --body-text: #111827;
    --panel-bg: #ffffff;
    --border-color: rgba(0, 85, 204, 0.15);
    --brand-text: #0055cc;
    --brand-subtext: #4b5563;
    --card-list-text: #374151;
    
    /* Floating Navigation (Light Mode) */
    --nav-bg: rgba(255, 255, 255, 0.85);
    --nav-text: #4b5563;
    --nav-hover-bg: rgba(0, 85, 204, 0.1);
    --banner-img-bg: #ffffff;

    /* Subtitle Theme Variables (Light Mode) */
    --card-sub-cyan: #007799;
    --card-sub-purple: #7e22ce;
    --card-sub-pink: #c026d3;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--body-gradient);
    background-attachment: fixed;
    background-color: var(--body-bg) !important;
    color: var(--body-text) !important;
    font-family: 'Urbanist', 'Segoe UI', Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    transition: background 0.3s ease, color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

/* ==========================================================================
   2. FLOATING NAVIGATION BAR
   ========================================================================== */
.side-navigation {
    position: fixed;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 65px;
    background: var(--nav-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.side-navigation a {
    color: var(--nav-text);
    font-size: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.side-navigation a:hover {
    color: var(--accent-cyan);
    background: var(--nav-hover-bg);
    transform: scale(1.1);
}

body.light .side-navigation a:hover {
    color: var(--brand-text);
}

.side-navigation a::after {
    content: attr(data-title);
    position: absolute;
    left: 75px;
    background: var(--panel-bg);
    color: var(--body-text);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.side-navigation a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1150px;
    padding: 60px 20px;
    box-sizing: border-box;
}

/* --- Moving Marquee Banner --- */
.moving-banner {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 0;
    overflow: hidden;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

body.light .moving-banner {
    background: rgba(0, 0, 0, 0.02);
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: scroll 22s linear infinite !important;
    width: max-content;
    align-items: center;
}

.marquee-content img {
    height: 60px;
    width: auto;
    object-fit: contain;
    padding: 10px;
    background: var(--banner-img-bg);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Attractive University Top Logo Header Style --- */
.top-uni-logo {
    width: 190px;
    height: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    object-fit: contain;
    /* Permanent fixed beautiful glowing shadow */
    filter: drop-shadow(0 0 35px rgba(34, 211, 238, 0.85));
    transition: all 0.4s ease;
}
body.light .top-uni-logo {
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

h1 {
    font-size: clamp(38px, 7vw, 85px);
    margin: 20px 0 10px 0;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(0, 209, 255, 0.4);
    text-transform: uppercase;
}

body.light h1 {
    text-shadow: none;
}

.professional-titles {
    color: var(--accent-cyan);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.5;
}
body.light .professional-titles {
    color: var(--brand-text);
}

.subtitle {
    opacity: 0.8;
    font-size: 19px;
    margin-bottom: 40px;
    font-weight: 400;
}

/* --- Modern Glass Layout Panels --- */
.glass-panel, .project-card {
    background: var(--panel-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color) !important;
    border-radius: 30px;
    padding: clamp(25px, 5%, 45px);
    margin: 25px 0;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    cursor: pointer;
    color: var(--body-text) !important;
}

.glass-panel:hover, .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 209, 255, 0.15);
    border-color: var(--accent-cyan) !important;
}

body.light .glass-panel:hover, body.light .project-card:hover {
    box-shadow: 0 20px 40px rgba(0, 85, 204, 0.1);
    border-color: var(--brand-text) !important;
}

/* --- SPECIAL DETACHED MERCOR DESIGN STYLING --- */
.mercor-premium-panel {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.07) 0%, rgba(255, 0, 251, 0.03) 100%) !important;
    border: 2px solid rgba(168, 85, 247, 0.35) !important;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.05);
}
.mercor-premium-panel:hover {
    border-color: var(--accent-pink) !important;
    box-shadow: 0 20px 45px rgba(255, 0, 251, 0.2) !important;
}
body.light .mercor-premium-panel {
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.04) 0%, rgba(192, 38, 211, 0.02) 100%) !important;
    border-color: rgba(126, 34, 206, 0.2) !important;
}
.mercor-tag-group {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}
.mercor-tag {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 0, 251, 0.12);
    border: 1px solid rgba(255, 0, 251, 0.3);
    color: #ff66ff;
}
.mercor-tag.purple-tag {
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #c084fc;
}

/* --- Profile Container --- */
.profile-container {
    display: flex !important;
    flex-direction: row !important; 
    align-items: stretch !important;  
    justify-content: center !important;
    gap: 40px !important;
    margin: 50px 0 !important;
    width: 100% !important;
    flex-wrap: nowrap !important; 
}

.profile-img {
    width: 500px !important; 
    height: auto !important;
    border-radius: 30px !important;
    border: 3px solid var(--border-color) !important;
    object-fit: cover !important;
    flex-shrink: 0 !important; 
}

.final-identity-bar {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    margin: 20px 0;
    width: 100%;
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px !important;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

body.light .brand-box {
    background: rgba(0, 0, 0, 0.02);
}

.brand-box:hover {
    transform: translateX(8px);
    background: rgba(34, 211, 238, 0.08);
    border-color: var(--accent-cyan);
}

.brand-svg {
    width: 40px !important; 
    height: 40px !important;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.brand-info a {
    color: var(--brand-text) !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 21px !important; 
    line-height: 1.2;
}

.brand-info span {
    color: var(--brand-subtext) !important;
    font-size: 13px !important; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.strategic-statement {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.accent-line {
    width: 5px;
    height: 45px;
    background: linear-gradient(to bottom, #00d1ff, #0077ff);
    border-radius: 10px;
}

.statement-text {
    font-size: 21px !important;
    color: var(--body-text) !important;
    margin: 0;
    line-height: 1.4;
}

.bold-white { font-weight: 700; }

/* ==========================================================================
   3. ULTRA-RESOLUTION BRANDING NETWORK & EDUCATION ARCHITECTURE
   ========================================================================== */
.logo-group-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.icon-wrapper {
    width: 95px !important;
    height: 95px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    padding: 0 !important; 
    margin: 0 !important;
    border-radius: 18px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, z-index 0.2s ease !important;
    overflow: hidden;
}

.icon-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill !important; 
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.icon-wrapper.wide-pacs-card {
    width: 160px !important;
    height: 95px !important;
}

.icon-wrapper:hover, .icon-wrapper:active {
    transform: scale(1.45) translateY(-8px) !important;
    z-index: 99 !important;
    box-shadow: 0 20px 40px rgba(0, 209, 255, 0.55) !important;
}

body.light .icon-wrapper:hover, body.light .icon-wrapper:active {
    box-shadow: 0 20px 40px rgba(0, 85, 204, 0.4) !important;
}

.icon-wrapper.mega-wide-card {
    width: 155px !important;
    height: 95px !important;
}

/* Horizontal grid for education layouts */
.education-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 25px;
}

.edu-badge-capsule {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.light .edu-badge-capsule {
    background: rgba(0, 0, 0, 0.01);
}

.edu-badge-capsule:hover {
    transform: scale(1.04) translateX(5px);
    background: rgba(34, 211, 238, 0.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 25px rgba(0, 209, 255, 0.1);
}

.edu-details-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.edu-details-text strong {
    font-size: 24px;
    color: var(--body-text);
    line-height: 1.3;
}
.edu-details-text span {
    font-size: 18px;
    color: var(--brand-subtext);
    margin-top: 4px;
    font-weight: 500;
}

.sub-cyan {
    color: var(--card-sub-cyan) !important;
    font-size: 28px !important; 
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.sub-purple {
    color: var(--card-sub-purple) !important;
    font-size: 28px !important;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.sub-pink {
    color: var(--card-sub-pink) !important;
    font-size: 28px !important;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* --- Custom Responsive Grid Classes --- */
.metrics-grid {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    width: 100%;
}

.metrics-grid li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(34, 211, 238, 0.15);
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 22px;
    line-height: 1.4;
    color: var(--card-list-text);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

body.light .metrics-grid li {
    background: rgba(0, 0, 0, 0.01);
    border-color: rgba(0, 85, 204, 0.1);
}

.metrics-grid li:hover {
    transform: translateY(-3px);
    border-color: var(--accent-pink);
    background: rgba(255, 0, 251, 0.03);
    box-shadow: 0 8px 20px rgba(255, 0, 251, 0.1);
}

.mercor-grid {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    width: 100%;
}

.mercor-grid li {
    background: rgba(168, 85, 247, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 18px 20px;
    border-radius: 16px;
    font-size: 22px;
    line-height: 1.4;
    color: var(--card-list-text);
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
}

body.light .mercor-grid li {
    background: rgba(126, 34, 206, 0.02);
    border-color: rgba(126, 34, 206, 0.15);
}

.mercor-grid li:hover {
    transform: translateY(-4px);
    border-color: var(--accent-pink);
    background: rgba(255, 0, 251, 0.04);
    box-shadow: 0 8px 25px rgba(255, 0, 251, 0.15);
}

/* --- Projects Secondary Grid --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}

.card-icon-header {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    align-items: center;
}
/* --- Premium Grid Layout for All Project Card Lists --- */
.card-list { 
    list-style: none; 
    padding: 0; 
    margin: 25px 0 0 0; 
    text-align: left; 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.card-list li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px 20px 16px 32px; /* Added 32px left padding to clear the arrow icon */
    border-radius: 16px;
    font-size: 22px; 
    line-height: 1.4;
    color: var(--card-list-text);
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
}

body.light .card-list li {
    background: rgba(0, 0, 0, 0.01);
}

/* Beautiful micro-hover effect matching the premium theme */
.card-list li:hover {
    transform: translateY(-3px);
    border-color: var(--accent-pink);
    background: rgba(255, 0, 251, 0.03);
    box-shadow: 0 8px 20px rgba(255, 0, 251, 0.1);
}
.card-list li::before {
    content: "▹";
    position: absolute;
    left: 12px; /* Placed perfectly inside the capsule spacing */
    top: 16px;  /* Aligned smoothly with the first line of text */
    color: var(--accent-cyan);
    font-weight: bold;
}
body.light .card-list li::before {
    color: var(--brand-text);
}

/* --- Mega Action Call Container --- */
.mega-research-container {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0 !important; 
    perspective: 1000px;
}

.mega-research-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    width: 100% !important;
    min-height: 140px !important; 
    padding: 30px 20px !important;
    border-radius: 35px !important;
    background-size: 300% 300% !important;
    animation: mega-neon-glow 4s ease infinite !important;
    box-shadow: 0 15px 40px rgba(112, 0, 255, 0.3), 0 0 30px rgba(0, 209, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-projects {
    background: linear-gradient(45deg, #00d1ff, #0077ff, #7000ff, #00d1ff) !important;
}

.btn-publications {
    background: linear-gradient(45deg, #ff00fb, #a855f7, #ff00fb, #ff00fb) !important;
}

.mega-research-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.mega-research-btn:hover::before {
    animation: reflection-shimmer 1.4s infinite;
}

.mega-research-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(112, 0, 255, 0.5), 0 0 50px rgba(255, 0, 251, 0.4) !important;
}

.mega-research-btn h3 {
    margin: 0 !important;
    font-size: clamp(20px, 2.5vw, 28px) !important; 
    font-weight: 900 !important;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mega-research-btn span {
    font-size: 15px !important; 
    color: rgba(255, 255, 255, 0.95) !important;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    animation: text-pulse 2s ease-in-out infinite;
}

@keyframes mega-neon-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes reflection-shimmer {
    0% { left: -150%; }
    100% { left: 150%; }
}

@keyframes text-pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.03); opacity: 1; }
}

/* --- Switch Theme Button --- */
.theme-switch-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 15px 0 35px 0;
}

.modern-theme-btn {
    padding: 12px 30px !important; 
    font-size: 17px !important;
    font-weight: 700 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-cyan) !important; 
    border-radius: 50px !important;
    color: var(--body-text) !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

body.light .modern-theme-btn {
    background: #ffffff !important;
    color: #111111 !important;
    border-color: var(--brand-text) !important;
}

.modern-theme-btn:hover {
    transform: scale(1.05) translateY(-2px);
    background: var(--accent-cyan) !important;
    color: #020617 !important; 
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    body { padding-left: 20px; padding-right: 20px; }
    .side-navigation { display: none; }
}

@media (max-width: 900px) {
    .profile-container { 
        flex-direction: column !important; 
        gap: 25px !important; 
    }
    .profile-img { 
        width: 100% !important; 
        max-width: 280px !important;
        margin: 0 auto !important; 
        border-radius: 20px !important;
    }
    .education-horizontal-grid { 
        grid-template-columns: 1fr !important; 
        gap: 12px !important;
    }
    .projects-grid { 
        grid-template-columns: 1fr !important; 
        gap: 20px !important;
    }
}

@media (max-width: 600px) {
    .page-wrapper { 
        padding: 20px 20px !important; 
    }
    
    h1 { 
        font-size: 24px !important; 
        letter-spacing: 0.5px !important;
        margin: 10px 0 6px 0 !important;
    }
    .professional-titles {
        font-size: 13px !important;
        line-height: 1.4 !important;
        font-weight: 600 !important;
    }
    .subtitle {
        font-size: 12px !important;
        margin-bottom: 20px !important;
        opacity: 0.7;
    }

    .sub-cyan, .sub-purple, .sub-pink { 
        font-size: 18px !important; 
    }

    .logo-group-grid { 
        justify-content: center !important; 
        gap: 6px !important;
    }
    .icon-wrapper {
        width: 48px !important;  
        height: 48px !important;
        border-radius: 8px !important;
    }
    .icon-wrapper.wide-pacs-card {
        width: 80px !important;
        height: 48px !important;
    }
    .icon-wrapper.mega-wide-card {
        width: 80px !important;
        height: 48px !important;
    }

    .icon-wrapper:hover, .icon-wrapper:active {
        transform: scale(1.06) translateY(-1px) !important;
        box-shadow: 0 6px 15px rgba(0, 209, 255, 0.25) !important;
    }

    .card-list, .metrics-grid, .mercor-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-top: 12px !important;
    }

    .card-list li, .metrics-grid li, .mercor-grid li {
        font-size: 13px !important;
        padding: 10px 12px 10px 24px !important;
        border-radius: 10px !important;
    }

    .card-list li::before {
        left: 8px !important;
        top: 10px !important;
        font-size: 11px !important;
    }

    .edu-badge-capsule {
        flex-direction: row !important; 
        text-align: left !important;
        padding: 10px !important;
        gap: 10px !important;
        border-radius: 12px !important;
    }
    .edu-details-text strong {
        font-size: 14px !important;
    }
    .edu-details-text span {
        font-size: 11px !important;
    }

    .card-icon-header { 
        justify-content: center !important; 
        text-align: center !important;
        gap: 10px !important;
    }
    .top-uni-logo {
        width: 100px !important; 
        margin-top: 8px !important;
        margin-bottom: 8px !important;
    }

    .mega-research-container {
        margin: 20px 0 !important;
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    .mega-research-btn {
        padding: 12px 14px !important; 
        min-height: auto !important;   
        border-radius: 12px !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .mega-research-btn h3 {
        font-size: 14px !important; 
        line-height: 1.3 !important;
        letter-spacing: 0px !important;
    }
    .mega-research-btn span {
        font-size: 10px !important;
        margin-top: 4px !important;
        letter-spacing: 0.5px !important;
    }
    
    .brand-box {
        padding: 8px 10px !important;
        gap: 10px !important;
        border-radius: 10px !important;
    }
    .brand-svg {
        width: 28px !important;
        height: 28px !important;
    }
    .brand-info a {
        font-size: 15px !important;
    }
    .brand-info span {
        font-size: 10px !important;
    }
    .statement-text {
        font-size: 14px !important;
    }
    .brand-box:hover {
        transform: translateX(3px);
    }

    .moving-banner {
        padding: 8px 0 !important;
        background: rgba(255, 255, 255, 0.02) !important;
    }

    .marquee-content {
        gap: 30px !important;
    }

    .marquee-content img {
        height: 18px !important; 
        width: auto !important;
        opacity: 0.8;
    }
}

/* تصميم الزر الجذاب */
.achievment-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    margin-left: 15px;
    font-size: 14px;
}

.achievment-btn:hover {
    background: var(--accent-cyan);
    color: var(--body-bg);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--accent-cyan);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}
.tech-tags span {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    color: var(--accent-cyan);
    text-transform: uppercase;
}
.launch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    color: #020617;
    text-decoration: none;
    font-weight: 800;
    font-size: 11px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: fit-content;
}
.launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.4);
}