/* ==========================================================================
   Az Meer (SMC-Private) Limited - Ultra Advanced 4D Animated UI Stylesheet
   3D Rotating Box Engine, Slide-In Animations, Responsive Precision
   ========================================================================== */

:root {
    --bg-main: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.93);
    --bg-card-hover: #ffffff;
    --bg-glass: rgba(241, 245, 249, 0.88);
    
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    
    --primary: #2563eb;
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    --accent-cyan: #06b6d4;
    --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gold-accent: #f59e0b;
    
    --border-subtle: rgba(226, 232, 240, 0.95);
    --border-accent: rgba(37, 99, 235, 0.35);
    
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
    --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.03);
    --shadow-hover: 0 24px 50px rgba(37, 99, 235, 0.18), 0 8px 24px rgba(15, 23, 42, 0.06);
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    padding: 10px;
}

/* 3D Box Frame Around Web */
.web-3d-frame {
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.22);
    border-radius: 22px;
    background: rgba(248, 250, 252, 0.72); /* Crisp Translucent - No Blur */
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 20px 60px rgba(15, 23, 42, 0.08),
        inset 0 0 35px rgba(37, 99, 235, 0.04);
    overflow: hidden;
    min-height: calc(100vh - 20px);
    transition: var(--transition);
}

.web-3d-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, #2563eb, #06b6d4, transparent);
    z-index: 102;
}

#three-canvas-container {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; pointer-events: none; overflow: hidden;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 { color: var(--text-heading); font-weight: 700; line-height: 1.25; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.25rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.75rem); }

p { margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: #1d4ed8; }

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Top Announcement Bar */
.announcement-bar {
    background: var(--primary-gradient); color: #ffffff;
    padding: 0.55rem 1.25rem; font-size: 0.875rem; font-weight: 500;
    display: flex; justify-content: space-between; align-items: center;
    position: relative; z-index: 101;
}
.announcement-bar .badge {
    background: rgba(255, 255, 255, 0.25); padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700;
}

/* ==================== FIXED NAVBAR WITH DESKTOP DROPDOWN ==================== */
.navbar-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.navbar-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 80px; gap: 1rem;
}
.brand-logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.2rem; font-weight: 800; color: var(--text-heading); flex-shrink: 0; }
.brand-logo i { font-size: 1.8rem; color: var(--primary); }

.nav-menu { display: flex; align-items: center; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.nav-link { font-size: 0.9rem; font-weight: 600; color: var(--text-body); padding: 0.45rem 0.65rem; border-radius: var(--radius-sm); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(37, 99, 235, 0.08); }

.header-actions { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }

.currency-select {
    appearance: none; background: rgba(241, 245, 249, 0.95);
    border: 1px solid var(--border-subtle); padding: 0.5rem 1.8rem 0.5rem 0.85rem;
    border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 700; cursor: pointer;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.75rem; border-radius: var(--radius-full); font-size: 0.95rem; font-weight: 600;
    cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--primary-gradient); color: #ffffff; box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); color: #ffffff; }
.btn-secondary { background: rgba(255, 255, 255, 0.95); color: var(--text-heading); border: 1px solid var(--border-subtle); }
.btn-secondary:hover { background: #ffffff; border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.85rem; }

/* DESKTOP DROPDOWN MENU */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 0.4rem; cursor: pointer; }
.nav-dropdown-toggle i.fa-chevron-down { font-size: 0.725rem; transition: transform 0.3s ease; }
.nav-dropdown:hover .nav-dropdown-toggle i.fa-chevron-down { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(14px) scale(0.95);
    background: #ffffff; border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 0.6rem; min-width: 230px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
    opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200; list-style: none; margin: 0;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(4px) scale(1);
}
.dropdown-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 0.85rem; border-radius: var(--radius-sm);
    color: var(--text-body); font-size: 0.875rem; font-weight: 600; transition: var(--transition);
}
.dropdown-item:hover { background: rgba(37, 99, 235, 0.08); color: var(--primary); transform: translateX(3px); }
.dropdown-item i { font-size: 1rem; width: 20px; color: var(--primary); }

