/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Paaji&family=Open+Sans:wght@300;400;600;700&family=Tajawal:wght@300;400;500;700;800;900&family=Almarai:wght@300;400;700;800&family=Cairo:wght@300;400;600;700;900&display=swap');

@font-face {
    font-family: 'themify';
    src: url('../fonts/themify.eot');
    src: url('../fonts/themify.eot?#iefix') format('embedded-opentype'),
         url('../fonts/themify.woff') format('woff'),
         url('../fonts/themify.ttf') format('truetype'),
         url('../fonts/themify.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="ti-"],
[class*=" ti-"] {
    font-family: 'themify';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ti-world:before { content: "\e665"; }
.ti-email:before { content: "\e6a6"; }
.ti-mobile:before { content: "\e621"; }
.ti-location-pin:before { content: "\e693"; }
.ti-calendar:before { content: "\e6b6"; }
.ti-server:before { content: "\e67d"; }
.ti-layout:before { content: "\e62e"; }
.ti-database:before { content: "\e69f"; }
.ti-linkedin:before { content: "\e75d"; }
.ti-github:before { content: "\e75c"; }
.ti-comments:before { content: "\e6a5"; }
.ti-download:before { content: "\e68a"; }

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #695aa6;
    --dark: #343a40;
    --light: #f8f9fa;
    --transition: 0.3s;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    background-color: #0f172a;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
    border: 2px solid #0f172a;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

body.loaded {
    opacity: 1;
}

body.rtl {
    font-family: 'Tajawal', 'Almarai', 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .col-md-4,
    .col-md-6,
    .col-lg-3,
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Navbar */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Open Sans', sans-serif;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-navbar .container {
    display: flex;
    align-items: center;
    min-height: 80px;
    transition: all 0.4s;
}

.custom-navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
}

.custom-navbar .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.custom-navbar .logo:hover::after {
    transform: scaleX(1);
}

.custom-navbar .nav {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    padding: 0;
    gap: 0.5rem;
}

.custom-navbar .nav .item {
    margin: 0;
}

.custom-navbar .nav .link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s;
    border-radius: 8px;
    position: relative;
    display: block;
}

.custom-navbar .nav .link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    transition: transform 0.3s;
}

.custom-navbar .nav .link:hover {
    color: #fff;
    background: rgba(99, 102, 241, 0.1);
}

.custom-navbar .nav .link:hover::before,
.custom-navbar .nav .link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.custom-navbar .nav .link.active {
    color: #fff;
    background: rgba(99, 102, 241, 0.15);
}

/* Scrolled State */
.custom-navbar.affix {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-navbar.affix .logo {
    color: #1e293b;
}

.custom-navbar.affix .nav .link {
    color: #64748b;
}

.custom-navbar.affix .nav .link:hover,
.custom-navbar.affix .nav .link.active {
    color: #1e293b;
    background: rgba(99, 102, 241, 0.1);
}

.custom-navbar.affix .hamburger-inner,
.custom-navbar.affix .hamburger-inner::before,
.custom-navbar.affix .hamburger-inner::after {
    background: #1e293b;
}

.custom-navbar.affix .container {
    min-height: 70px;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 5px;
}

.hamburger-box {
    width: 30px;
    height: 21px;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    transition: transform 0.3s;
}

.hamburger-inner {
    top: 50%;
    margin-top: -1.5px;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -9px;
}

.hamburger-inner::after {
    bottom: -9px;
}

.hamburger.is-active .hamburger-inner {
    transform: translate3d(0, 9px, 0) rotate(135deg);
}

.hamburger.is-active .hamburger-inner::before {
    opacity: 0;
}

.hamburger.is-active .hamburger-inner::after {
    transform: translate3d(0, -18px, 0) rotate(-270deg);
}

/* Header */
.header {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Geometric Background Pattern */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
}

/* Animated Gradient Orbs */
.header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
    animation: float-orbs 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float-orbs {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-5%, -5%) rotate(120deg); }
    66% { transform: translate(5%, 5%) rotate(240deg); }
}

