/* CSS Variables - Light Mode (Default) with Very Dimmed Colors */
:root {
    /* Primary Colors - Subdued */
    --primary-color: #0088CC;
    --secondary-color: #6B35C2;
    
    /* Blues - Muted */
    --dark-blue: #1A3060;
    --medium-blue: #3569C0;
    --light-blue: #D8E8F2;
    --lightest-blue: #E2EDF5;
    
    /* Neutrals for Light Theme - Soft Gray Tones */
    --white: #F7F8FA;
    --off-white: #EEF0F4;
    --light-gray-blue: #DFE5EC;
    --light-gray: #D5DBE2;
    --medium-gray: #BDC4CC;
    --gray: #95A0AD;
    --dark-gray: #48525E;
    --darker-gray: #32383F;
    --black: #000000;
    
    /* Accent Colors - Muted */
    --green: #17B17F;
    --purple: #6B35C2;
    --orange: #D47735;
    --light-purple: #EBE5F5;
    --light-green: #DEF0EA;
    
    /* Gradients - Softened */
    --gradient-primary: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    --gradient-blue: linear-gradient(135deg, #0088CC 0%, #0070AA 100%);
    --gradient-purple: linear-gradient(135deg, #6B35C2 0%, #5928A3 100%);
    --gradient-green: linear-gradient(135deg, #17B17F 0%, #108F66 100%);
    
    /* Shadows */
    --box-shadow: 0 10px 30px rgba(62, 80, 96, 0.07);
    --card-shadow: 0 15px 35px rgba(62, 80, 96, 0.08);
    --strong-shadow: 0 15px 50px rgba(62, 80, 96, 0.12);
    
    /* Other */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
    
    /* Theme Variables - Very Dimmed Light Mode */
    --bg-primary: var(--light-gray-blue);      /* Cool gray background */
    --bg-secondary: #cccfd5;          /* Soft off-white */
    --bg-tertiary: var(--light-gray);          /* Slightly darker gray for depth */
    --card-bg: #e7e8ea;                   /* Very soft white with blue undertone */
    --hero-bg: var(--lightest-blue);           /* Muted blue tone */
    --header-bg: #dcdcdc;    /* Dimmed, slightly transparent header */
    
    /* Text Colors */
    --text-primary: var(--dark-gray);
    --text-secondary: var(--dark-blue);
    --text-muted: #6D7A8A;
    
    /* Transition for Theme Switching */
    --theme-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    /* Background Colors */
    --bg-primary: #121212;
    --bg-secondary: #1E1E1E;
    --bg-tertiary: #2D2D2D;
    --card-bg: #1E1E1E;
    --hero-bg: #121212;
    --header-bg: rgba(18, 18, 18, 0.9);
    
    /* Text Colors */
    --text-primary: #E0E0E0;
    --text-secondary: #FFFFFF;
    --text-muted: #AAAAAA;
    
    /* Shadows for Dark Theme */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    --strong-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    
    /* Light colors in dark mode */
    --light-blue: rgba(0, 136, 204, 0.1);
    --lightest-blue: #121212;
    --light-gray-blue: #2A2A2A;
    --light-purple: rgba(107, 53, 194, 0.15);
    --light-green: rgba(23, 177, 127, 0.15);
}

/* Theme transition effect */
.theme-transition {
    transition: background-color 0.5s ease, color 0.5s ease !important;
}

/* Base Styles with fluid typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    font-size: 16px; /* Base font size */
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    transition: var(--theme-transition);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ====== COOKIE CONSENT EMERGENCY STYLES ====== */
/* Emergency hide for cookie elements until properly styled */
.webgen-cookie-banner:not([style*="display"]),
.webgen-cookie-modal,
.webgen-cookie-settings-btn {
    display: none !important;
}

/* Override when properly initialized (when cookie styles are loaded) */
#webgen-cookie-styles ~ body .webgen-cookie-banner,
body:has(#webgen-cookie-styles) .webgen-cookie-banner {
    display: block !important;
}

#webgen-cookie-styles ~ body .webgen-cookie-settings-btn,
body:has(#webgen-cookie-styles) .webgen-cookie-settings-btn {
    display: flex !important;
}

/* Ensure cookie elements stay above other content */
.webgen-cookie-banner {
    z-index: 9999 !important;
}

.webgen-cookie-modal {
    z-index: 10000 !important;
}

.webgen-cookie-settings-btn {
    z-index: 998 !important;
}

/* Prevent cookie HTML from appearing as plain text */
.webgen-cookie-banner:empty,
.webgen-cookie-modal:empty {
    display: none !important;
}

/* ====== END COOKIE CONSENT EMERGENCY STYLES ====== */

/* Fluid container with responsive padding */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 30px); /* Fluid padding */
    position: relative;
    z-index: 5;
}

/* Responsive typography with fluid sizing */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-secondary);
    transition: var(--theme-transition);
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