/* Hero Section */
.hero-section { padding: 4.5rem 0; min-height: 82vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; }
.hero-badge { display: inline-flex; gap: 0.5rem; padding: 0.4rem 1.2rem; border-radius: var(--radius-full); background: rgba(37, 99, 235, 0.08); color: var(--primary); font-size: 0.875rem; font-weight: 700; margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(2.5rem, 5vw, 4.25rem); margin-bottom: 1.25rem; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-body); margin-bottom: 2rem; max-width: 620px; }
.hero-stats-row { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }

.stat-item h3 { font-size: 1.85rem; color: var(--primary); }
.stat-item p { font-size: 0.825rem; color: var(--text-muted); margin: 0; }

/* Cards & Widgets */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1200px;
    position: relative;
    overflow: hidden;
}
.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-hover);
}

.tool-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.section-padding { padding: 5rem 0; }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.section-subtitle { text-transform: uppercase; font-size: 0.85rem; font-weight: 800; color: var(--primary); letter-spacing: 0.08em; margin-bottom: 0.5rem; }

/* Grid Layouts */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

.service-icon-box {
    width: 60px; height: 60px; border-radius: var(--radius-md);
    background: var(--primary-gradient); color: #ffffff;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.service-price-tag { font-size: 1.55rem; font-weight: 800; color: var(--primary); margin: 1rem 0; }

.feature-list { list-style: none; margin: 1.25rem 0; }
.feature-list li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.925rem; margin-bottom: 0.55rem; }
.feature-list li i { color: #10b981; }

.filter-nav { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
    padding: 0.55rem 1.35rem; border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.95); border: 1px solid var(--border-subtle);
    font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #ffffff; border-color: var(--primary); }

.portfolio-img-wrapper { height: 220px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.25rem; }
.portfolio-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.glass-card:hover .portfolio-img-wrapper img { transform: scale(1.06); }

.app-card-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.25rem; }
.app-icon {
    width: 64px; height: 64px; border-radius: var(--radius-md);
    background: var(--accent-gradient); color: #ffffff;
    display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
}
.app-rating { display: flex; align-items: center; gap: 0.4rem; color: var(--gold-accent); font-weight: 700; font-size: 0.9rem; }

.team-avatar-box {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--primary-gradient); color: #ffffff;
    display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.tag-badge {
    display: inline-block; padding: 0.22rem 0.65rem; border-radius: var(--radius-full);
    background: rgba(37, 99, 235, 0.08); color: var(--primary); font-size: 0.75rem; font-weight: 700; margin-right: 0.35rem; margin-bottom: 0.35rem;
}

.faq-item { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); margin-bottom: 0.85rem; }
.faq-question { padding: 1.25rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; }
.faq-answer { padding: 0 1.25rem 1.25rem; color: var(--text-body); display: none; line-height: 1.65; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-toggle-icon { transform: rotate(180deg); }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text-heading); margin-bottom: 0.5rem; }
.form-control {
    width: 100%; padding: 0.85rem 1.2rem; border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle); background: rgba(248, 250, 252, 0.9);
    font-family: inherit; font-size: 0.95rem; color: var(--text-heading); transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); background: #ffffff; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12); }

/* ==================== 4D SLIDE-IN SCROLL REVEAL ANIMATIONS ==================== */
.slide-in-left {
    opacity: 0;
    transform: perspective(1200px) rotateY(-20deg) translateX(-70px) translateZ(-40px);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s ease;
}

.slide-in-right {
    opacity: 0;
    transform: perspective(1200px) rotateY(20deg) translateX(70px) translateZ(-40px);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s ease;
}

.slide-in-up {
    opacity: 0;
    transform: perspective(1200px) rotateX(18deg) translateY(70px) translateZ(-40px);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s ease;
}

.slide-in-left.revealed,
.slide-in-right.revealed,
.slide-in-up.revealed {
    opacity: 1;
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateX(0) translateY(0) translateZ(0px);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* Modals & Live Chat */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.5); z-index: 1000; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-container {
    background: #ffffff; width: 92%; max-width: 620px;
    border-radius: var(--radius-lg); padding: 2.25rem; position: relative;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}
