/* Unified custom styles across all pages */
:root {
      --primary: #0d6efd;
      --primary-dark: #0b5ed7;
      --dark: #212529;
      --light: #f8f9fa;
      --white: #ffffff;
      --gray: #6c757d;
      --gray-light: #e9ecef;
      --success: #198754;
      --danger: #dc3545;
      --border-radius: 16px;
      --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
 
.bg-lefts {
    width: 100%;
    height: 600px;
    display: block;
    background: url(/assets/images/bg-left.png) no-repeat;
    position: absolute;
    z-index: -10;
}

.profile-card {
    clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80%, 0% 20%);
    transition: all 0.3s ease;
}
.skill-pill:hover {
        transform: scale(1.05);
    }
.profile-card:hover {
    transform: translateY(-5px);
}
.cool-bg {
    background: linear-gradient(135deg, 
        rgba(167, 139, 250, 0.1) 0%, 
        rgba(147, 197, 253, 0.1) 25%, 
        rgba(167, 139, 250, 0.1) 50%, 
        rgba(147, 197, 253, 0.1) 75%, 
        rgba(167, 139, 250, 0.1) 100%);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(147, 197, 253, 0.3);
}
.game-card {
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.section-bg {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.8) 0%, rgba(224, 231, 255, 0.8) 100%);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.journey-item {
    transition: all 0.3s ease;
}

.journey-item:hover {
    transform: translateX(10px);
}

.skill-bar {
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s ease;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
    100% { opacity: 0.5; transform: translateY(0); }
  }
  .scroll-mouse {
    animation: scroll-down 2s infinite ease-in-out;
  }
  .scroll-wheel {
    animation: pulse 1.5s infinite ease-in-out;
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }
  .status-message {
      text-align: center;
      padding: 20px;
      margin: 30px 0;
      border-radius: var(--border-radius);
      font-weight: 600;
      font-size: 1.1rem;
       
      border: 2px solid transparent;
      
       
    }

    .success {
      background: #d4edda;
      color: var(--success);
      border-color: #c3e6cb;
    }

    .error {
      background: #f8d7da;
      color: var(--danger);
      border-color: #f5c6cb;
    }

    .success-icon {
      color: var(--success);
      font-size: 2.5rem;
      margin: 10px 0;
    }

    .error-icon {
      color: var(--danger);
      font-size: 2.5rem;
      margin: 10px 0;
    }


    /*-------------------*/
    
  /* Card Animation */
  .animate-scale-up-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s ease;
  }
  .animate-scale-up-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Progress Bar Animation */
  .skill-progress {
    width: 0%;
    transition: width 2s ease-in-out;
  }
 
  /* === Base Animation === */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* === Fade Up === */
  .animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  .animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* === Fade Left === */
  .animate-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
  }
  .animate-fade-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* === Fade Right === */
  .animate-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
  }
  .animate-fade-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* === Scale In === */
  .animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
  }
  .animate-scale-in.visible {
    opacity: 1;
    transform: scale(1);
  }
 
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Fade Up Animation */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive text */
h2, h3 { line-height: 1.3; }





.download-btn {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #6b46c1, #3182ce);
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s;
}