.header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.header-content {
    padding: 120px 30px 100px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Modern Glass Card */
.header-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1000px;
    min-height: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: -1;
}

/* Greeting Text */
.header-title .up {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    display: block;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

/* Name - Main Title */
.header-title .down {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    text-shadow: 0 0 80px rgba(167, 139, 250, 0.5);
}

/* Subtitle */
.header-subtitle {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    margin-bottom: 2.5rem !important;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    position: relative;
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Buttons Container */
.header-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Fade In Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    padding: 1rem 2.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-rounded {
    border-radius: 50px;
}

/* Sections */
.section {
    padding: 70px 10px;
}

.section.bg-light {
    background: #f8f9fa;
}

.section.bg-primary {
    background: var(--primary);
    color: #fff;
}

.bg-primary {
    background: var(--primary) !important;
    color: #fff !important;
}

.section.pt-0 {
    padding-top: 0;
}

.section.pb-0 {
    padding-bottom: 0;
}

.section-sm {
    padding: 40px 0 !important;
}

.text-center {
    text-align: center;
}

.text-light {
    color: #fff;
}

.section-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1.2rem;
    margin-bottom: 3rem;
    color: #fff;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-6 {
    margin-bottom: 4rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* About */
.about {
    display: flex;
    align-items: center;
    text-align: left;
}

.about-img-holder {
    min-width: 400px;
    max-width: 400px;
    margin-right: 20px;
}

.about-img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-caption {
    flex: 1;
}

.about-p {
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }
    
    .about-img-holder {
        max-width: 220px;
        min-width: 100%;
        margin: 0 auto 20px;
    }
}

/* ============================================
   ABOUT SECTION - MODERN REDESIGN
   ============================================ */

/* About Section Container */
.about-section {
    position: relative;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    overflow: hidden;
    padding: 100px 10px !important;
}

/* Animated Background Decoration */
.about-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: float-about 24s ease-in-out infinite;
}

@keyframes float-about {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(5deg); }
}

/* About Header */
.about-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: pulse-about-badge 3s ease-in-out infinite;
}

.about-badge .badge-icon {
    font-size: 1.3rem;
    animation: bounce-about-icon 2s ease-in-out infinite;
}

@keyframes pulse-about-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); }
}

@keyframes bounce-about-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* About Content Wrapper */
.about-content-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* About Image Card */
.about-image-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.about-image-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer-about 3s infinite;
}

@keyframes shimmer-about {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.about-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Image Glow Wrapper */
.image-glow-wrapper {
    position: relative;
    margin-bottom: 2rem;
    z-index: 1;
}

.image-glow-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.6) 0%, rgba(139, 92, 246, 0.6) 100%);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.7;
    animation: pulse-image-glow 3s ease-in-out infinite;
}

@keyframes pulse-image-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.about-profile-img {
    width: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s;
}

.about-image-card:hover .about-profile-img {
    transform: scale(1.05);
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Text Card */
.about-text-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.about-text-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer-about 3s infinite;
}

.about-text-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.about-description strong {
    color: #fff;
    font-weight: 700;
}

/* About Highlights */
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.highlight-item i {
    font-size: 1.2rem;
}

/* Download Button */
.btn-about-download {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    color: #6366f1;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-about-download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.btn-about-download:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #fff;
    border-color: transparent;
}

.btn-about-download:hover::before {
    opacity: 1;
}

.btn-about-download i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-about-download:hover i {
    transform: translateY(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 10px !important;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-text-card {
        padding: 2.5rem 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-highlights {
        justify-content: center;
    }

    .highlight-item {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }

    .about-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-image-card {
        padding: 2rem 1.5rem;
    }

    .about-text-card {
        padding: 2rem 1.5rem;
    }

    .about-stats {
        gap: 0.8rem;
    }

    .stat-item {
        padding: 1.2rem 0.8rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .btn-about-download {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .highlight-item {
        flex: 1 1 100%;
        justify-content: center;
    }
}

/* Skills */
.skill-category {
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.skill-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.skill-category h5 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
    transition: all 0.3s;
    display: inline-block;
}

.badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

/* ============================================
   SKILLS SECTION - MODERN REDESIGN
   ============================================ */

/* Skills Section Container */
.skills-section {
    position: relative;
    background: linear-gradient(135deg, #2d3748 0%, #1a1f2e 100%);
    overflow: hidden;
    padding: 100px 10px !important;
}

/* Animated Background Decoration */
.skills-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    animation: float-skills 20s ease-in-out infinite;
}

@keyframes float-skills {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Skills Header */
.skills-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.skills-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: pulse-skills-badge 3s ease-in-out infinite;
}

.skills-badge .badge-icon {
    font-size: 1.3rem;
    animation: bounce-skills-icon 2s ease-in-out infinite;
}

@keyframes pulse-skills-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); }
}

@keyframes bounce-skills-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.skills-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Skill Card */
.skill-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer-skills 3s infinite;
}