p {
    margin-bottom: 1rem;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

/* Responsive Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 30px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
}

.btn:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 183, 255, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 183, 255, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

[data-theme="dark"] .btn-secondary {
    background-color: rgba(30, 30, 30, 0.8);
    color: var(--primary-color);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn i {
    margin-right: 10px;
    font-size: 1.1em;
}

/* Section with responsive padding */
.section {
    padding: clamp(60px, 10vw, 100px) 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
    transition: var(--theme-transition);
}

.section-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: clamp(10px, 3vw, 15px);
    text-align: center;
    transition: var(--theme-transition);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-primary);
    margin-bottom: clamp(40px, 8vw, 60px);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--theme-transition);
}

.accent-text {
    position: relative;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Background Elements */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 247, 255, 0.4) 0%, rgba(248, 249, 251, 0) 100%);
    z-index: 1;
    transition: var(--theme-transition);
}

[data-theme="dark"] .bg-gradient-overlay {
    background: linear-gradient(135deg, rgba(0, 183, 255, 0.05) 0%, rgba(18, 18, 18, 0) 100%);
}

.bg-shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(50px);
    transition: var(--theme-transition);
}

.bg-shape-1 {
    top: 10%;
    right: 5%;
    width: clamp(250px, 50vw, 500px);
    height: clamp(250px, 50vw, 500px);
    background: radial-gradient(circle, rgba(13, 202, 240, 0.15) 0%, rgba(248, 249, 251, 0) 70%);
    animation: float 15s infinite alternate ease-in-out;
}

[data-theme="dark"] .bg-shape-1 {
    background: radial-gradient(circle, rgba(13, 202, 240, 0.05) 0%, rgba(18, 18, 18, 0) 70%);
}

.bg-shape-2 {
    bottom: 10%;
    left: 5%;
    width: clamp(300px, 60vw, 600px);
    height: clamp(300px, 60vw, 600px);
    background: radial-gradient(circle, rgba(140, 67, 255, 0.1) 0%, rgba(248, 249, 251, 0) 70%);
    animation: float 20s infinite alternate-reverse ease-in-out;
}

[data-theme="dark"] .bg-shape-2 {
    background: radial-gradient(circle, rgba(140, 67, 255, 0.05) 0%, rgba(18, 18, 18, 0) 70%);
}

.bg-shape-3 {
    top: 40%;
    left: 10%;
    width: clamp(150px, 30vw, 300px);
    height: clamp(150px, 30vw, 300px);
    background: radial-gradient(circle, rgba(31, 216, 158, 0.1) 0%, rgba(248, 249, 251, 0) 70%);
    animation: float 18s infinite alternate ease-in-out;
}

[data-theme="dark"] .bg-shape-3 {
    background: radial-gradient(circle, rgba(31, 216, 158, 0.05) 0%, rgba(18, 18, 18, 0) 70%);
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Stronger base background color for light theme */
    background-color: #d6dce4;
    /* More visible dots with higher opacity */
    background-image: 
        radial-gradient(rgba(0, 183, 255, 0.07) 2px, transparent 2.5px),
        radial-gradient(rgba(140, 67, 255, 0.07) 2px, transparent 2.5px);
    background-size: 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px;
    /* Overlay subtle gradient for more depth */
    box-shadow: inset 0 0 100px rgba(237, 242, 247, 0.8);
    z-index: 0;
    transition: var(--theme-transition);
}

/* Keep dark theme mostly the same but slightly enhanced */
[data-theme="dark"] .bg-pattern {
    background-color: #121212;
    background-image: 
        radial-gradient(rgba(0, 183, 255, 0.04) 2px, transparent 2.5px),
        radial-gradient(rgba(140, 67, 255, 0.04) 2px, transparent 2.5px);
    box-shadow: inset 0 0 100px rgba(18, 18, 18, 0.8);
}

[data-theme="dark"] .bg-pattern {
    background-image: 
        radial-gradient(rgba(0, 183, 255, 0.02) 2px, transparent 2px),
        radial-gradient(rgba(140, 67, 255, 0.02) 2px, transparent 2px);
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Card Component */
.card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    height: 100%;
}

[data-theme="dark"] .card {
    border-color: rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--strong-shadow);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: clamp(15px, 3vw, 30px);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Flex Layouts */
.flex {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
}

.flex-wrap {
    flex-wrap: wrap;
}

.space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mr-1 { margin-right: 0.5rem; }
.mr-2 { margin-right: 1rem; }
.mr-3 { margin-right: 1.5rem; }