.download-btn:hover {
  background: linear-gradient(135deg, #553C9A, #2B6CB0);
}

/* الأدراج العلوية والسفلية */
.download-btn .drawer {
  position: absolute;
  left: 0;
  right: 0;
  height: 20%;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  transition: transform 0.3s;
}

.download-btn .drawer.top {
  top: -100%;
  transform: translateY(0);
}

.download-btn .drawer.bottom {
  bottom: -100%;
  transform: translateY(0);
}

/* عند المرور بالماوس */
.download-btn:hover .drawer.top {
  transform: translateY(100%);
}
.download-btn:hover .drawer.bottom {
  transform: translateY(-100%);
}


.coming-soon-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.group:hover .coming-soon-overlay {
  opacity: 1;
}
 

 /* Mascot Styles */
        .mascot-container {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            pointer-events: none;
        }

        .mascot-img {
            width: 150px;
            height: auto;
            cursor: grab;
            pointer-events: auto;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
            transition: transform 0.1s ease-out;
            transform-origin: bottom center;
            animation: breathing 3s ease-in-out infinite;
            -webkit-user-drag: none;
            user-select: none;
        }

        .mascot-img:active {
            cursor: grabbing;
        }

        .dragging {
            transition: none !important;
        }

        .dragging .mascot-img {
            animation: none;
        }

        .speech-bubble {
            background-color: white;
            color: #1a1a2e;
            padding: 12px 20px;
            border-radius: 20px;
            border-bottom-left-radius: 0;
            margin-bottom: 15px;
            margin-left: 20px;
            font-weight: 500;
            font-size: 0.95rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e7eb;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            pointer-events: auto;
            max-width: 250px;
            text-align: center;
        }

        .speech-bubble.show {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes breathing {
            0%, 100% {
                transform: scaleY(1) scaleX(1) translateY(0);
            }
            50% {
                transform: scaleY(0.97) scaleX(1.02) translateY(3px);
            }
        }

        @keyframes walk {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-8px) rotate(-5deg);
            }
            50% {
                transform: translateY(0) rotate(0deg);
            }
            75% {
                transform: translateY(-8px) rotate(5deg);
            }
        }

        /* Game Card Hover */
        .game-card {
            transition: all 0.3s ease;
        }

        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Badge Styles */
        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            color: #4b5563;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mascot-container {
                bottom: 20px;
                left: 20px;
            }
            .mascot-img {
                width: 100px;
            }
            .speech-bubble {
                font-size: 0.85rem;
                padding: 8px 15px;
                margin-bottom: 10px;
                max-width: 200px;
            }
        }




        /* ============================================
   Hero Image with Interactive Bubbles
   ============================================ */

 

 

 

/* ---- Bubble Container ---- */
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

/* ============================================
   HERO IMAGE WITH INTERACTIVE BUBBLES
   ============================================ */

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-profile-image {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    cursor: pointer;
    -webkit-user-drag: none;
    user-select: none;
    width: 100%;
    height: auto;
}

.hero-profile-image:hover {
    transform: scale(1.04);
     
}

/* ---- Bubble Container ---- */
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

/* ---- Individual Bubble ---- */
.skill-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.3px;
    user-select: none;
    transition: none;
}