@keyframes shimmer-skills {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.skill-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

/* Skill Icon Wrapper */
.skill-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.skill-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #6366f1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: float-skill-icon 3s ease-in-out infinite;
    transition: all 0.4s;
}

.skill-card:hover .skill-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.skill-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    opacity: 0.5;
    filter: blur(15px);
    animation: pulse-skill-glow 2s ease-in-out infinite;
}

@keyframes float-skill-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-skill-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Skill Category Title */
.skill-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Skill Tags */
.skill-card .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.skill-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #6366f1;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.skill-badge:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: #fff;
    border-color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skills-section {
        padding: 60px 10px !important;
    }

    .skills-title {
        font-size: 2.2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skill-card {
        padding: 2.5rem 2rem;
    }

    .skill-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .skill-category-title {
        font-size: 1.3rem;
    }

    .skill-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .skills-title {
        font-size: 1.8rem;
    }

    .skills-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .skill-card {
        padding: 2rem 1.5rem;
    }

    .skill-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .skill-category-title {
        font-size: 1.2rem;
    }
}




/* Portfolio */
.portfolio-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s;
    margin-bottom: 30px;
}

.portfolio-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
}

.portfolio-card-img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s;
}

.portfolio-card:hover .portfolio-card-img {
    transform: scale(1.08);
}

.portfolio-card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    visibility: hidden;
    opacity: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%);
    transition: all 0.4s;
    width: 0;
    height: 0;
    border-radius: 50%;
    overflow: hidden;
    color: #fff;
}

.portfolio-card:hover .portfolio-card-overlay {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.portfolio-card-caption {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px;
}

/* ============================================
   PORTFOLIO SECTION - MODERN REDESIGN
   ============================================ */

/* Portfolio Section Container */
.portfolio-section {
    position: relative;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    overflow: hidden;
    padding: 100px 10px !important;
}

/* Animated Background Decoration */
.portfolio-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        radial-gradient(circle at 75% 25%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: float-portfolio 22s ease-in-out infinite;
}

@keyframes float-portfolio {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-35px) rotate(3deg); }
}

/* Portfolio Header */
.portfolio-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: pulse-portfolio-badge 3s ease-in-out infinite;
}

.portfolio-badge .badge-icon {
    font-size: 1.3rem;
    animation: bounce-portfolio-icon 2s ease-in-out infinite;
}

@keyframes pulse-portfolio-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); }
}

@keyframes bounce-portfolio-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.portfolio-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Portfolio Item */
.portfolio-item {
    position: relative;
    animation: fadeInUp 0.6s ease-out backwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }
.portfolio-item:nth-child(7) { animation-delay: 0.7s; }
.portfolio-item:nth-child(8) { animation-delay: 0.8s; }
.portfolio-item:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer-portfolio 3s infinite;
    z-index: 1;
}

