/* ===================================
   Global Styles & Reset
   =================================== */
:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #0891b2;
    --success-color: #22c55e;
    --light-bg: #ffffff;
    --light-bg-2: #f8fafc;
    --light-bg-3: #f1f5f9;
    --light-bg-4: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --gradient-1: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #0891b2 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --shadow-xs: 0 1px 3px rgba(37, 99, 235, 0.05);
    --shadow-sm: 0 2px 10px rgba(37, 99, 235, 0.08);
    --shadow-md: 0 4px 20px rgba(37, 99, 235, 0.12);
    --shadow-lg: 0 10px 40px rgba(37, 99, 235, 0.15);
    --shadow-xl: 0 20px 60px rgba(37, 99, 235, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--primary-color);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(37, 99, 235, 0.05);
}

.navbar.scrolled {
    padding: 0.15rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(37, 99, 235, 0.1);
}

.navbar-brand .logo-image {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand:hover .logo-image {
    transform: scale(1.05);
}

/* Mini Code Screen Animation */
.mini-code-screen {
    display: inline-block;
    background: #1e293b;
    border-radius: 6px;
    padding: 4px 8px;
    margin-left: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    vertical-align: middle;
}

.mini-screen-header {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

.mini-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.mini-dot.red {
    background: #ff5f57;
}

.mini-dot.yellow {
    background: #ffbd2e;
}

.mini-dot.green {
    background: #28ca42;
}

.mini-code-body {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: #64ffda;
    min-width: 150px;
    height: 20px;
    display: flex;
    align-items: center;
}

.mini-typing-text {
    color: #64ffda;
}

.mini-cursor {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: #64ffda;
    animation: miniCursorBlink 1s infinite;
    margin-left: 2px;
}

@keyframes miniCursorBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.navbar-nav .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition);
    border-radius: 8px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: var(--transition);
    border-radius: 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-toggler:hover {
    background: var(--light-bg-2);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

/* ===================================
   Hero Section - Unique Modern Design with Profile
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 25%, #dbeafe 50%, #f3e8ff 75%, #fce7f3 100%);
    padding: 140px 0 60px 0;
    overflow: hidden;
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat calc(15s + var(--i) * 3s) ease-in-out infinite;
    top: calc(var(--i) * 12%);
    left: calc(var(--i) * 13%);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(50px, -80px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, -150px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(80px, -100px) scale(1.1);
        opacity: 0.5;
    }
}

/* Hero Text Content - Left Side */
.hero-text-content {
    position: relative;
    z-index: 10;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Status Badge */
.hero-badge-wrapper {
    margin-bottom: 1.5rem;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-pulse-dot {
    width: 10px;
    height: 10px;
    background: #f70505;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.status-pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f80b0b;
    animation: pulseRing 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.status-label {
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Legacy badge support */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s ease-out;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.status-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #22c55e;
    animation: pulseRing 2s infinite;
}

.badge-label {
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Heading */
.hero-heading-wrapper {
    margin-bottom: 2rem;
}

.hero-greeting {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-name {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899);
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 1s backwards;
}

@keyframes underlineExpand {
    from { width: 0; }
    to { width: 100%; }
}

/* Animated Role Text */
.role-text-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    height: 50px;
    overflow: hidden;
}

.role-static {
    font-size: 1.8rem;
    color: #475569;
    font-weight: 600;
}

.role-dynamic {
    position: relative;
    height: 50px;
    overflow: hidden;
}

.role-word {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: rotateWords 12s infinite;
}

.role-word:nth-child(1) {
    animation-delay: 0s;
}

.role-word:nth-child(2) {
    animation-delay: 3s;
}

.role-word:nth-child(3) {
    animation-delay: 6s;
}

.role-word:nth-child(4) {
    animation-delay: 9s;
}

@keyframes rotateWords {
    0%, 100% {
        opacity: 0;
        transform: translateY(50px);
    }
    5%, 25% {
        opacity: 1;
        transform: translateY(0);
    }
    30% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

/* Hero Description */
.hero-description {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 550px;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

/* Hero Social Links */
.hero-social-links {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border-color: transparent;
    text-decoration: none;
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    margin: 5px 0 0 0;
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    transition: all 0.4s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    color: #2563eb;
}

/* Hero Social Links */
.hero-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 1s ease-out 1.4s backwards;
}

.social-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    border-color: transparent;
}

/* Hero Image Section - Right Side */
.hero-image-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Decorative Elements */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    top: -50px;
    right: -50px;
    animation: rotateCircle 20s linear infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    bottom: 0;
    left: -30px;
    animation: rotateCircle 25s linear infinite reverse;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.deco-shape {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0891b2, #2563eb);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 80px;
    left: 30px;
    animation: morphShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ec4899, #7c3aed);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    bottom: 100px;
    right: 50px;
    animation: morphShape 10s ease-in-out infinite reverse;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

/* Profile Image Wrapper */
.profile-image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    max-width: 100%;
    z-index: 5;
    margin: 0 auto;
}

/* Rotating Border */
.rotating-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899, #0891b2);
    border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
    animation: rotateBorder 8s linear infinite, morphBorder 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes morphBorder {
    0%, 100% {
        border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
    }
    50% {
        border-radius: 60% 40% 35% 65% / 60% 55% 45% 40%;
    }
}

/* Profile Image */
.profile-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: morphImage 10s ease-in-out infinite;
}

@keyframes morphImage {
    0%, 100% {
        border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
    }
    50% {
        border-radius: 60% 40% 35% 65% / 60% 55% 45% 40%;
    }
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.1);
}

/* Floating Tech Icons around Profile */
.floating-tech-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    cursor: pointer;
}

.floating-tech-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(30, 41, 59, 0.95);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.floating-tech-icon:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.floating-tech-icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

/* Positioning for 8 icons in circular pattern */
.icon-1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #e34c26;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: -15px;
    color: #264de4;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.icon-3 {
    top: 45%;
    right: -25px;
    color: #f0db4f;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 1s;
}

.icon-4 {
    bottom: 20%;
    right: -15px;
    color: #61dafb;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.icon-5 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #306998;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 2s;
}

.icon-6 {
    bottom: 20%;
    left: -15px;
    color: #68a063;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 2.5s;
}

.icon-7 {
    top: 45%;
    left: -25px;
    color: #00758f;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 3s;
}

.icon-8 {
    top: 20%;
    left: -15px;
    color: #f05032;
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: 3.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Floating Tech Icons around Profile */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    animation: floatIcon 4s ease-in-out infinite;
    z-index: 10;
}

.floating-icon:hover {
    transform: scale(1.15) rotate(10deg) !important;
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
}

.icon-pos-1 {
    top: 30px;
    right: 20px;
    color: #61dafb;
    animation-delay: 0s;
}

.icon-pos-2 {
    top: 100px;
    left: -20px;
    color: #68a063;
    animation-delay: 0.5s;
}

.icon-pos-3 {
    bottom: 140px;
    left: 10px;
    color: #f7df1e;
    animation-delay: 1s;
}

.icon-pos-4 {
    bottom: 80px;
    right: 30px;
    color: #264de4;
    animation-delay: 1.5s;
}

.icon-pos-5 {
    top: 50%;
    right: -25px;
    color: #e34c26;
    animation-delay: 2s;
}

.icon-pos-6 {
    bottom: 200px;
    right: 80px;
    color: #306998;
    animation-delay: 2.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-8px) rotate(-3deg);
    }
    75% {
        transform: translateY(-12px) rotate(4deg);
    }
}

