/* ==========================================================================
   CSS Variables & Theme
   ========================================================================== */
:root {
    --primary: #FF6B00;
    --primary-hover: #E05A00;
    --secondary: #0A0A0A;
    --bg-color: #FAFAFA;
    --bg-light: #F4F4F5;
    --text-color: #171717;
    --text-muted: #525252;
    --white: #FFFFFF;
    --radius: 24px;
    --radius-sm: 12px;
    --radius-pill: 100px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 24px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    color: var(--secondary);
}

h1 { font-size: clamp(2.2rem, 8vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700; }
h3 { font-size: 1.5rem; letter-spacing: -0.02em; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.125rem; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white p { color: rgba(255, 255, 255, 0.7); }

.gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Layout & Components
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.bg-light { background-color: var(--white); }
.bg-dark { background-color: var(--secondary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.btn-text:hover {
    gap: 12px;
}

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

/* ==========================================================================
   Dynamic Floating Header (Antigravity Style)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s ease, background 0.5s ease;
}

.header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    transition: var(--transition);
}

/* Scrolled & Glassmorphism state (Now Permanent) */
.header-inner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px 24px;
}

.header.scrolled {
    padding: 12px 0;
}

.header.scrolled .header-inner-wrap {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

/* Hide header when scrolling down */
.header.header-hidden {
    transform: translateY(-120%);
}

.logo {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 800;
    color: var(--secondary); /* Dark text for light pill */
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.logo span {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--secondary); /* Dark text for light pill */
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--secondary); /* Dark text for light pill */
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px 0;
    overflow: hidden;
    background-color: var(--secondary);
}

/* Glowing Background Blobs */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.hero-glow-1 {
    top: -20%;
    left: -10%;
    background: var(--primary);
}

.hero-glow-2 {
    bottom: -10%;
    right: -5%;
    background: #8b5cf6; /* Deep Purple */
}

/* Bento Grid Layout */
.bento-hero .container {
    position: relative;
    z-index: 10;
}

.bento-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* Base Card Styling */
.bento-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 0, 0.2);
}

/* Individual Cell Placement */
.bento-text-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    padding: 60px;
}

.bento-visual-cell {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.04), transparent);
}

/* Text Cell Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    width: max-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.hero-title {
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Visual Cell Content */
.bento-image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: scale(1.05) rotate(2deg) translateX(10px);
    transition: transform 0.5s ease;
}

.bento-visual-cell:hover .bento-img {
    transform: scale(1.02) rotate(0deg) translateX(0);
}



/* ==========================================================================
   Services Section (Premium Cards)
   ========================================================================== */
.section-header {
    margin-bottom: 70px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-color);
    padding: 48px 40px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0.5;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 0, 0.2);
    background: var(--white);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

/* ==========================================================================
   Projects Section
   ========================================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.project-image::after {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.1);
    transition: var(--transition);
}

.project-card:hover .project-image::after {
    background: rgba(0,0,0,0);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-info {
    padding: 32px;
    background: var(--white);
}

.project-title {
    margin-bottom: 16px;
    font-size: 1.35rem;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-swiper {
    padding: 20px 0 60px 0;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 48px 40px;
    border-radius: var(--radius);
    text-align: left;
    transition: var(--transition);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.rating {
    color: #FFB800;
    margin-bottom: 24px;
    font-size: 1.3rem;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.client-name {
    margin-bottom: 4px;
    color: var(--white);
}

.client-role {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.3;
    width: 10px; height: 10px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 24px;
    border-radius: 10px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius);
}

.about-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-top: 5px;
    line-height: 1.2;
}

.features-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.05rem;
}

.features-list i {
    color: var(--primary);
    font-size: 1.4rem;
}

/* ==========================================================================
   Contact / Inquiry Section
   ========================================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 0, 0.08);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.contact-item a {
    color: var(--text-muted);
    font-size: 1.1rem;
    word-break: break-word;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-color);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

/* ==========================================================================
   Footer (Swarvani Style Floating Card)
   ========================================================================== */
.footer-wrapper {
    background: transparent;
    padding: 40px 0 40px 0;
    width: 100%;
}

.footer-card {
    background: var(--secondary);
    color: var(--white);
    border-radius: 32px;
    padding: 60px 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.footer-decorator {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.decorator-top-left {
    top: 20px;
    left: 20px;
}

.decorator-top-right {
    top: 20px;
    right: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 5fr 7fr;
        gap: 80px;
    }
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-desc {
    margin: 16px 0 0 0;
    max-width: 380px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 1.05rem;
}

.footer-title {
    margin-bottom: 24px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-2px);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .experience-badge {
        right: 0;
        bottom: -20px;
        width: 140px;
        height: 140px;
    }

    .experience-badge .years {
        font-size: 2.2rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
    
    .contact-wrapper {
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Header Adjustments */
    .header .header-inner-wrap {
        padding: 10px 16px;
    }

    .header.scrolled {
        padding: 12px 0;
    }

    /* Mobile Nav */
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(120%);
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 40px;
        box-shadow: -20px 0 40px rgba(0,0,0,0.1);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav.open {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        color: var(--secondary);
        font-size: 1.5rem;
        font-weight: 600;
        display: inline-block;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1000;
        color: var(--secondary) !important;
    }

    .header-actions .btn {
        display: none;
    }
    
    /* Layout Adjustments */
    .section {
        padding: 60px 0;
    }
    
    .bento-hero {
        padding: 120px 0 40px 0;
        min-height: auto;
    }
    
    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .bento-card {
        padding: 30px 24px;
        min-height: 250px;
    }
    
    .bento-text-cell {
        text-align: center;
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .slide-content {
        padding-top: 60px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-card {
        padding: 40px 24px;
        border-radius: 24px;
    }
    
    .footer-links-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .slide-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .slide-buttons .btn {
        width: 100%;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .review-card {
        padding: 32px 24px;
    }
    
    .experience-badge {
        position: relative;
        right: 0;
        bottom: 0;
        margin: -40px auto 30px auto;
        transform: translateY(0);
        animation: none;
    }
    
    .about-image-wrapper {
        display: flex;
        flex-direction: column;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #e65c00;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.6);
}