@keyframes shimmer-portfolio {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.portfolio-image-wrapper:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Portfolio Image */
.portfolio-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.portfolio-image-wrapper:hover .portfolio-image {
    transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(99, 102, 241, 0.98) 0%, rgba(139, 92, 246, 0.95) 50%, rgba(167, 139, 250, 0.92) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    padding: 2rem;
}

.portfolio-image-wrapper:hover .portfolio-overlay {
    opacity: 1;
}

/* Portfolio Overlay Content */
.portfolio-overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.portfolio-image-wrapper:hover .portfolio-overlay-content {
    transform: translateY(0);
}

/* Project Category Badge */
.project-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Project Title */
.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Project Description */
.project-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Project Tech Badges */
.project-tech {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #6366f1;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 10px !important;
    }

    .portfolio-title {
        font-size: 2.2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-image {
        height: 250px;
    }

    .project-title {
        font-size: 1.3rem;
    }

    .project-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .portfolio-title {
        font-size: 1.8rem;
    }

    .portfolio-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .portfolio-image {
        height: 220px;
    }

    .portfolio-overlay {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.2rem;
    }
}


/* Blog/Experience Cards */
.blog-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 2.5rem;
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
}

.blog-card:hover {
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.2);
}

.blog-card-header {
    min-width: 350px;
    max-width: 350px;
    height: 220px;
    overflow: hidden;
}

.blog-card-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.6s;
}

.blog-card-img.logo-contain {
    object-fit: contain;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 2.5rem;
    flex: 1;
}

.blog-card-title {
    font-weight: 100;
    margin-bottom: 1rem;
}

.blog-card-caption {
    margin: 15px 0 !important;
    font-size: 0.95rem;
}

.blog-card-body p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #495057;
}

@media (max-width: 992px) {
    .blog-card {
        flex-direction: column;
    }
    
    .blog-card-header {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: 180px;
    }
}

/* Experience Timeline */
.experience-section {
    position: relative;
    background: linear-gradient(135deg, #2d3748 0%, #1a1f2e 100%);
    overflow: hidden;
}

/* Experience Background Decoration */
.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
    pointer-events: none;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Vertical line in the center */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 50%, rgba(99, 102, 241, 0.3) 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Circular marker */
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.4s;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.2), 0 6px 20px rgba(99, 102, 241, 0.5);
}

/* Timeline content */
.timeline-content {
    width: calc(50% - 40px);
    position: relative;
}

/* Alternate left and right */
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    padding-left: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    padding-right: 40px;
    text-align: right;
}

/* Timeline card */
.timeline-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.timeline-item:hover .timeline-card::before {
    transform: scaleX(1);
}

.timeline-item:hover .timeline-card {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

/* Arrow pointing to the timeline */
.timeline-item:nth-child(odd) .timeline-card::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
    filter: drop-shadow(-2px 0 3px rgba(0, 0, 0, 0.1));
}

.timeline-item:nth-child(even) .timeline-card::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
    filter: drop-shadow(2px 0 3px rgba(0, 0, 0, 0.1));
}

/* Logo */
.timeline-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.timeline-item:nth-child(even) .timeline-logo {
    margin-left: auto;
}

.timeline-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.timeline-item:hover .timeline-logo {
    transform: scale(1.1) rotate(3deg);
}