/* Info Cards */
.info-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
    animation: floatCard 5s ease-in-out infinite;
}

.card-experience {
    top: 50px;
    left: -80px;
    animation-delay: 0.5s;
}

.card-projects {
    bottom: 80px;
    right: -90px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.card-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1;
}

.card-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 5px 0 0 0;
    font-weight: 500;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeIn 1s ease-out 1.5s backwards;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #2563eb, transparent);
    position: relative;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        height: 50px;
        opacity: 1;
    }
    100% {
        height: 50px;
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Responsive Design for Hero */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .role-static,
    .role-word {
        font-size: 1.5rem;
    }
    
    .quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-box {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .profile-image-wrapper {
        width: 350px;
        height: 350px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 70px 0 25px 0;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-text-content {
        text-align: center;
        margin-bottom: 1.2rem;
        padding: 0;
    }
    
    .hero-badge-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 0.6rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-greeting {
        font-size: 1.05rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-heading-wrapper {
        margin-bottom: 0.8rem;
    }
    
    .role-text-wrapper {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .role-static,
    .role-word {
        font-size: 1.15rem;
    }
    
    .hero-description {
        font-size: 0.93rem;
        text-align: center;
        margin: 0 auto 1rem;
        line-height: 1.55;
        padding: 0 10px;
    }
    
    .hero-social-links {
        justify-content: center;
        margin-bottom: 1.2rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .hero-image-section {
        height: auto;
        padding: 0.5rem 0 0 0;
    }
    
    .profile-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .icon-pos-1 {
        top: 20px;
        right: 10px;
    }
    
    .icon-pos-2 {
        top: 80px;
        left: -10px;
    }
    
    .icon-pos-3 {
        bottom: 120px;
        left: 5px;
    }
    
    .icon-pos-4 {
        bottom: 60px;
        right: 20px;
    }
    
    .icon-pos-5 {
        top: 50%;
        right: -15px;
    }
    
    .icon-pos-6 {
        bottom: 180px;
        right: 60px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 60px 0 15px 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-text-content {
        margin-bottom: 0.8rem;
        padding: 0;
    }
    
    .hero-badge-wrapper {
        margin-bottom: 0.4rem;
    }
    
    .hero-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .badge-label {
        font-size: 0.75rem;
    }
    
    .status-indicator {
        width: 8px;
        height: 8px;
    }
    
    .hero-heading-wrapper {
        margin-bottom: 0.6rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-greeting {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }
    
    .role-text-wrapper {
        margin-bottom: 0.8rem;
        height: 35px;
    }
    
    .role-static,
    .role-word {
        font-size: 0.9rem;
        height: 35px;
        line-height: 35px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
        padding: 0 5px;
    }
    
    .hero-social-links {
        gap: 8px;
        margin-bottom: 0.8rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .hero-image-section {
        padding: 0;
        height: auto;
        margin-top: 0;
    }
    
    .profile-image-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .stat-box {
        height: 260px;
    }
    
    .stat-box {
        padding: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .icon-pos-1 {
        top: 15px;
        right: 5px;
    }
    
    .icon-pos-2 {
        top: 70px;
        left: -5px;
    }
    
    .icon-pos-3 {
        bottom: 100px;
        left: 0;
    }
    
    .icon-pos-4 {
        bottom: 50px;
        right: 15px;
    }
    
    .icon-pos-5 {
        top: 50%;
        right: -10px;
    }
    
    .icon-pos-6 {
        bottom: 150px;
        right: 50px;
    }
}

/* Animated Background Shapes */
.hero-bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #2563eb, #7c3aed);
    top: -100px;
    left: -100px;
    animation-duration: 15s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #0891b2, #2563eb);
    bottom: -100px;
    right: -100px;
    animation-duration: 18s;
    animation-delay: 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #7c3aed, #0891b2);
    top: 50%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #2563eb, #0891b2);
    top: 20%;
    right: 20%;
    animation-duration: 20s;
}

.shape-5 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #7c3aed, #2563eb);
    bottom: 20%;
    left: 50%;
    animation-duration: 25s;
    animation-delay: 6s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Grid Pattern Overlay */
.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Hero Content Box */
.hero-content-box {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

/* Status Indicator Dot - Vibrant Red */
.status-indicator-dot {
    width: 14px;
    height: 14px;
    background: #ef4444;
    border-radius: 50%;
    position: relative;
    animation: statusPulse 2s infinite;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.8), 0 0 24px rgba(239, 68, 68, 0.5), 0 0 36px rgba(239, 68, 68, 0.3);
}

.status-indicator-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f87171;
    animation: statusRing 2s infinite;
    box-shadow: 0 0 20px rgba(248, 113, 113, 0.7);
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.9; }
}

@keyframes statusRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.badge-text {
    color: #64ffda;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Title Animation */
.hero-main-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

.title-line {
    display: block;
    overflow: hidden;
}

.word-reveal {
    display: inline-block;
    margin-right: 15px;
    animation: revealWord 1s ease-out forwards;
    opacity: 0;
    transform: translateY(100%);
}

@keyframes revealWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-name {
    background: linear-gradient(135deg, #64ffda 0%, #2563eb 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4.5rem;
}

/* Dynamic Role Slider */
.role-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    height: 60px;
    overflow: hidden;
}

.role-prefix {
    font-size: 2rem;
    color: #94a3b8;
    font-weight: 600;
}

.role-slider {
    display: flex;
    flex-direction: column;
    animation: slideRoles 12s infinite;
}

.role-item {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #64ffda, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    height: 60px;
    display: flex;
    align-items: center;
}

@keyframes slideRoles {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-60px); }
    50%, 70% { transform: translateY(-120px); }
    75%, 95% { transform: translateY(-180px); }
    100% { transform: translateY(0); }
}

/* Description */
.hero-desc {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

/* Stats Row */
.hero-stats-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-count {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #64ffda, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.stat-text {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    transition: all 0.5s;
    z-index: -1;
}

.primary-btn:hover::before {
    left: 0;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
    color: white;
}

.secondary-btn {
    background: transparent;
    color: #64ffda;
    border: 2px solid #64ffda;
}

.secondary-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
    color: #64ffda;
}

/* Visual Wrapper - Right Side */
.hero-visual-wrapper {
    position: relative;
    height: 600px;
    z-index: 10;
}

/* 3D Card Stack */
.card-stack {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.stack-card {
    position: absolute;
    width: 350px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-1 {
    top: 50px;
    left: 0;
    transform: rotate(-5deg);
    animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
    top: 150px;
    left: 100px;
    transform: rotate(3deg);
    animation: floatCard2 7s ease-in-out infinite;
    animation-delay: 1s;
}

.card-3 {
    top: 280px;
    left: 50px;
    transform: rotate(-3deg);
    animation: floatCard3 8s ease-in-out infinite;
    animation-delay: 2s;
}

.stack-card:hover {
    transform: translateY(-20px) scale(1.05) rotate(0deg) !important;
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.4);
    border-color: rgba(100, 255, 218, 0.3);
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-3deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #64ffda;
    font-weight: 600;
}

.card-header i {
    font-size: 1.5rem;
}

.card-content {
    opacity: 0.7;
}

.code-line {
    height: 8px;
    background: linear-gradient(90deg, #2563eb, transparent);
    border-radius: 4px;
    margin-bottom: 8px;
}

.code-line.short {
    width: 60%;
}

.design-element {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    border-radius: 15px;
    margin-bottom: 10px;
    animation: rotate 4s linear infinite;
}

.progress-bar {
    height: 20px;
    background: linear-gradient(90deg, #22c55e, #2563eb);
    border-radius: 10px;
    animation: fillProgress 3s ease-in-out infinite;
}

@keyframes fillProgress {
    0%, 100% { width: 30%; }
    50% { width: 90%; }
}

/* Floating Tech Icons */
.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #64ffda;
    animation: floatIcon 5s ease-in-out infinite;
    transition: all 0.3s;
}

.tech-icon:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.4);
}

.icon-1 {
    top: 20px;
    right: 50px;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 100px;
    right: 20px;
    animation-delay: 1s;
}

.icon-3 {
    top: 200px;
    right: 150px;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 50px;
    left: 50px;
    animation-delay: 3s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeInUp 1s 1.5s backwards;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid #64ffda;
    border-radius: 15px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: #64ffda;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator p {
    color: #94a3b8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.05;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -50px;
    left: -50px;
    animation: float 20s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    animation: float 25s ease-in-out infinite;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-50px) translateX(50px); }
    50% { transform: translateY(-100px) translateX(-50px); }
    75% { transform: translateY(-50px) translateX(50px); }
}

/* ===================================
   Animated City Landscape
   =================================== */
.city-landscape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 1;
    pointer-events: none;
}

.city-background {
    position: absolute;
    bottom: 80px;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: flex-end;
}

.building {
    position: absolute;
    bottom: 0;
    width: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(37, 99, 235, 0.15));
    border-radius: 8px 8px 0 0;
    border: 2px solid rgba(139, 92, 246, 0.2);
    animation: buildingFloat 3s ease-in-out infinite;
}

.building::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        rgba(37, 99, 235, 0.1) 20px,
        rgba(37, 99, 235, 0.1) 25px
    );
}