/* Bubble color variants */
.skill-bubble.color-1 { background: rgba(139, 92, 246, 0.88); color: #fff; border-color: rgba(139, 92, 246, 0.4); }
.skill-bubble.color-2 { background: rgba(99, 102, 241, 0.88); color: #fff; border-color: rgba(99, 102, 241, 0.4); }
.skill-bubble.color-3 { background: rgba(236, 72, 153, 0.88); color: #fff; border-color: rgba(236, 72, 153, 0.4); }
.skill-bubble.color-4 { background: rgba(16, 185, 129, 0.88); color: #fff; border-color: rgba(16, 185, 129, 0.4); }
.skill-bubble.color-5 { background: rgba(245, 158, 11, 0.88); color: #fff; border-color: rgba(245, 158, 11, 0.4); }
.skill-bubble.color-6 { background: rgba(239, 68, 68, 0.88); color: #fff; border-color: rgba(239, 68, 68, 0.4); }
.skill-bubble.color-7 { background: rgba(6, 182, 212, 0.88); color: #fff; border-color: rgba(6, 182, 212, 0.4); }
.skill-bubble.color-8 { background: rgba(168, 85, 247, 0.88); color: #fff; border-color: rgba(168, 85, 247, 0.4); }
.skill-bubble.color-9 { background: rgba(251, 146, 60, 0.88); color: #fff; border-color: rgba(251, 146, 60, 0.4); }
.skill-bubble.color-10 { background: rgba(34, 197, 94, 0.88); color: #fff; border-color: rgba(34, 197, 94, 0.4); }

.skill-bubble .bubble-icon {
    margin-right: 6px;
    font-size: 0.7rem;
}

/* ---- Bubble Animation: Burst Outward ---- */
.skill-bubble.burst-out {
    animation: heroBubbleBurst var(--duration, 1.2s) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Stay visible after burst */
.skill-bubble.burst-out.visible {
    animation: none;
    opacity: 1 !important;
    transform: translate(calc(-50% + var(--tx3)), calc(-50% + var(--ty3))) scale(1) !important;
}

/* ---- Retract Animation ---- */
.skill-bubble.retract {
    animation: heroBubbleRetract 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ---- Keyframes ---- */
@keyframes heroBubbleBurst {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    20% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(calc(-50% + var(--tx1)), calc(-50% + var(--ty1))) scale(1.05);
        opacity: 1;
    }
    80% {
        transform: translate(calc(-50% + var(--tx2)), calc(-50% + var(--ty2))) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(calc(-50% + var(--tx3)), calc(-50% + var(--ty3))) scale(1);
        opacity: 1;
    }
}

@keyframes heroBubbleRetract {
    0% {
        transform: translate(calc(-50% + var(--tx3)), calc(-50% + var(--ty3))) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
}

/* ---- Hover Hint ---- */
.hover-hint {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.7rem;
    color: #6b7280;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 10;
    font-weight: 500;
    pointer-events: none;
}

.hero-image-wrapper:hover .hover-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero-image-wrapper {
        max-width: 350px;
    }
    .skill-bubble {
        font-size: 0.6rem;
        padding: 5px 12px;
    }
    .skill-bubble .bubble-icon {
        font-size: 0.6rem;
        margin-right: 4px;
    }
    .hover-hint {
        font-size: 0.6rem;
        padding: 4px 14px;
        bottom: -8px;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        max-width: 280px;
    }
    .skill-bubble {
        font-size: 0.5rem;
        padding: 4px 10px;
    }
    .skill-bubble .bubble-icon {
        font-size: 0.5rem;
        margin-right: 3px;
    }
    .hover-hint {
        font-size: 0.55rem;
        padding: 3px 12px;
    }
}




/* ============================================================
   REDESIGNED ABOUT ME SECTION – Additional Styles
   ============================================================ */

/* ─── Section Container ─── */
.about-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
  
.about-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at 70% 30%, rgba(139, 92, 246, 0.06), transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}
.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at 30% 70%, rgba(99, 102, 241, 0.05), transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

/* ─── Profile Image Wrapper ─── */
.profile-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}
.profile-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(from 0deg, #8b5cf6, #6366f1, #8b5cf6, #a78bfa, #8b5cf6);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #fff calc(100% - 3px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #fff calc(100% - 3px));
    animation: spinRing 8s linear infinite;
    z-index: 0;
}
.profile-ring-2 {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(from 90deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.2));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 1px));
    animation: spinRing 20s linear infinite reverse;
    z-index: 0;
}
@keyframes spinRing {
    to { transform: rotate(360deg); }
}

 
 

/* ─── Floating Badges ─── */
 
.float-badge i {
    font-size: 0.8rem;
    color: #8b5cf6;
}
.float-badge:nth-child(1) {
    top: 2%;
    right: -10%;
    animation-delay: 0s;
}
.float-badge:nth-child(2) {
    bottom: 10%;
    left: -12%;
    animation-delay: 1.2s;
}
.float-badge:nth-child(3) {
    bottom: 30%;
    right: -14%;
    animation-delay: 2.4s;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.03); }
}
/* تأكد من أن الشارات تستخدم نفس ألوان الفقاعات */
.float-badge:nth-child(1) { background: rgba(139, 92, 246, 0.85) !important; }
.float-badge:nth-child(2) { background: rgba(99, 102, 241, 0.85) !important; }
.float-badge:nth-child(3) { background: rgba(236, 72, 153, 0.85) !important; }
/* ─── Stat Cards ─── */
.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.25rem;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px -12px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 0.15rem;
}

/* ─── Skill Tags ─── */
.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.06);
    color: #4b3a7a;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
    cursor: default;
}
.skill-tag:hover {
    background: rgba(139, 92, 246, 0.12);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.10);
    border-color: rgba(139, 92, 246, 0.2);
}
.skill-tag i {
    color: #8b5cf6;
    font-size: 0.7rem;
}

/* ─── Timeline ─── */
.timeline-item {
    position: relative;
    padding-left: 1.75rem;
    padding-bottom: 1.75rem;
    border-left: 2px solid rgba(139, 92, 246, 0.15);
}
.timeline-item:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border: 2px solid #fff;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}
.timeline-dot.pulse {
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12); }
    50% { box-shadow: 0 0 0 8px rgba(139, 92, 246, 0.05); }
}

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff;
    border: none;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.35);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.btn-outline:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.06);
}

/* ─── Gradient Text ─── */
.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Responsive Adjustments ─── */
@media (max-width: 1024px) {
    .about-section {
        padding: 3rem 1.5rem;
    }
}
@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
        border-radius: 1.5rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .float-badge {
        display: none; /* hide on smaller screens */
    }
}
@media (max-width: 480px) {
    .about-section {
        padding: 1.5rem 0.75rem;
    }
}