/* Timeline details */
.timeline-details {
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-details {
    text-align: right;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-company {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
}

.timeline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.timeline-item:nth-child(even) .timeline-meta {
    justify-content: flex-end;
}

.timeline-period {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    font-weight: 600;
    color: #6366f1;
}

.timeline-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.timeline-location i {
    font-size: 0.85rem;
}

.timeline-description {
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
    text-align: left;
}

.timeline-description:last-child {
    margin-bottom: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-card::after {
        left: -10px;
    }
    
    .timeline-item:nth-child(even) .timeline-card::after {
        left: -10px;
        right: auto;
        border-right: 10px solid #fff;
        border-left: none;
        filter: drop-shadow(-2px 0 3px rgba(0, 0, 0, 0.1));
    }
    
    .timeline-item:nth-child(even) .timeline-logo {
        margin-left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-details {
        text-align: left;
    }
    
    .timeline-item:nth-child(even) .timeline-meta {
        justify-content: flex-start;
    }
    
    .timeline-logo {
        width: 70px;
        height: 70px;
    }
    
    .timeline-title {
        font-size: 1.3rem;
    }
    
    .timeline-company {
        font-size: 1rem;
    }
}

/* Contact */
.list-inline {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    list-style: none;
}

.list-inline-item i {
    font-size: 32px;
    transition: all 0.3s;
    color: var(--dark);
}

.list-inline-item a:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary);
}

.font-italic {
    font-style: italic;
}

.text-dark {
    color: #333;
}

.text-muted {
    color: #6c757d;
}

/* Footer */
.footer {
    display: flex;
    min-height: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #1a1f2e;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Language Toggle */
#lang-toggle {
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.6rem 1.3rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

#lang-toggle:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Language toggle on scrolled navbar */
.custom-navbar.affix #lang-toggle {
    background: rgba(99, 102, 241, 0.1);
    color: #1e293b;
    border-color: rgba(99, 102, 241, 0.2);
}

.custom-navbar.affix #lang-toggle:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

/* RTL Styles */
body.rtl .header-title .down {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

body.rtl .header-subtitle {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
}

body.rtl .custom-navbar .nav {
    flex-direction: row-reverse;
}

body.rtl #lang-toggle {
    margin-left: 0;
    margin-right: 1rem;
}

body.rtl .about-caption,
body.rtl .skill-category,
body.rtl .blog-card-body {
    text-align: right;
}

body.rtl .list-inline-item {
    margin-left: 1rem;
    margin-right: 0;
}

body.rtl strong {
    font-weight: 800;
}

/* Mobile */
@media (max-width: 991px) {
    .hamburger {
        display: block;
        margin-left: auto;
    }
    
    .custom-navbar .nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        width: 100%;
        margin: auto;
        display: block;
        border-bottom: 1px solid rgba(99, 102, 241, 0.2);
        padding: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        gap: 0;
    }
    
    .custom-navbar .nav.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .custom-navbar .nav .item {
        margin: 0.3rem 0;
        width: 100%;
    }
    
    .custom-navbar .nav .link {
        padding: 0.8rem 1rem;
        display: block;
        color: rgba(255, 255, 255, 0.85);
        border-radius: 8px;
    }
    
    .custom-navbar .nav .link:hover,
    .custom-navbar .nav .link.active {
        background: rgba(99, 102, 241, 0.2);
        color: #fff;
    }
    
    /* Mobile navbar when scrolled */
    .custom-navbar.affix .nav {
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .custom-navbar.affix .nav .link {
        color: #64748b;
    }
    
    .custom-navbar.affix .nav .link:hover,
    .custom-navbar.affix .nav .link.active {
        color: #1e293b;
        background: rgba(99, 102, 241, 0.1);
    }
    
    .header-content {
        padding: 100px 20px 80px;
    }
    
    .header-content::before {
        width: 92%;
        min-height: 450px;
        border-radius: 20px;
    }
    
    .header-title .up {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .header-title .down {
        font-size: 2.8rem;
    }
    
    .header-subtitle {
        font-size: 1rem !important;
        padding: 0.6rem 1.5rem;
    }
    
    .header-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .header-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 80px 15px 60px;
    }
    
    .header-title .down {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Accessibility Improvements */
/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Indicators */
*:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.btn:focus {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(105, 90, 166, 0.2);
}

a:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Better focus for navigation links */
.custom-navbar .nav .link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ============================================
   EDUCATION SECTION - MODERN REDESIGN
   ============================================ */

/* Education Section Container */
.education-section {
    position: relative;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    overflow: hidden;
    padding: 100px 10px !important;
}

/* Animated Background Decoration */
.education-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    animation: float-education 25s ease-in-out infinite;
}

@keyframes float-education {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(5deg); }
}

/* Education Header */
.education-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.education-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.education-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

.education-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.5);
}

/* Education Card Wrapper */
.education-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Education Card */
.education-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.education-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer-education 3s infinite;
}

@keyframes shimmer-education {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.education-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border-color: rgba(79, 172, 254, 0.6);
}

/* Education Icon */
.education-icon {
    text-align: center;
    margin-bottom: 2.5rem;
}

.icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    position: relative;
    animation: float-icon 3s ease-in-out infinite;
}

.icon-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    opacity: 0.3;
    filter: blur(15px);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Education Content */
.education-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.education-period {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s;
}

.education-period:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    border-color: rgba(99, 102, 241, 0.5);
    transform: scale(1.05);
}