.building:nth-child(even) {
    animation-delay: 1.5s;
}

@keyframes buildingFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.landscape-items {
    position: absolute;
    bottom: 80px;
    width: 100%;
    height: 60px;
}

.tree {
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 60px;
}

.tree::before {
    content: '🌳';
    font-size: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: treeSwing 3s ease-in-out infinite;
}

@keyframes treeSwing {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

.bus-stop {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 70px;
}

.bus-stop::before {
    content: '🚏';
    font-size: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, 
        rgba(71, 85, 105, 0.15) 0%,
        rgba(71, 85, 105, 0.25) 100%
    );
    border-top: 3px dashed rgba(139, 92, 246, 0.3);
}

/* Moving Car Animation */
.moving-car {
    position: absolute;
    bottom: 85px;
    left: -150px;
    width: 120px;
    height: 60px;
    animation: carMove 15s linear infinite;
    z-index: 2;
}

@keyframes carMove {
    0% { left: -150px; }
    100% { left: calc(100% + 150px); }
}

.car-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.car-body::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 100px;
    height: 35px;
    background: #ef4444;
    border-radius: 15px 15px 5px 5px;
}

.car-top {
    position: absolute;
    bottom: 35px;
    left: 30px;
    width: 60px;
    height: 25px;
    background: #dc2626;
    border-radius: 12px 12px 0 0;
}

