/* ==========================================
   Root Variables - Colors from Image
   ========================================== */
:root {
    /* Main Colors from the image */
    --primary-blue: #0a1f44;
    --deep-blue: #0d1b3e;
    --gradient-pink: #e94e77;
    --gradient-orange: #f7931e;
    --gradient-red: #dc3545;
    --gradient-purple: #c471ed;
    --gradient-start: #e94e77;
    --gradient-middle: #f77062;
    --gradient-end: #f7931e;
    
    /* Social Media Brand Colors */
    --facebook: #1877f2;
    --instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --tiktok: #000000;
    --snapchat: #fffc00;
    --twitter: #000000;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark: #212529;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(233, 78, 119, 0.1);
    --shadow-md: 0 5px 20px rgba(233, 78, 119, 0.2);
    --shadow-lg: 0 10px 40px rgba(233, 78, 119, 0.3);
    --glow: 0 0 30px rgba(233, 78, 119, 0.5);
    
    /* Typography */
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ar);
    background: var(--primary-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   Particles Background
   ========================================== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-blue) 100%);
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Logo PNG — shown with original colors */
.nav-brand img,
.footer-brand img,
.page-footer-brand img,
.topbar-brand img {
    filter: none;
}

/* Nav Logo Sizing */
.nav-logo {
    width: auto;
    height: 110px;
    max-width: 360px;
    border-radius: 0;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.navbar.scrolled .nav-logo {
    width: auto;
    height: 85px;
    max-width: 300px;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.logo i {
    font-size: 24px;
    color: var(--white);
}

.logo::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.brand-name {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-pink), var(--gradient-orange));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gradient-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Login Button in Navbar */
.nav-login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white) !important;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin-right: auto;
    margin-left: 20px;
    white-space: nowrap;
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.nav-login-btn i {
    font-size: 17px;
}

/* Hide login link inside nav-menu on desktop — only shown on mobile dropdown */
.nav-login-menu {
    display: none;
    color: #a78bfa !important;
    align-items: center;
    gap: 8px;
}

.nav-login-menu i {
    font-size: 18px;
}

/* ==========================================
   Hero Section - Enhanced Design
   ========================================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Image Section */
.hero-image-section {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #f97316, #fb923c, #fbbf24, #f97316);
    background-size: 300% 300%;
    animation: borderRotate 4s linear infinite;
    box-shadow: 0 0 40px rgba(249,115,22,0.4), 0 0 80px rgba(251,146,60,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes borderRotate {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-image-frame-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #070f20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    transition: var(--transition);
}

.hero-profile-image:hover {
    transform: scale(1.04);
}

.hero-image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(249,115,22,0.4) 0%, rgba(251,146,60,0.3) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(35px);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.12);
    }
}

/* Hero Badges Row */
.hero-badges-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.floating-badge {
    position: relative;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(15px);
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.2), 0 0 0 1px rgba(249, 115, 22, 0.3);
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    z-index: 3;
    border: 1px solid rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.floating-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.35), 0 0 0 1px rgba(249, 115, 22, 0.5);
    border-color: rgba(249, 115, 22, 0.6);
}

.floating-badge i {
    color: #f97316;
    font-size: 18px;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.5));
}