.education-period i {
    font-size: 1.2rem;
    color: #a78bfa;
}

.education-degree {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.education-major {
    margin-bottom: 2rem;
}

.major-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.major-badge:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.education-location {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    color: #495057;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50px;
    transition: all 0.3s;
}

.education-location:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.education-location i {
    font-size: 1.3rem;
    color: #f5576c;
}

/* Decorative Circles */
.education-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 30px;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    animation: float-circle 6s ease-in-out infinite;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: -20px;
    animation-delay: 4s;
}

@keyframes float-circle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .education-section {
        padding: 60px 10px !important;
    }

    .education-title {
        font-size: 2rem;
    }

    .education-card {
        padding: 3rem 2rem;
    }

    .icon-circle {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .education-degree {
        font-size: 2rem;
    }

    .major-badge {
        font-size: 1rem;
        padding: 0.7rem 2rem;
    }
}

@media (max-width: 480px) {
    .education-title {
        font-size: 1.6rem;
    }

    .education-card {
        padding: 2.5rem 1.5rem;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .education-degree {
        font-size: 1.6rem;
    }

    .education-period,
    .education-location {
        font-size: 0.9rem;
    }

    .major-badge {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Enhanced CTA Section */
/* ============================================
   CONTACT SECTION - MODERN REDESIGN
   ============================================ */

/* Contact Section Container */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #2d3748 0%, #1a1f2e 100%);
    overflow: hidden;
    padding: 100px 10px !important;
}

/* Animated Background Decoration */
.contact-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px),
        radial-gradient(circle at 60% 40%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Contact Header */
.contact-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: pulse-badge 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.3rem;
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); }
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: rotate-icon 3s ease-in-out infinite;
}

@keyframes rotate-icon {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    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;
}

.contact-method-card:hover::before {
    left: 100%;
}

.contact-method-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.method-icon-wrapper {
    margin-bottom: 1.5rem;
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s;
}

.method-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    filter: blur(10px);
    transition: all 0.4s;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.15) rotate(10deg);
}

.contact-method-card:hover .method-icon::before {
    opacity: 0.5;
    inset: -10px;
}

.email-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.phone-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.location-icon {
    background: linear-gradient(135deg, #6366f1 0%, #a78bfa 100%);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.method-icon i {
    font-size: 2rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.method-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.method-link {
    display: block;
    color: #495057;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    word-break: break-word;
}

.method-link:hover {
    color: #6366f1;
    transform: scale(1.05);
}

.method-text {
    color: #495057;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.method-info {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* WhatsApp Action Button */
.whatsapp-action-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    margin-top: 1.2rem;
    font-size: 0.95rem !important;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-action-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1ea952 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Social Connect */
.social-connect {
    text-align: center;
    position: relative;
    z-index: 2;
}

.social-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.social-link::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.5s, height 0.5s;
}

.social-link:hover::before {
    width: 300px;
    height: 300px;
}

.social-link i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.social-link span {
    position: relative;
    z-index: 1;
}

.linkedin-link {
    background: rgba(0, 119, 181, 0.9);
}

.linkedin-link:hover {
    background: #0077b5;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 119, 181, 0.4);
}

.github-link {
    background: rgba(51, 51, 51, 0.9);
}

.github-link:hover {
    background: #333;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.telegram-link {
    background: rgba(0, 136, 204, 0.9);
}

.telegram-link:hover {
    background: #0088cc;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.4);
}

/* Availability Status */
.availability-status {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    color: #155724;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(40, 167, 69, 0.3);
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
    animation: pulse-indicator 2s ease-in-out infinite;
}

@keyframes pulse-indicator {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(40, 167, 69, 0.1);
    }
}

.status-text {
    color: #155724;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 10px !important;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .contact-method-card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 2rem;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
    }

    .social-link {
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .availability-status {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .method-icon {
        width: 70px;
        height: 70px;
    }

    .method-icon i {
        font-size: 1.6rem;
    }

    .method-title {
        font-size: 1.2rem;
    }

    .social-title {
        font-size: 1.5rem;
    }
}