.car-window {
    position: absolute;
    bottom: 37px;
    left: 35px;
    width: 20px;
    height: 18px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px 8px 0 0;
}

.car-wheel {
    position: absolute;
    bottom: -5px;
    width: 18px;
    height: 18px;
    background: #1e293b;
    border-radius: 50%;
    border: 3px solid #475569;
    animation: wheelRotate 0.5s linear infinite;
}

.wheel-front {
    left: 75px;
}

.wheel-back {
    left: 20px;
}

@keyframes wheelRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Moving Bicycle Animation */
.moving-bicycle {
    position: absolute;
    bottom: 85px;
    right: -150px;
    width: 100px;
    height: 60px;
    animation: bicycleMove 20s linear infinite;
    z-index: 2;
}

@keyframes bicycleMove {
    0% { right: -150px; }
    100% { right: calc(100% + 150px); }
}

.bicycle-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.bicycle-frame {
    position: absolute;
    bottom: 12px;
    left: 20px;
    width: 55px;
    height: 2px;
    background: #0891b2;
    transform: rotate(-10deg);
}

.bicycle-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 10px;
    width: 2px;
    height: 25px;
    background: #0891b2;
    transform: rotate(-30deg);
}

.bicycle-frame::after {
    content: '';
    position: absolute;
    top: -15px;
    right: 5px;
    width: 2px;
    height: 20px;
    background: #0891b2;
    transform: rotate(60deg);
}

.bicycle-seat {
    position: absolute;
    bottom: 30px;
    left: 35px;
    width: 15px;
    height: 5px;
    background: #475569;
    border-radius: 3px;
}

.bicycle-handle {
    position: absolute;
    bottom: 28px;
    left: 60px;
    width: 12px;
    height: 3px;
    background: #0891b2;
    border-radius: 2px;
}

.rider {
    position: absolute;
    bottom: 30px;
    left: 32px;
}

.rider-head {
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: 5px;
}

.rider-body {
    width: 3px;
    height: 18px;
    background: #2563eb;
    position: absolute;
    top: -3px;
    left: 9px;
}

.bicycle-wheel {
    position: absolute;
    bottom: 0;
    width: 22px;
    height: 22px;
    border: 3px solid #0891b2;
    border-radius: 50%;
    background: transparent;
    animation: wheelRotate 0.4s linear infinite;
}

.wheel-front-bike {
    left: 60px;
}

.wheel-back-bike {
    left: 15px;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 50px;
    border: 2px solid var(--light-bg-3);
    box-shadow: var(--shadow-sm);
    animation: pulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.badge-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wave {
    display: inline-block;
    animation: wave 2s infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.stat-box .stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

/* ===================================
   Animated Coding Screen
   =================================== */
.coding-screen {
    position: relative;
    z-index: 3;
    width: 550px;
    background: #0a192f;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(10, 25, 47, 0.4);
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    animation: screenGlow 3s ease-in-out infinite;
}

@keyframes screenGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(10, 25, 47, 0.4),
                    0 0 20px rgba(100, 255, 218, 0.1);
    }
    50% {
        box-shadow: 0 20px 60px rgba(10, 25, 47, 0.6),
                    0 0 30px rgba(100, 255, 218, 0.2);
    }
}

.screen-header {
    background: #112240;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.screen-buttons {
    display: flex;
    gap: 8px;
}

.screen-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.btn-close-screen {
    background: #ff5f57;
    box-shadow: 0 0 5px rgba(255, 95, 87, 0.5);
}

.btn-minimize {
    background: #ffbd2e;
    box-shadow: 0 0 5px rgba(255, 189, 46, 0.5);
}

.btn-maximize {
    background: #28ca42;
    box-shadow: 0 0 5px rgba(40, 202, 66, 0.5);
}

.screen-title {
    color: #64ffda;
    font-size: 0.9rem;
    font-family: 'Fira Code', monospace;
    font-weight: 500;
}

.screen-title i {
    margin-right: 8px;
    color: #64ffda;
}

.screen-body {
    background: #0a192f;
    padding: 20px;
    display: flex;
    gap: 15px;
    min-height: 350px;
    max-height: 350px;
    overflow: hidden;
}

.line-numbers {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #495670;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    user-select: none;
    padding-top: 2px;
}

.line-numbers span {
    line-height: 1.6;
    text-align: right;
    min-width: 25px;
}

.code-content {
    flex: 1;
    position: relative;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #8892b0;
}

.code-content pre {
    margin: 0;
    padding: 0;
}

.code-content code {
    display: block;
    white-space: pre;
}

/* Syntax Highlighting */
.code-content .keyword {
    color: #c792ea;
}

.code-content .function {
    color: #82aaff;
}

.code-content .string {
    color: #c3e88d;
}

.code-content .comment {
    color: #637777;
    font-style: italic;
}

.code-content .variable {
    color: #f07178;
}

.code-content .number {
    color: #f78c6c;
}

.code-cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background: #64ffda;
    animation: cursorBlink 1s infinite;
    margin-left: 2px;
    vertical-align: middle;
}

@keyframes cursorBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-image-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-main-image {
    position: relative;
    z-index: 2;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid white;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    animation: floatCard 3s ease-in-out infinite;
    border: 2px solid var(--light-bg-3);
}