.floating-badge span {
    background: linear-gradient(135deg, #f97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Text Section */
.hero-text-section {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: right;
    position: relative;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.hero-greeting {
    display: block;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-family: var(--font-ar);
}

.hero-title {
    font-family: var(--font-en);
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-orange), var(--gradient-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    font-family: var(--font-ar);
    font-size: clamp(35px, 5vw, 55px);
}

.gradient-text-secondary {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(20px, 3vw, 32px);
    opacity: 0.9;
}

@keyframes gradient-shift {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(10deg) brightness(1.2);
    }
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.hero-subtitle i {
    color: var(--gradient-orange);
    font-size: 24px;
}

.hero-description {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 600px;
    margin-right: 0;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-stat-item {
    text-align: center;
    padding: 15px;
    position: relative;
}

.hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number-hero {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label-hero {
    font-size: clamp(12px, 1.5vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    justify-content: flex-end;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover .btn-shine {
    left: 100%;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-left: 10px;
}

/* Stars Background */
.hero-stars-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-pink));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.star-2 {
    top: 10%;
    left: 20%;
    width: 120px;
    height: 120px;
    animation-delay: 1s;
}

.star-3 {
    top: 30%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gradient-orange), var(--gradient-red));
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(180deg);
    }
}

.hero-title {
    font-family: var(--font-en);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-orange), var(--gradient-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(247, 147, 30, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, var(--gradient-red), var(--gradient-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(247, 147, 30, 0.5));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(233, 78, 119, 0.8));
    }
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.hero-description {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gradient-orange);
}

.btn-secondary:hover {
    background: var(--gradient-orange);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange)) 1;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-link.facebook {
    background: var(--facebook);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
}

.social-link.tiktok {
    background: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.social-link.snapchat {
    background: var(--snapchat);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 252, 0, 0.4);
}

.social-link.twitter {
    background: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--deep-blue), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gradient-orange);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 28px;
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-en);
}

/* ==========================================
   Section Common Styles
   ========================================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-pink), var(--gradient-orange));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    background: rgba(255, 255, 255, 0.02);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--white);
    border-radius: 20px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    display: block;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.02);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.image-decoration {
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gradient-orange), var(--gradient-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gradient-orange);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(233, 78, 119, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(233, 78, 119, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   Certifications Section
   ========================================== */
.certifications {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.certification-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-pink), var(--gradient-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.certification-card:hover::before {
    transform: scaleX(1);
}

.certification-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 78, 119, 0.3);
    border-color: var(--gradient-pink);
}

.cert-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
    transition: all 0.4s ease;
}

.certification-card:hover .cert-badge {
    transform: scale(1.1) rotateY(360deg);
}