.ml-1 { margin-left: 0.5rem; }
.ml-2 { margin-left: 1rem; }
.ml-3 { margin-left: 1.5rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

.slide-right {
    animation: slideRight 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ====== RESPONSIVE MEDIA QUERIES ====== */

/* Additional breakpoint for large screens */
@media (min-width: 1400px) {
    html {
        font-size: 18px;
    }
    
    .container {
        max-width: 1320px;
    }
}

/* Large Desktop */
@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet and Small Desktop */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .section {
        padding: clamp(50px, 8vw, 80px) 0;
    }
    
    /* Grid adjustments */
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Tablet Portrait and Mobile Landscape */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section {
        padding: clamp(40px, 6vw, 60px) 0;
    }
    
    /* Grid adjustments */
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Grid adjustments */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Extra-Small Mobile */
@media (max-width: 375px) {
    html {
        font-size: 12px;
    }
}

/* Handle Floating Cube Animation for Enterprise Solutions Section */
.floating-cube-animation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

.floating-cube {
    width: clamp(140px, 18vw, 180px);
    height: clamp(140px, 18vw, 180px);
    position: relative;
    transform-style: preserve-3d;
    animation: floatCube 15s infinite ease-in-out;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(30px, 5vw, 46px);
    color: var(--primary-color);
    background-color: rgba(20, 19, 19, 0.856)!important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

[data-theme="dark"] .cube-face {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.face-front {
    transform: translateZ(calc(clamp(140px, 18vw, 180px) / 2));
}

.face-back {
    transform: translateZ(calc(-1 * clamp(140px, 18vw, 180px) / 2)) rotateY(180deg);
}

.face-right {
    transform: translateX(calc(clamp(140px, 18vw, 180px) / 2)) rotateY(90deg);
}

.face-left {
    transform: translateX(calc(-1 * clamp(140px, 18vw, 180px) / 2)) rotateY(-90deg);
}

.face-top {
    transform: translateY(calc(-1 * clamp(140px, 18vw, 180px) / 2)) rotateX(90deg);
}

.face-bottom {
    transform: translateY(calc(clamp(140px, 18vw, 180px) / 2)) rotateX(-90deg);
}

.cube-shadow {
    width: clamp(140px, 18vw, 180px);
    height: 20px;
    background: radial-gradient(rgba(0, 0, 0, 0.3), transparent);
    border-radius: 50%;
    position: absolute;
    bottom: clamp(20px, 5vw, 40px);
    left: calc(50% - (clamp(140px, 18vw, 180px) / 2));
    animation: shadowPulse 15s infinite ease-in-out;
}

.visual-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, transparent 2px),
        radial-gradient(circle at 80% 70%, var(--primary-color) 0%, transparent 2px),
        radial-gradient(circle at 50% 40%, var(--primary-color) 0%, transparent 2px),
        radial-gradient(circle at 30% 80%, var(--primary-color) 0%, transparent 2px);
    background-size: 200px 200px;
    opacity: 0.2;
    animation: particlesMove 40s linear infinite;
    z-index: -1;
}

[data-theme="dark"] .visual-particles {
    opacity: 0.15;
}

/* Keep section headers full width */
.footer-col h3 {
    grid-column: 1 / -1;
}

/* CTA Section Styles */
.cta-section {
    padding: 2rem 0;
    margin: 3rem 0;
}
  
.cta-container {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    text-align: center;
}
  
.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
  
.cta-shape {
    position: absolute;
    border-radius: 50%;
}
  
.cta-shape-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 183, 255, 0.1), rgba(140, 67, 255, 0.1));
}
  
.cta-shape-2 {
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(140, 67, 255, 0.1), rgba(0, 183, 255, 0.1));
}
  
.cta-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 183, 255, 0.03) 0%, transparent 70%);
}
  
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
  
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}
  
.cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}
  
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}
  
.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
  
.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 183, 255, 0.2);
}
  
.cta-button.secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}
  
.cta-button:hover {
    transform: translateY(-5px);
}
  
.cta-button.primary:hover {
    box-shadow: 0 12px 25px rgba(0, 183, 255, 0.3);
}
  
.cta-button.secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--primary-color);
}
  
/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .cta-container {
        padding: 3rem 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
  
@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-container {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .floating-contact {
        bottom: 12px;
        right: 10px;
    }
    body.trigger-size-medium #enable-toolbar svg#enable-toolbar-trigger-svg {
        width: 32px;
        height: 38px;
    }
    body.trigger-position-left #enable-toolbar-trigger {
        left: 10px;
        top: 0px;
    }
}
@media (max-width: 576px) {
    .floating-btn {
        width: 43px;
        height: 40px;
        font-size: 1.3rem;
    }
}