.floating-card i {
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-container {
    height: 80px;
}

.typing-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cursor {
    display: inline-block;
    width: 3px;
    background: var(--primary-color);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary::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: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline-light {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: white;
    box-shadow: var(--shadow-sm);
}

.btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light:active {
    transform: translateY(-1px);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: var(--transition);
    border: 2px solid var(--light-bg-3);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
    z-index: -1;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down a {
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===================================
   Section Styles
   =================================== */
.section-padding {
    padding: 120px 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    margin-bottom: 1rem;
}

.title-number {
    font-family: 'Fira Code', monospace;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.section-divider {
    width: 100px;
    height: 5px;
    background: var(--gradient-1);
    margin: 1.5rem auto;
    border-radius: 10px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-divider::before {
    left: -15px;
}

.section-divider::after {
    right: -15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   About Section - Unique Layout with Digital Marketing
   =================================== */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    padding-top: 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-unique-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 10;
}

/* Combined Section */
.about-combined-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 255, 0.98) 100%);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.about-intro-card {
    padding-right: 30px;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-name {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.intro-role {
    font-size: 22px;
    color: #0891b2;
    font-weight: 600;
    margin-bottom: 25px;
}

.intro-description {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: justify;
}

/* Connect Button */
.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.connect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.connect-btn:hover::before {
    left: 0;
}

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.connect-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.connect-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Action Buttons Container */
.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* CV Button */
.cv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #2563eb;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.2);
}

.cv-btn:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cv-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cv-btn:hover i {
    transform: translateY(2px);
}

/* Connect Button - Animated Glow */
.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.4), 
                    0 0 40px rgba(124, 58, 237, 0.2),
                    0 5px 15px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.6), 
                    0 0 60px rgba(124, 58, 237, 0.4),
                    0 8px 25px rgba(37, 99, 235, 0.5);
    }
}

.connect-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.connect-btn:hover {
    transform: translateY(-3px) scale(1.05);
    animation: glow-pulse 1s ease-in-out infinite;
}

/* Services Description */
.services-description {
    margin-top: 10px;
}

.service-paragraph {
    font-size: 16px;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
}

.service-paragraph::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 2px;
}

.service-paragraph strong {
    color: #1e293b;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Combined Visual Section */
.about-visual-combined {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    height: 100%;
}

/* About Description Box with Animated Border */
.about-description-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 3px solid;
    border-image: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899, #0891b2, #2563eb) 1;
    animation: borderColorChange 8s linear infinite;
    background-size: 400% 400%;
}