.cert-badge.meta {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.cert-badge.hubspot {
    background: linear-gradient(135deg, #ff7a59, #ff5c35);
    box-shadow: 0 8px 20px rgba(255, 122, 89, 0.4);
}

.cert-badge.tiktok {
    background: linear-gradient(135deg, #000000, #ee1d52);
    box-shadow: 0 8px 20px rgba(238, 29, 82, 0.4);
}

.cert-badge.snapchat {
    background: linear-gradient(135deg, #fffc00, #f7f700);
    box-shadow: 0 8px 20px rgba(255, 252, 0, 0.4);
}

.cert-badge.snapchat i {
    color: #000;
}

.cert-badge.linkedin {
    background: linear-gradient(135deg, #0077b5, #005582);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.cert-content {
    text-align: right;
}

.cert-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cert-issuer {
    font-size: 14px;
    color: var(--gradient-orange);
    margin-bottom: 12px;
    font-weight: 600;
}

.cert-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.cert-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-date, .cert-badge-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cert-date i, .cert-badge-text i {
    color: var(--gradient-pink);
}

.cert-verified {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

/* Trust Section */
.trust-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(233, 78, 119, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(233, 78, 119, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(233, 78, 119, 0.3);
    transition: var(--transition);
}

.trust-badge:hover {
    background: rgba(233, 78, 119, 0.2);
    transform: translateY(-3px);
}

.trust-badge i {
    font-size: 24px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

/* ==========================================
   Courses Section
   ========================================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(233, 78, 119, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 78, 119, 0.1), transparent);
    transition: left 0.5s;
}

.course-card:hover::before {
    left: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gradient-pink);
}

.course-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    position: relative;
}

.course-icon.facebook {
    background: var(--facebook);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.course-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
}

.course-icon.tiktok {
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.course-icon.snapchat {
    background: var(--snapchat);
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.3);
}

.course-icon.twitter {
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.course-icon.all-platforms {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    box-shadow: 0 10px 30px rgba(233, 78, 119, 0.3);
}

.course-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.course-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    text-align: right;
    margin-bottom: 25px;
}

.course-features li {
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-features i {
    color: var(--gradient-orange);
    font-size: 12px;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background: rgba(255, 255, 255, 0.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(233, 78, 119, 0.2);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: var(--shadow-lg);
    background: rgba(233, 78, 119, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ==========================================
   Portfolio Section
   ========================================== */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10,31,68,0) 0%, rgba(20,40,80,0.6) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

@media (max-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.portfolio-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.18);
}

/* Image / Preview Area */
.portfolio-img-wrap {
    position: relative;
    width: 100%;
    height: 195px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b3e, #1a2f5a);
}

/* CSS Designed Preview */
.portfolio-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.preview-browser-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.preview-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.preview-dot.r { background: #ff5f56; }
.preview-dot.y { background: #ffbd2e; }
.preview-dot.g { background: #27c93f; }

.preview-url-bar {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    font-family: monospace;
    margin-right: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    direction: ltr;
    text-align: left;
}

.preview-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 7px;
    overflow: hidden;
}

/* Sidebar layout — only for cards with .preview-sidebar (Al Modif) */
.preview-body:has(.preview-sidebar) {
    flex-direction: row;
    padding: 0;
    gap: 0;
}
.preview-sidebar {
    width: 32px;
    background: rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    gap: 8px;
    flex-shrink: 0;
}
.preview-menu-item {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 9px;
    cursor: pointer;
}
.preview-menu-item.active {
    background: rgba(102,126,234,0.5);
    color: #fff;
}
.preview-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 8px;
    overflow: hidden;
}
.preview-stats-row {
    display: flex;
    gap: 5px;
}
.preview-stat-box {
    flex: 1;
    border-radius: 6px;
    padding: 4px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.preview-stat-num { font-size: 13px; font-weight: 800; color: #fff; line-height: 1; }
.preview-stat-lbl { font-size: 8px; color: rgba(255,255,255,0.5); }
.preview-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    flex: 1;
}
.preview-room {
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.preview-room.avail { background: rgba(16,185,129,0.55); }
.preview-room.occupied { background: rgba(239,68,68,0.55); }
.preview-room small { font-size: 7px; opacity: 0.8; }

/* Store Preview (Remo + Miss Rim) */
.preview-store-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    flex-shrink: 0;
}
.preview-store-logo { font-size: 11px; font-weight: 800; }
.preview-store-icons { display: flex; gap: 8px; color: rgba(255,255,255,0.5); font-size: 10px; }
.preview-store-hero {
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    line-height: 1.6;
    flex-shrink: 0;
}
.preview-hero-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
    color: #fff;
}
.preview-cats-row {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    overflow: hidden;
}
.preview-cat-pill {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 8px;
    white-space: nowrap;
}

/* CRM Preview */
.preview-crm-header {
    padding: 6px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.preview-filter-pills { display: flex; gap: 5px; }
.preview-filter {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.45);
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 8px;
}
.preview-filter.active { background: rgba(16,185,129,0.35); color: #6ee7b7; }
.preview-rooms-grid-crm {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    flex: 1;
}
.preview-crm-room {
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    line-height: 1.3;
}
.preview-crm-room span { font-size: 11px; font-weight: 800; color: #fff; }
.preview-crm-room small { font-size: 7px; opacity: 0.6; }
.preview-crm-room.avail { background: rgba(16,185,129,0.4); }
.preview-crm-room.occupied { background: rgba(239,68,68,0.45); }

/* Dialer Preview (Link Call) */
.preview-dialer-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    padding: 4px;
}
.preview-dialer {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.preview-dialer-screen {
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 5px;
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}
.preview-dialer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
.preview-dialer-grid span {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    padding: 4px 2px;
}
.preview-call-btn {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 10px;
    color: #fff;
}
.preview-dialer-sidebar {
    width: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.preview-ds-item {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: rgba(255,255,255,0.4);
}
.preview-ds-item.active { background: rgba(59,130,246,0.5); color: #fff; }

/* Clinic Preview (Denta Smart) */
.preview-clinic-header {
    padding: 6px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.preview-clinic-stats {
    display: flex;
    gap: 5px;
}
.preview-cstat {
    flex: 1;
    border-radius: 6px;
    padding: 5px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.preview-cstat span { font-size: 8px; color: rgba(255,255,255,0.5); }
.preview-cstat strong { font-size: 12px; font-weight: 800; color: #fff; }
.preview-appt-list { display: flex; flex-direction: column; gap: 4px; }
.preview-appt {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    padding: 4px 7px;
    font-size: 9px;
    color: rgba(255,255,255,0.7);
}
.preview-appt-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.preview-appt small { margin-right: auto; color: rgba(255,255,255,0.35); font-size: 8px; }

/* Hover Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,20,50,0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-visit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.portfolio-visit-btn:hover {
    background: rgba(255,255,255,0.22);
    transform: scale(1.06);
}

/* Type Badge */
.portfolio-type-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #e94e77, #f7931e);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Info Area */
.portfolio-info {
    padding: 28px 28px 24px;
}

.portfolio-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.portfolio-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.portfolio-icon i {
    font-size: 22px;
    color: #fff;
}

.portfolio-header h3 {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}

.portfolio-url {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-family: monospace;
    letter-spacing: 0.3px;
}

.portfolio-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 18px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.portfolio-tags span {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.portfolio-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 13px;
    border-radius: 14px;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(233, 78, 119, 0.2);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gradient-orange);
    font-size: 18px;
}

.form-group:has(textarea) i {
    top: 20px;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-ar);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gradient-orange);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: var(--primary-blue);
    color: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(233, 78, 119, 0.2);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(233, 78, 119, 0.1);
    transform: translateX(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-social {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(233, 78, 119, 0.2);
}

.contact-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
}

.social-links-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link-contact {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    transition: var(--transition);
}

.social-link-contact:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-link-contact.facebook {
    background: var(--facebook);
}

.social-link-contact.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-contact.tiktok {
    background: #000;
}

.social-link-contact.snapchat {
    background: var(--snapchat);
    color: #000;
}

.social-link-contact.twitter {
    background: #000;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(233, 78, 119, 0.2);
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-brand .logo {
    width: 60px;
    height: 60px;
}

.footer-brand .brand-name {
    font-size: 20px;
}

.footer-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
    border: 1px solid rgba(233, 78, 119, 0.2);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   Scroll to Top Button
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 992px) {
    .nav-login-btn {
        display: none;
    }

    .nav-login-menu {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 31, 68, 0.98);
        backdrop-filter: blur(10px);
        width: 300px;
        padding: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        border-radius: 20px 0 0 20px;
        gap: 20px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero Responsive */
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image-section {
        order: 1;
    }
    
    .hero-text-section {
        order: 2;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-subtitle,
    .hero-buttons,
    .social-links {
        justify-content: center;
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .hero-badges-row {
        gap: 12px;
        margin-top: 20px;
    }
    
    .floating-badge {
        font-size: 12px;
        padding: 10px 16px;
        border-radius: 12px;
        gap: 8px;
    }
    
    .floating-badge i {
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Container & Sections */
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    /* Typography */
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-wrapper {
        gap: 30px;
    }
    
    .hero-image-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-greeting {
        font-size: 18px;
    }
    
    .gradient-text {
        font-size: 36px;
    }
    
    .gradient-text-secondary {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .hero-stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number-hero {
        font-size: 28px;
    }
    
    .stat-label-hero {
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 13px 22px;
        font-size: 14px;
        gap: 8px;
    }
    
    .floating-badge {
        font-size: 10px;
        padding: 8px 12px;
        border-radius: 10px;
        gap: 6px;
    }
    
    .floating-badge i {
        font-size: 14px;
    }
    
    .hero-badges-row {
        gap: 8px;
        margin-top: 15px;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    
    .social-label {
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
    
    /* About Section */
    .about-text h3 {
        font-size: 24px;
    }
    
    .about-text .lead {
        font-size: 16px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-item {
        padding: 14px 10px;
    }
    
    /* About Image - Full Professional Display */
    .about-image {
        display: flex;
        justify-content: center;
        order: -1;
    }

    .image-wrapper {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid transparent;
        background: linear-gradient(var(--deep-blue), var(--deep-blue)) padding-box,
                    linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange)) border-box;
        box-shadow: 0 8px 30px rgba(233, 78, 119, 0.35);
        flex-shrink: 0;
    }

    .profile-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        border-radius: 50%;
        display: block;
    }
    
    /* Certifications */
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certification-card {
        padding: 25px;
    }
    
    .cert-badge {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .cert-title {
        font-size: 16px;
    }
    
    .cert-description {
        font-size: 13px;
    }
    
    .trust-section {
        flex-direction: column;
        gap: 10px;
        padding: 22px 16px;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }
    
    .trust-badge i {
        font-size: 17px;
    }
    
    .trust-badge span {
        font-size: 12px;
    }
    
    /* Courses */
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course-card {
        padding: 30px 25px;
    }
    
    .course-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    .course-card h3 {
        font-size: 18px;
    }
    
    .course-card p {
        font-size: 14px;
    }
    
    .course-features li {
        font-size: 13px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .portfolio-img-wrap {
        height: 190px;
    }

    .portfolio-info {
        padding: 22px 20px 18px;
    }

    .portfolio-header h3 {
        font-size: 17px;
    }

    .portfolio-tags span {
        font-size: 11px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    /* Contact */
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 14px;
    }
    
    .contact-info-item {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 18px;
    }
    
    .footer-links li,
    .footer-contact li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .container {
        padding: 0 15px;
    }
    
    /* Nav Logo */
    .nav-logo {
        width: auto;
        height: 85px;
        max-width: 290px;
    }
    
    .navbar.scrolled .nav-logo {
        width: auto;
        height: 70px;
        max-width: 250px;
    }

    .brand-name {
        font-size: 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Hero */
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }
    
    .hero-image-container {
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .gradient-text {
        font-size: 32px;
    }
    
    .gradient-text-secondary {
        font-size: 14px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-label {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .stat-number-hero {
        font-size: 24px;
    }
    
    .stat-label-hero {
        font-size: 12px;
    }
    
    .btn {
        padding: 11px 18px;
        font-size: 13px;
        gap: 7px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    /* Typography */
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    /* About */
    .about-text h3 {
        font-size: 20px;
    }
    
    .about-text .lead {
        font-size: 14px;
    }
    
    .about-text p {
        font-size: 13px;
    }
    
    /* About image - small phones */
    .image-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Certifications */
    .cert-badge {
        width: 44px;
        height: 44px;
        font-size: 19px;
    }
    
    .cert-title {
        font-size: 15px;
    }
    
    .cert-issuer {
        font-size: 13px;
    }
    
    .cert-description {
        font-size: 13px;
    }
    
    .cert-meta {
        font-size: 12px;
    }
    
    .trust-badge {
        padding: 10px 15px;
    }
    
    .trust-badge span {
        font-size: 12px;
    }
    
    /* Course & Service Cards */
    .course-card,
    .service-card {
        padding: 20px 16px;
    }
    
    .course-icon,
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .course-card h3,
    .service-card h3 {
        font-size: 16px;
    }
    
    .course-card p,
    .service-card p {
        font-size: 13px;
    }
    
    .course-features li {
        font-size: 12px;
    }
    
    /* Contact */
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }
    
    /* Nav Menu */
    .nav-menu {
        width: 100%;
        border-radius: 0;
        padding: 20px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 0;
    }
    
    /* Stars */
    .star {
        width: 50px !important;
        height: 50px !important;
    }
    
    /* Footer */
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section h4 {
        font-size: 15px;
    }
    
    .footer-links li,
    .footer-contact li {
        font-size: 13px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

/* ==========================================
   HERO ROLE BADGES
   ========================================== */
.hero-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(233,78,119,0.35);
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.hero-role-badge i {
    font-size: 0.95rem;
    color: var(--gradient-orange);
}

.hero-role-badge:hover {
    background: rgba(233,78,119,0.2);
    border-color: var(--gradient-pink);
    transform: translateY(-2px);
}

/* ==========================================
   ABOUT SKILLS PILLS
   ========================================== */
.about-skills-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-skills-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(233,78,119,0.1);
    border: 1px solid rgba(233,78,119,0.25);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #cdd5e8;
    transition: all 0.25s ease;
}

.about-skills-pills span i {
    font-size: 0.85rem;
    color: var(--gradient-pink);
}

.about-skills-pills span:hover {
    background: rgba(233,78,119,0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================
   SKILLS SECTION
   ========================================== */
.skills-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26,58,110,0.25) 50%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102,126,234,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Skill Domains Layout */
.skills-domains {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 60px;
}

.skill-domain {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.skill-domain:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(233,78,119,0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.skill-domain-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.skill-domain-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
}

.skill-domain-header h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.skill-domain-header p {
    margin: 0;
    font-size: 0.82rem;
    color: #8899bb;
}

/* Skill Bars */
.skills-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.skill-bar-wrap {}

.skill-bar-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
    font-size: 0.85rem;
    color: #b8c5dd;
    font-weight: 600;
}

.skill-bar-info span:last-child {
    color: var(--gradient-orange);
    font-weight: 700;
}

.skill-bar {
    height: 7px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    border-radius: 10px;
    position: relative;
    animation: skillFill 1.4s cubic-bezier(0.4,0,0.2,1) both;
    transform-origin: left;
}

@keyframes skillFill {
    from { width: 0 !important; }
}

/* Tech Stack */
.tech-stack {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
}

.tech-stack-title {
    font-size: 1rem;
    font-weight: 700;
    color: #8899bb;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.tech-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    min-width: 74px;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(233,78,119,0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.tech-badge i {
    font-size: 1.5rem;
}

.tech-badge span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #b8c5dd;
    white-space: nowrap;
}

/* Service Card NEW badge */
.service-card-new-badge {
    position: absolute;
    top: -1px;
    left: -1px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-orange));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 0 0 10px 0;
    letter-spacing: 1px;
}

/* Service cards already have position relative via service.css */

/* ==========================================
   RESPONSIVE — Skills
   ========================================== */
@media (max-width: 900px) {
    .skills-domains {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .hero-roles {
        gap: 7px;
    }
    .hero-role-badge {
        font-size: 0.78rem;
        padding: 6px 13px;
    }
    .tech-badges {
        gap: 10px;
    }
    .tech-badge {
        min-width: 60px;
        padding: 11px 12px;
    }
    .tech-badge i {
        font-size: 1.2rem;
    }
    .about-skills-pills span {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* ==========================================
   MOBILE OPTIMIZATIONS - COMPREHENSIVE
   ========================================== */

/* === 360px and smaller - Extra small phones === */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    /* Nav Logo - Extra Small */
    .nav-logo {
        width: auto;
        height: 75px;
        max-width: 250px;
    }
    
    .navbar.scrolled .nav-logo {
        width: auto;
        height: 62px;
        max-width: 220px;
    }

    .brand-name {
        font-size: 17px;
    }
    
    section {
        padding: 45px 0;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 30px;
    }
    
    .hero-image-container {
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .gradient-text {
        font-size: 26px;
    }
    
    .gradient-text-secondary {
        font-size: 12px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .hero-label {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .hero-roles {
        gap: 5px;
    }
    
    .hero-role-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        gap: 4px;
    }
    
    .hero-role-badge i {
        font-size: 0.75rem;
    }
    
    /* Buttons - Extra Small */
    .btn {
        padding: 9px 14px;
        font-size: 12px;
        gap: 5px;
        border-radius: 8px;
    }
    
    .btn i {
        font-size: 12px;
    }
    
    /* Social Icons - Extra Small */
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .social-links {
        gap: 6px;
    }
    
    /* Stats */
    .stat-number-hero {
        font-size: 20px;
    }
    
    .stat-label-hero {
        font-size: 10px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .stat-item {
        padding: 10px 8px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 22px;
    }
    
    .section-description {
        font-size: 13px;
    }
    
    /* Cards */
    .course-card,
    .service-card {
        padding: 16px 12px;
        border-radius: 12px;
    }
    
    .course-icon,
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .course-card h3,
    .service-card h3 {
        font-size: 14px;
    }
    
    .course-card p,
    .service-card p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .course-features li {
        font-size: 11px;
        padding: 4px 0;
    }
    
    /* Certifications */
    .cert-badge {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    
    .cert-title {
        font-size: 13px;
    }
    
    .cert-issuer {
        font-size: 11px;
    }
    
    .cert-description {
        font-size: 11px;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 18px 12px;
        border-radius: 12px;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .form-group label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px;
        border-radius: 8px;
    }
    
    /* Footer */
    .footer-section h3 {
        font-size: 14px;
    }
    
    .footer-section h4 {
        font-size: 13px;
    }
    
    .footer-links li,
    .footer-contact li {
        font-size: 12px;
    }
    
    .social-links a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/* === Mobile Improvements - 480px === */
@media (max-width: 480px) {
    /* Navigation */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar.scrolled {
        padding: 8px 0;
    }
    
    .nav-brand img {
        height: 35px;
    }
    
    .menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .nav-menu {
        width: 100%;
        padding: 15px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 10px 0;
    }
    
    /* Hero improvements */
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* About Stats */
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    /* Tech badges */
    .tech-badges {
        gap: 8px;
    }
    
    .tech-badge {
        min-width: 50px;
        padding: 8px 10px;
        border-radius: 10px;
    }
    
    .tech-badge i {
        font-size: 1rem;
    }
    
    .tech-badge span {
        font-size: 0.65rem;
    }
    
    /* Cards Grid */
    .courses-grid,
    .services-grid {
        gap: 12px;
    }
    
    /* Skills Pills */
    .about-skills-pills {
        gap: 6px;
    }
    
    .about-skills-pills span {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    /* Image wrapper */
    .image-wrapper {
        width: 160px;
        height: 160px;
    }
    
    /* Toast/Notifications */
    .toast-notification {
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* === Tablet Portrait - 768px === */
@media (max-width: 768px) {
    /* Navigation Mobile Menu */
    .nav-menu {
        background: rgba(10, 31, 68, 0.98);
        border-radius: 0 0 20px 20px;
    }
    
    /* Grid layouts */
    .courses-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Icons and buttons uniform sizing */
    .course-icon,
    .service-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .btn {
        padding: 11px 18px;
        font-size: 13px;
    }
    
    .btn i {
        font-size: 13px;
    }
    
    /* Social links */
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    /* Footer Grid */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
}

/* ==========================================
   TOUCH DEVICE OPTIMIZATIONS
   ========================================== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn {
        min-height: 44px;
    }
    
    .social-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Remove hover effects on touch */
    .course-card:hover,
    .service-card:hover {
        transform: none;
    }
    
    /* Active state for touch */
    .btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    .course-card:active,
    .service-card:active {
        transform: scale(0.99);
    }
}

/* ==========================================
   LANDSCAPE MODE PHONES
   ========================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 70px 0 30px;
        min-height: auto;
    }
    
    .hero-image-container {
        max-width: 150px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .navbar {
        padding: 8px 0;
    }
}

/* ==========================================
   PAGE FADE-IN ON LOAD
   ========================================== */
@keyframes pageIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}
body {
    animation: pageIn .45s ease both;
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
#scrollTop {
    position: fixed;
    bottom: 96px;
    left: 28px;
    z-index: 998;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94e77, #f7931e);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(233,78,119,0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all .35s ease;
    pointer-events: none;
}
#scrollTop.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
#scrollTop:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(233,78,119,0.6);
}

/* ==========================================
   WHATSAPP FLOAT — BASE + PULSE RING
   ========================================== */
.wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: .3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wa-pulse 2.2s ease-out infinite;
    opacity: 0;
    pointer-events: none;
}
@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.65); opacity: 0; }
}

/* ==========================================
   FOOTER LINKS — HOVER IMPROVEMENT
   ========================================== */
.page-footer-links a {
    transition: color .25s ease, transform .25s ease !important;
    display: inline-block;
}
.page-footer-links a:hover {
    color: #f7931e !important;
    transform: translateY(-2px);
}
footer a:not(.btn):hover {
    color: #f7931e;
}

/* ==========================================
   COURSE CARD — BOTTOM GRADIENT LINE
   ========================================== */
.course-card {
    position: relative;
    overflow: hidden;
}
.course-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e94e77, #f7931e);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s ease;
}
.course-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================
   SERVICE CARD — HOVER GLOW
   ========================================== */
.service-card {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
}
.service-card:hover {
    box-shadow: 0 16px 48px rgba(233,78,119,0.18) !important;
}

/* ==========================================
   NAV LINK — ACTIVE INDICATOR DOT
   ========================================== */
.nav-link.active {
    color: #f7931e !important;
}

/* ==========================================
   IMAGE LAZY LOAD FADE
   ========================================== */
img {
    transition: opacity .3s ease;
}
img.lazy-loaded {
    opacity: 1;
}

/* ==========================================
   PERFORMANCE OPTIMIZATIONS
   GPU layer promotion for animated elements
   ========================================== */
.hero-profile-image,
.hero-image-frame,
.floating-badge {
    will-change: transform;
    transform: translateZ(0);
}

.pulse-dot {
    will-change: box-shadow;
}

/* ==========================================
   MOBILE PERFORMANCE — Disable expensive
   animations/filters on low-end devices
   ========================================== */
@media (max-width: 768px) {

    /* ── Kill backdrop-filter (very expensive) ── */
    .navbar.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(7, 15, 32, 0.97) !important;
    }
    .hero-label,
    .floating-badge,
    .hero-stats,
    .portfolio-overlay,
    .portfolio-visit-btn,
    .hero-role-badge {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* ── Kill filter:blur on decorative elements ── */
    .hero-image-glow {
        filter: none !important;
        animation: none !important;
        opacity: 0.4;
    }
    .image-decoration {
        filter: none !important;
    }
    .logo::before {
        filter: none !important;
    }

    /* ── Stop borderRotate (background-position repaint) ── */
    /* Replace with static gradient border */
    .hero-image-frame {
        animation: none !important;
        background: linear-gradient(135deg, #f97316, #fbbf24) !important;
        background-size: 100% 100% !important;
    }

    /* ── Stop filter-based animations ── */
    /* gradient-shift uses filter:hue-rotate — stop it */
    .gradient-text {
        animation: none !important;
        filter: none !important;
        text-shadow: none !important;
    }

    /* glow animation uses filter:drop-shadow — stop it */
    .gradient-text {
        animation: none !important;
    }

    /* ── Simplify float animation (keep but lighter) ── */
    .hero-profile-image {
        animation: float-mobile 7s ease-in-out infinite !important;
    }
    @keyframes float-mobile {
        0%, 100% { transform: translateY(0) translateZ(0); }
        50%       { transform: translateY(-12px) translateZ(0); }
    }

    /* ── Remove drop-shadow filters ── */
    .floating-badge i {
        filter: none !important;
    }

    /* ── box-shadow: keep static, no transition ── */
    .hero-image-frame {
        box-shadow: 0 0 25px rgba(249,115,22,0.3) !important;
    }

    /* ── Simplify card hover transitions ── */
    .course-card:hover,
    .service-card:hover,
    .certification-card:hover,
    .portfolio-card:hover {
        transform: translateY(-5px) !important;
    }
    .service-card:hover {
        transform: translateY(-5px) !important; /* remove rotateY */
    }
}