.modal-close {
    position: absolute; top: 1rem; right: 1rem; background: #f1f5f9;
    border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
}

.live-chat-float {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 99;
    width: 60px; height: 60px; border-radius: 50%; background: var(--primary-gradient);
    color: #ffffff; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4); cursor: pointer;
}

.footer-section { background: #ffffff; border-top: 1px solid var(--border-subtle); padding: 4.5rem 0 2rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--text-muted); }

.mobile-toggle { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--text-heading); }

/* ==================== MOBILE & TABLET RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    body { padding: 0; }
    .web-3d-frame { border: none; border-radius: 0; box-shadow: none; background: transparent; min-height: 100vh; }
    .web-3d-frame::before { display: none; }

    .announcement-bar { padding: 0.4rem 0.75rem; font-size: 0.75rem; }
    .announcement-bar .badge { display: none; }

    .navbar-container { height: 68px; padding: 0 1rem; }
    .brand-logo { font-size: 1.05rem; }
    .brand-logo i { font-size: 1.5rem; }

    .header-actions { gap: 0.5rem; }
    .currency-select { padding: 0.35rem 1.4rem 0.35rem 0.6rem; font-size: 0.75rem; }
    .header-actions .btn-secondary { padding: 0.35rem 0.85rem; font-size: 0.785rem; }

    .nav-menu {
        position: fixed; top: 68px; left: 0; width: 100vw; height: auto; max-height: calc(100vh - 68px);
        background: #ffffff; flex-direction: column; align-items: stretch; padding: 1.25rem; gap: 0.5rem;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px;
        display: none; z-index: 1000; overflow-y: auto;
    }
    .nav-menu.active { display: flex; }

    .nav-link { font-size: 0.95rem; padding: 0.75rem 1rem; width: 100%; border-radius: 12px; background: #f8fafc; border: 1px solid #e2e8f0; }
    .mobile-toggle { display: block; margin-left: 0.25rem; }

    .dropdown-menu {
        position: static; transform: none !important; opacity: 1 !important; pointer-events: auto !important;
        box-shadow: none; border: none; padding: 0; min-width: auto; background: transparent;
        display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem;
    }
    .nav-dropdown-toggle { display: none; }

    .hero-section { padding: 2.5rem 0; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title { font-size: clamp(2rem, 7.5vw, 2.75rem); }
    .hero-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }

    .hero-cta { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
    .hero-cta .btn { width: 100%; justify-content: center; }

    .hero-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 1.75rem; padding-top: 1rem; text-align: center; }
    .stat-item h3 { font-size: 1.4rem; }
    .stat-item p { font-size: 0.725rem; }

    .section-padding { padding: 2.75rem 0; }
    .section-header { margin-bottom: 2rem; }

    .glass-card { padding: 1.35rem 1.15rem; border-radius: 20px; margin-bottom: 0.5rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }

    .portfolio-img-wrapper { height: 170px; border-radius: 14px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 576px) {
    .container { padding: 0 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .live-chat-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; font-size: 1.25rem; }
}


/* ==================== COMPLETE ELEMENT STYLING AUDIT ==================== */

/* Announcement Bar Details */
.bar-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-actions a {
    transition: var(--transition);
}

.bar-actions a:hover {
    opacity: 0.85;
}

/* Section Headings */
.section-title {
    margin-bottom: 0.85rem;
}

/* Currency Selector Positioning */
.currency-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.currency-icon {
    position: absolute;
    right: 0.75rem;
    pointer-events: none;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* App Showcase Styling */
.app-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gold-accent);
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Team Avatar Box */
.team-avatar-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

/* Forms & Inputs */
.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.45rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: rgba(248, 250, 252, 0.95);
    font-family: inherit;
    font-size: 0.925rem;
    color: var(--text-heading);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* Footer Section Complete Styles */
.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.925rem;
    line-height: 1.6;
}

.footer-col h4 {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--text-heading);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.925rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 0.85rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(241, 245, 249, 0.95);
    border: 1px solid var(--border-subtle);
    color: var(--text-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

/* Tool Box */
.tool-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}