@keyframes borderColorChange {
    0% {
        border-image: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899, #0891b2) 1;
    }
    25% {
        border-image: linear-gradient(135deg, #7c3aed, #ec4899, #0891b2, #2563eb) 1;
    }
    50% {
        border-image: linear-gradient(135deg, #ec4899, #0891b2, #2563eb, #7c3aed) 1;
    }
    75% {
        border-image: linear-gradient(135deg, #0891b2, #2563eb, #7c3aed, #ec4899) 1;
    }
    100% {
        border-image: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899, #0891b2) 1;
    }
}

.about-description-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.12);
}

.about-para {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-para:last-child {
    margin-bottom: 0;
}

.about-para strong {
    color: #1e293b;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive About Section */
@media (max-width: 991px) {
    .about-combined-section {
        padding: 40px;
    }
    
    .about-intro-card {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .intro-name {
        font-size: 36px;
    }
    
    .intro-role {
        font-size: 18px;
    }
    
    .intro-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .connect-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .cv-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .about-visual-combined {
        padding: 20px;
        height: auto;
    }
    
    .about-description-box {
        padding: 30px;
    }
    
    .about-para {
        font-size: 15px;
        margin-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .about-combined-section {
        padding: 30px 20px;
    }
    
    .intro-name {
        font-size: 32px;
    }
    
    .intro-role {
        font-size: 16px;
    }
    
    .intro-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .connect-btn {
        padding: 12px 25px;
        font-size: 14px;
        gap: 8px;
    }
    
    .cv-btn {
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
    }
    
    .action-buttons {
        gap: 12px;
    }
    
    .service-paragraph {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 20px;
    }
    
    .service-paragraph::before {
        height: 16px;
    }
    
    .about-visual-combined {
        padding: 15px;
        height: auto;
    }
    
    .about-description-box {
        padding: 25px 20px;
        border-width: 2px;
    }
    
    .about-para {
        font-size: 15px;
        margin-bottom: 16px;
    }
}

@media (max-width: 575px) {
    .about-unique-layout {
        gap: 30px;
    }
    
    .about-combined-section {
        padding: 25px 15px;
    }
    
    .intro-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .intro-name {
        font-size: 28px;
    }
    
    .intro-role {
        font-size: 15px;
    }
    
    .intro-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .connect-btn {
        padding: 10px 22px;
        font-size: 13px;
        gap: 6px;
    }
    
    .btn-arrow {
        width: 16px;
        height: 16px;
    }
    
    .service-paragraph {
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 18px;
    }
    
    .service-paragraph::before {
        height: 14px;
        width: 3px;
    }
    
    .about-visual-combined {
        height: auto;
        padding: 10px;
    }
    
    .about-description-box {
        padding: 20px 15px;
        border-width: 2px;
    }
    
    .about-para {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: left;
    }
}

/* ===================================
   Timeline Section
   =================================== */
.timeline-section {
    background: var(--light-bg-2);
}

.timeline-tabs .nav-pills .nav-link {
    background: white;
    color: var(--text-secondary);
    border: 2px solid var(--light-bg-3);
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.timeline-tabs .nav-pills .nav-link:hover {
    background: var(--light-bg-2);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.timeline-tabs .nav-pills .nav-link.active {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--light-bg-3);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    opacity: 0;
    animation: slideIn 0.6s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    border: 4px solid var(--light-bg-2);
    z-index: 2;
    box-shadow: 0 0 0 4px white;
}

.timeline-content {
    background: white;
    padding: 2.25rem;
    border-radius: 15px;
    border: 2px solid var(--light-bg-3);
    transition: var(--transition-slow);
    max-width: 500px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid var(--light-bg-3);
    transform: rotate(45deg);
    left: -11px;
    top: 40px;
    transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: auto;
    right: -11px;
}

.timeline-content:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.timeline-content:hover::before {
    border-color: var(--primary-color);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timeline-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.timeline-company {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: var(--light-bg-2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

/* Certificate Verification Button */
.cert-verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.cert-verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    color: #ffffff;
}

.cert-verify-btn i {
    font-size: 12px;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding-top: 3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Box - 3D Flip Card */
.service-box {
    perspective: 1000px;
    height: 420px;
}

.service-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-box:hover .service-box-inner {
    transform: rotateY(180deg);
}

.service-front,
.service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Front Side */
.service-front {
    background: white;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.15;
    }
}

.service-icon-wrapper i {
    font-size: 3rem;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.service-front h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-tagline {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.explore-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    padding: 10px 20px;
    border: 2px solid #2563eb;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.explore-more i {
    transition: transform 0.3s ease;
}

.service-box:hover .explore-more i {
    transform: translateX(5px);
}

/* Back Side */
.service-back {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 30px 25px;
    justify-content: flex-start;
}

.service-back h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    width: 100%;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-list i {
    color: #93c5fd;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
    width: 100%;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Old service card styles - keep for backward compatibility */
.service-card {
    background: white;
    padding: 2.75rem;
    border-radius: 20px;
    border: 2px solid var(--light-bg-3);
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(124, 58, 237, 0.02) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-lg);
}

.service-icon i {
    font-size: 2.75rem;
    color: white;
}

.service-card h3 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-align: justify;
}

/* ===================================
   Projects Section
   =================================== */
.projects-section {
    background: white;
}

/* Project Filters */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: #f8fafc;
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Project Card */
.project-item {
    transition: all 0.5s ease;
}

.project-item.hide {
    display: none;
    opacity: 0;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.project-card:hover .project-overlay {
    opacity: 1;
    pointer-events: auto;
}

.project-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.project-card:hover .project-actions {
    transform: translateY(0);
}

.project-view,
.project-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    padding: 0;
}

.project-view:hover,
.project-link:hover {
    background: white;
    color: #333;
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.project-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    max-height: 280px;
}

.project-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-date {
    color: #2563eb !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-date i {
    font-size: 0.75rem;
}

.project-info p {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.project-tags .tag {
    background: #f1f5f9;
    color: #2563eb;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Brand Identity Auto Slider */
.brand-slider,
.social-slider {
    position: relative;
    overflow: hidden;
}

.brand-slide,
.social-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: fill;
    cursor: pointer;
    pointer-events: none;
}

.brand-slide.active,
.social-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* PDF Preview Styles */
.pdf-preview {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    pointer-events: none;
}

.pdf-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.pdf-click-overlay i {
    font-size: 3rem;
}

.pdf-preview:hover .pdf-click-overlay {
    opacity: 1;
}

.project-image {
    cursor: pointer;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-align: justify;
}

.service-features {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    color: var(--text-muted);
    margin-bottom: 0.875rem;
    padding-left: 2rem;
    position: relative;
    transition: var(--transition);
}

.service-features li:hover {
    color: var(--text-secondary);
    transform: translateX(5px);
}

.service-features li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    height: 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.service-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 6rem;
    font-weight: 900;
    color: var(--light-bg-3);
    opacity: 0.4;
    font-family: 'Fira Code', monospace;
    z-index: 0;
    transition: var(--transition);
}

.service-card:hover .service-number {
    opacity: 0.6;
    transform: scale(1.1);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--light-bg-2);
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--light-bg-3);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-bg-3);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-text h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-text a,
.contact-text p {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light-bg-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 2px solid var(--light-bg-3);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    text-decoration: none;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--light-bg-3);
    box-shadow: var(--shadow-sm);
}

.form-group {
    position: relative;
}

.form-control {
    background: var(--light-bg-2);
    border: 2px solid var(--light-bg-3);
    color: var(--text-primary);
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 10px;
    transition: var(--transition);
}

.form-control:focus {
    background: white;
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.form-group textarea + label {
    top: 1rem;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    color: #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #ef4444;
    display: block;
}

/* ===================================
   Footer - World Class Unique Design
   =================================== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 0;
    overflow: hidden;
}

/* Animated Background Pattern */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(8, 145, 178, 0.1) 0%, transparent 50%);
    animation: footerGlow 15s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Floating Geometric Shapes */
.footer::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: -200px;
    right: -200px;
    animation: morphShape 20s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% { 
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }
    50% { 
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
        transform: rotate(180deg);
    }
}

/* Footer Main Content Wrapper */
.footer > .container {
    position: relative;
    z-index: 2;
    padding: 5rem 0 0;
}

/* Footer Brand Section */
.footer-about {
    position: relative;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Quick Links Styling */
.footer-links h5 {
    color: #f1f5f9;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.85rem;
}

.footer-links ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #3b82f6;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(10px);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter Section */
.footer-newsletter h5 {
    color: #f1f5f9;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-newsletter h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #f59e0b);
    border-radius: 10px;
}

.footer-newsletter p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
}

.newsletter-form .input-group:focus-within {
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 0.95rem;
    flex: 1;
    outline: none;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    color: white;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    min-width: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    transition: all 0.3s ease;
    margin: 0;
}

.newsletter-form .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.5);
}

/* Footer Bottom Section */
.footer-bottom {
    margin-top: 4rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.copyright {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.95rem;
}

.copyright #currentYear {
    font-weight: 600;
    color: #60a5fa;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    justify-content: flex-end;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    border-color: #3b82f6;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover {
    color: white;
}

/* Footer Contact Quick Links */
.footer-contact-quick a {
    text-decoration: none;
}

.footer-contact-quick a:hover {
    color: white !important;
    text-decoration: none;
}

/* Decorative Wave at Top of Footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f8fafc' fill-opacity='1' d='M0,32L48,37.3C96,43,192,53,288,58.7C384,64,480,64,576,58.7C672,53,768,43,864,42.7C960,43,1056,53,1152,56C1248,59,1344,53,1392,50.7L1440,48L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    z-index: 1;
}

/* ===================================
   Animated City Landscape Section
   =================================== */
.city-animation-section {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, var(--light-bg-2) 0%, #fef3c7 100%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0;
    margin: 0;
}

#city-lottie-animation {
    width: 100%;
    height: 100%;
    max-height: 300px;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.35rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.back-to-top:hover::before {
    width: 100%;
    height: 100%;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.back-to-top:active {
    transform: translateY(-5px) scale(1.05);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .section-padding {
        padding: 100px 0;
    }

    .hero-main-image {
        width: 450px;
        height: 450px;
    }
    
    .city-landscape {
        height: 250px;
    }
    
    .building {
        width: 60px;
    }
    
    .moving-car {
        width: 100px;
        height: 50px;
        animation: carMove 12s linear infinite;
    }
    
    .moving-bicycle {
        width: 85px;
        height: 50px;
        animation: bicycleMove 16s linear infinite;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .typing-text {
        font-size: 1.65rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }

    .service-box {
        height: 400px;
    }

    .project-filters {
        gap: 12px;
    }

    .filter-btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .project-image {
        height: 250px;
    }

    .floating-tech-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content::before {
        left: -11px !important;
        right: auto !important;
    }

    .about-stats {
        position: static;
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-image-wrapper {
        height: 450px;
        margin-bottom: 3rem;
    }

    .hero-main-image {
        width: 380px;
        height: 380px;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .floating-card {
        padding: 0.85rem 1.25rem;
    }
    
    .coding-screen {
        width: 480px;
    }
    
    .screen-body {
        min-height: 300px;
        max-height: 300px;
    }
    
    .city-landscape {
        height: 200px;
    }
    
    .city-background {
        bottom: 60px;
        height: 180px;
    }
    
    .building {
        width: 50px;
    }
    
    .road {
        height: 60px;
    }
    
    .moving-car {
        bottom: 65px;
        width: 90px;
        height: 45px;
        animation: carMove 10s linear infinite;
    }
    
    .moving-bicycle {
        bottom: 65px;
        width: 75px;
        height: 45px;
        animation: bicycleMove 14s linear infinite;
    }
    
    .tree::before {
        font-size: 40px;
    }
    
    .bus-stop::before {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .typing-text {
        font-size: 1.35rem;
    }

    .typing-container {
        height: 60px;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-buttons .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-box {
        height: 380px;
    }

    .service-front,
    .service-back {
        padding: 30px 20px;
    }

    .floating-tech-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .icon-1, .icon-2, .icon-3, .icon-4, 
    .icon-5, .icon-6, .icon-7, .icon-8 {
        animation: floatIcon 3s ease-in-out infinite;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 0.875rem;
    }

    .timeline-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-tabs .nav-pills {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .timeline-tabs .nav-pills .nav-link {
        margin: 0;
        padding: 0.875rem 1.5rem;
        text-align: center;
    }

    .timeline-tabs .nav-pills .nav-item {
        width: 100%;
    }

    .timeline-item {
        padding-left: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .timeline-marker {
        left: 0;
    }

    .project-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .project-image {
        height: 220px;
    }

    .project-image img {
        object-fit: fill;
    }

    .project-info {
        padding: 20px;
    }

    .project-info h4 {
        font-size: 1.2rem;
    }

    .project-info p {
        font-size: 0.9rem;
    }

    .project-date {
        font-size: 0.8rem !important;
    }

    .footer-social {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer > .container {
        padding: 3rem 0 0;
    }

    .footer-title {
        font-size: 2rem;
        text-align: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-stats {
        justify-content: center;
    }

    .footer-links h5,
    .footer-newsletter h5 {
        text-align: center;
    }

    .footer-links h5::after,
    .footer-newsletter h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul {
        text-align: center;
    }

    .footer-links ul li a::before {
        display: none;
    }

    .footer-contact-quick {
        text-align: center;
    }

    .footer-bottom {
        padding: 2rem 0;
    }

    .copyright {
        text-align: center !important;
        margin-bottom: 1rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-image-wrapper {
        height: 350px;
    }

    .hero-main-image {
        width: 300px;
        height: 300px;
    }
    
    .coding-screen {
        width: 95%;
        max-width: 400px;
    }
    
    .screen-body {
        padding: 15px;
        min-height: 250px;
        max-height: 250px;
        font-size: 0.8rem;
    }
    
    .code-content {
        font-size: 0.75rem;
    }
    
    .line-numbers {
        font-size: 0.75rem;
    }

    .floating-card {
        padding: 0.65rem 0.95rem;
        font-size: 0.8rem;
    }

    .floating-card i {
        font-size: 1.15rem;
    }

    .hero-stats {
        gap: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-box .stat-label {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-number {
        font-size: 4rem;
    }

    .about-content h3 {
        font-size: 1.75rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .city-animation-section {
        height: 200px;
    }
    
    #city-lottie-animation {
        max-height: 200px;
    }
    
    .city-landscape {
        height: 150px;
    }
    
    .city-background {
        bottom: 50px;
        height: 120px;
    }
    
    .building {
        width: 40px;
    }
    
    .building::before {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
    }
    
    .road {
        height: 50px;
    }
    
    .landscape-items {
        bottom: 50px;
        height: 40px;
    }
    
    .tree {
        width: 35px;
        height: 40px;
    }
    
    .tree::before {
        font-size: 30px;
    }
    
    .bus-stop {
        width: 60px;
        height: 50px;
    }
    
    .bus-stop::before {
        font-size: 40px;
    }
    
    .moving-car {
        bottom: 55px;
        width: 70px;
        height: 35px;
        animation: carMove 8s linear infinite;
    }
    
    .car-body::before {
        width: 60px;
        height: 25px;
        left: 5px;
    }
    
    .car-top {
        bottom: 25px;
        left: 20px;
        width: 40px;
        height: 18px;
    }
    
    .car-window {
        bottom: 27px;
        left: 23px;
        width: 15px;
        height: 13px;
    }
    
    .car-wheel {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }
    
    .wheel-front {
        left: 45px;
    }
    
    .wheel-back {
        left: 12px;
    }
    
    .moving-bicycle {
        bottom: 55px;
        width: 60px;
        height: 35px;
        animation: bicycleMove 10s linear infinite;
    }
    
    .bicycle-frame {
        bottom: 8px;
        left: 12px;
        width: 40px;
    }
    
    .bicycle-seat {
        bottom: 22px;
        left: 25px;
        width: 12px;
        height: 4px;
    }
    
    .bicycle-handle {
        bottom: 20px;
        left: 45px;
        width: 10px;
    }
    
    .rider-head {
        width: 10px;
        height: 10px;
        top: -12px;
    }
    
    .rider-body {
        width: 2px;
        height: 14px;
        left: 7px;
    }
    
    .bicycle-wheel {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }
    
    .wheel-front-bike {
        left: 42px;
    }
    
    .wheel-back-bike {
        left: 10px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.95rem;
    }

    .typing-text {
        font-size: 1.2rem;
    }

    .navbar-brand .logo-image {
        height: 70px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .title-number {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .service-icon {
        width: 75px;
        height: 75px;
    }

    .service-icon i {
        font-size: 2.25rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-number {
        font-size: 3.5rem;
    }

    .project-image {
        height: 200px;
    }

    .project-info {
        padding: 18px;
    }

    .project-info h4 {
        font-size: 1.1rem;
    }

    .project-info p {
        font-size: 0.85rem;
    }

    .project-tags .tag {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .service-box {
        height: 360px;
    }

    .service-icon-wrapper {
        width: 85px;
        height: 85px;
    }

    .service-icon-wrapper i {
        font-size: 2.5rem;
    }

    .service-front h3 {
        font-size: 1.5rem;
    }

    .service-back h4 {
        font-size: 1.25rem;
    }

    .service-list li {
        font-size: 0.85rem;
    }

    .floating-tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .icon-1, .icon-5 {
        transform: translateX(-50%) scale(0.9);
    }
    
    .coding-screen {
        width: 95%;
        max-width: 350px;
    }
    
    .screen-header {
        padding: 8px 10px;
    }
    
    .screen-title {
        font-size: 0.7rem;
    }
    
    .screen-body {
        padding: 10px;
        min-height: 220px;
        max-height: 220px;
        font-size: 0.7rem;
    }
    
    .code-content {
        font-size: 0.7rem;
    }
    
    .line-numbers {
        font-size: 0.7rem;
        padding-right: 8px;
        margin-right: 8px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 1.75rem;
    }

    .hero-image-wrapper {
        height: 300px;
    }

    .hero-main-image {
        width: 260px;
        height: 260px;
    }

    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .stat-box {
        flex: 1;
        min-width: 80px;
    }
    
    .city-animation-section {
        height: 150px;
    }
    
    #city-lottie-animation {
        max-height: 150px;
    }
    
    .city-landscape {
        height: 120px;
    }
    
    .city-background {
        bottom: 40px;
        height: 100px;
    }
    
    .building {
        width: 30px;
    }
    
    .road {
        height: 40px;
    }
    
    .moving-car {
        bottom: 45px;
        width: 60px;
        height: 30px;
    }
    
    .moving-bicycle {
        bottom: 45px;
        width: 50px;
        height: 30px;
    }
    
    .tree::before,
    .bus-stop::before {
        font-size: 25px;
    }

    .timeline-tabs .nav-pills .nav-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .timeline-item {
        padding-left: 2rem;
        margin-bottom: 2rem;
    }

    .timeline-content {
        padding: 1.25rem;
    }

    .cert-verify-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .typing-text {
        font-size: 1.05rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-main-image {
        width: 240px;
        height: 240px;
    }

    .floating-card {
        padding: 0.5rem 0.75rem;
    }

    .card-1, .card-3 {
        left: -10px;
    }

    .card-2 {
        right: -10px;
    }
    
    .coding-screen {
        width: 95%;
        max-width: 320px;
    }
    
    .screen-header {
        padding: 6px 8px;
    }
    
    .screen-title {
        font-size: 0.65rem;
    }
    
    .btn-close-screen,
    .btn-minimize,
    .btn-maximize {
        width: 8px;
        height: 8px;
    }
    
    .screen-body {
        padding: 8px;
        min-height: 200px;
        max-height: 200px;
        font-size: 0.65rem;
    }
    
    .code-content {
        font-size: 0.65rem;
    }
    
    .line-numbers {
        font-size: 0.65rem;
        padding-right: 6px;
        margin-right: 6px;
    }
    
    .city-animation-section {
        height: 120px;
    }
    
    #city-lottie-animation {
        max-height: 120px;
    }
}

/* ===================================
   Custom Image Viewer Modal
   =================================== */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content-wrapper {
    position: relative;
    max-width: 600px;
    max-height: 80vh;
    width: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
    background: #2563eb;
    color: white;
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.modal-nav:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev {
    left: 15px;
}

.modal-nav.next {
    right: 15px;
}

.modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-nav:disabled:hover {
    background: white;
    color: #333;
    transform: translateY(-50%);
}

.modal-info {
    padding: 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.modal-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.modal-counter {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .modal-content-wrapper {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .modal-image-container {
        height: 350px;
    }
    
    .modal-info {
        padding: 15px;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-description {
        font-size: 0.85rem;
    }
}
