/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #3d1f4d;
    --dark-purple: #2a1535;
    --gradient-orange: #ff9a3c;
    --gradient-pink: #ff4d8f;
    --gradient-blue: #5b4cff;
    --gradient-purple: #8b3dff;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--text-white);
    background: #0d0615;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: #0d0615;
}

/* ===================================
   Page Loader
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3d1f4d 0%, #2a1535 50%, #1a0d24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeInScale 0.8s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.loader-logo {
    margin-bottom: 2rem;
}

.loader-text {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff4d8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Spinner */
.loader-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: #ff9a3c;
    animation-duration: 1.5s;
}

.spinner-ring:nth-child(2) {
    border-right-color: #ff4d8f;
    animation-duration: 2s;
    animation-delay: 0.2s;
}

.spinner-ring:nth-child(3) {
    border-bottom-color: #8b3dff;
    animation-duration: 2.5s;
    animation-delay: 0.4s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-message {
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 1px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #3d1f4d 0%, #2a1535 50%, #1a0d24 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid #5b4cff;
    top: 15%;
    left: 45%;
    opacity: 0.8;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.shape-circle-purple {
    width: 150px;
    height: 150px;
    border: 15px solid #8b3dff;
    border-radius: 50%;
    bottom: 25%;
    left: 25%;
    opacity: 0.6;
    animation-delay: 1s;
}

.shape-hexagon {
    width: 100px;
    height: 57.74px;
    background: #8b3dff;
    position: absolute;
    bottom: 15%;
    right: 15%;
    opacity: 0.7;
    animation-delay: 2s;
}

.shape-hexagon:before,
.shape-hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    left: 0;
}

.shape-hexagon:before {
    bottom: 100%;
    border-bottom: 28.87px solid #8b3dff;
}

.shape-hexagon:after {
    top: 100%;
    width: 0;
    border-top: 28.87px solid #8b3dff;
}

.shape-circle-orange {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff9a3c 0%, #ffcc00 100%);
    border-radius: 50%;
    top: 5%;
    right: 5%;
    opacity: 0.4;
    animation-delay: 1.5s;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(42, 21, 53, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(42, 21, 53, 0.98);
}

.navbar-brand .logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff4d8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.navbar-nav {
    gap: 2rem;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff4d8f !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff9a3c 0%, #ff4d8f 100%);
}

.btn-download {
    background: linear-gradient(135deg, #5b4cff 0%, #8b3dff 100%);
    color: var(--text-white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(91, 76, 255, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 76, 255, 0.4);
    color: var(--text-white);
}

/* ===================================
   Hero Content
   =================================== */
.hero-content {
    min-height: calc(100vh - 100px);
    position: relative;
    z-index: 10;
    padding: 3rem 0;
}

.hero-text {
    padding: 2rem 0;
    padding-left: 3rem;
}

.hero-name {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.name-first {
    background: linear-gradient(135deg, #ff9a3c 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.name-last {
    background: linear-gradient(135deg, #ff4d8f 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-portfolio {
    background: linear-gradient(135deg, #ff9a3c 0%, #ff4d8f 100%);
    color: var(--text-white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 77, 143, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-portfolio:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 77, 143, 0.4);
    color: var(--text-white);
}

/* Hero Image */
.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ===================================
   Statistics Section
   =================================== */
.statistics-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
}

.col-lg-3:last-child .stat-item::after {
    display: none;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.stat-yellow {
    color: #ffcc00;
}

.stat-cyan {
    color: #00d9ff;
}

.stat-pink {
    color: #ff4d8f;
}

.stat-green {
    color: #00ff88;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0d24 0%, #0d0615 50%, #1a0d24 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Shapes for Services */
.shape-service-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #ff9a3c;
    top: 10%;
    left: 5%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.shape-service-triangle-2 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 85px solid #00d9ff;
    bottom: 15%;
    right: 8%;
    opacity: 0.5;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-service-curve {
    width: 150px;
    height: 150px;
    border-radius: 50% 0 50% 50%;
    background: linear-gradient(135deg, #8b3dff 0%, #ff4d8f 100%);
    top: 20%;
    right: 3%;
    opacity: 0.3;
    animation: float 9s ease-in-out infinite;
    animation-delay: 0.5s;
}

.shape-service-curve-2 {
    width: 120px;
    height: 120px;
    border-radius: 50% 50% 0 50%;
    background: linear-gradient(135deg, #ff4d8f 0%, #ff9a3c 100%);
    bottom: 10%;
    left: 8%;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-service-blue {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5b4cff 0%, #00d9ff 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    right: 10%;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff4d8f 0%, #ff9a3c 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Service Cards */
.service-card {
    background: rgba(26, 13, 36, 0.6);
    border: 2px solid rgba(91, 76, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 76, 255, 0.1) 0%, rgba(255, 77, 143, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(91, 76, 255, 0.6);
    box-shadow: 0 15px 40px rgba(91, 76, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    transition: all 0.4s ease;
    background: rgba(42, 21, 53, 0.8);
}

.service-icon i {
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

/* Icon Colors */
.service-icon-blue {
    color: #5b9cff;
    box-shadow: 0 10px 30px rgba(91, 156, 255, 0.3);
}

.service-icon-purple {
    color: #c77dff;
    box-shadow: 0 10px 30px rgba(199, 125, 255, 0.3);
}

.service-icon-gradient {
    background: linear-gradient(135deg, #ff4d8f 0%, #ff9a3c 100%);
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(255, 77, 143, 0.3);
}

.service-icon-orange {
    color: #ff9a3c;
    box-shadow: 0 10px 30px rgba(255, 154, 60, 0.3);
}

.service-icon-pink {
    color: #ff4d8f;
    box-shadow: 0 10px 30px rgba(255, 77, 143, 0.3);
}

.service-icon-cyan {
    color: #00d9ff;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

/* Service Content */
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Service Link */
.service-link {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.service-link:hover {
    background: linear-gradient(135deg, #ff4d8f 0%, #ff9a3c 100%);
    border-color: transparent;
    transform: scale(1.1);
    color: var(--text-white);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* ===================================
   About Me Section
   =================================== */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0d24 0%, #0d0615 50%, #1a0d24 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Shapes for About */
.shape-about-curve {
    width: 180px;
    height: 180px;
    border-radius: 50% 0 50% 50%;
    background: linear-gradient(135deg, #ff4d8f 0%, #ff9a3c 100%);
    bottom: 10%;
    left: 5%;
    opacity: 0.2;
    animation: float 10s ease-in-out infinite;
}

.shape-about-colorful {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ff9a3c 0%, #ffcc00 50%, #ff4d8f 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 5%;
    left: 2%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

/* About Content - Left Side */
.about-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.label-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff4d8f 0%, #ff9a3c 100%);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.about-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-highlight {
    background: linear-gradient(135deg, #ff9a3c 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.title-years {
    background: linear-gradient(135deg, #ff4d8f 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.btn-portfolio-about {
    background: linear-gradient(135deg, #ff9a3c 0%, #ff4d8f 100%);
    color: var(--text-white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 77, 143, 0.3);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-portfolio-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 77, 143, 0.4);
    color: var(--text-white);
}

.about-curve-shape {
    position: absolute;
    bottom: -20px;
    right: 50px;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

/* About Tabs - Right Side */
.about-tabs-wrapper {
    background: rgba(26, 13, 36, 0.6);
    border: 2px solid rgba(91, 76, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

/* Tab Navigation */
.about-nav-tabs {
    border: none;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.about-nav-tabs .nav-item {
    margin: 0;
}

.about-nav-tabs .nav-link {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.about-nav-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.about-nav-tabs .nav-link.active {
    color: #ff9a3c;
    background: transparent;
}

.about-nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff9a3c 0%, #ff4d8f 100%);
}

.nav-separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

/* Tab Content */
.about-tab-content {
    position: relative;
}

.tab-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tab-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Skills Progress Bars */
.skills-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    position: relative;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.skill-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.skill-percentage {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff9a3c;
}

.skill-percentage.skill-cyan {
    color: #00d9ff;
}

.skill-percentage.skill-pink {
    color: #ff4d8f;
}

.skill-percentage.skill-green {
    color: #00ff88;
}

.skill-percentage.skill-blue {
    color: #5b9cff;
}

/* Progress Bar Styling */
.skill-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress .progress-bar {
    background: linear-gradient(90deg, #ff9a3c 0%, #ff4d8f 100%);
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

.progress-bar-cyan {
    background: linear-gradient(90deg, #00d9ff 0%, #5b9cff 100%) !important;
}

.progress-bar-pink {
    background: linear-gradient(90deg, #ff4d8f 0%, #ff6b9d 100%) !important;
}

.progress-bar-green {
    background: linear-gradient(90deg, #00ff88 0%, #00d9a0 100%) !important;
}

.progress-bar-blue {
    background: linear-gradient(90deg, #5b9cff 0%, #8b3dff 100%) !important;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d0615 0%, #1a0d24 50%, #0d0615 100%);
    position: relative;
    overflow: hidden;
}

/* Portfolio Decorative Shapes */
.shape-portfolio-circle-1 {
    width: 150px;
    height: 150px;
    background: rgba(255, 154, 60, 0.2);
    border-radius: 50%;
    top: 10%;
    right: 8%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.shape-portfolio-circle-2 {
    width: 100px;
    height: 100px;
    background: rgba(139, 61, 255, 0.3);
    border-radius: 50%;
    bottom: 15%;
    left: 5%;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-portfolio-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 85px solid rgba(91, 76, 255, 0.3);
    bottom: 20%;
    right: 15%;
    opacity: 0.4;
    animation: float 9s ease-in-out infinite;
    animation-delay: 2s;
}

/* Portfolio Filters - Left Side */
.portfolio-filters {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 10;
}

.filter-btn {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 1.8rem 2rem;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-btn:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn i {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(91, 76, 255, 0.1);
    padding-left: 2.5rem;
    color: var(--text-white);
}

.filter-btn:hover i {
    opacity: 1;
    transform: translateX(0);
}

.filter-btn.active {
    background: linear-gradient(135deg, #8b3dff 0%, #ff4d8f 100%);
    color: var(--text-white);
    padding-left: 2.5rem;
    box-shadow: 0 5px 20px rgba(139, 61, 255, 0.3);
}

.filter-btn.active i {
    opacity: 1;
    transform: translateX(0);
}

/* Portfolio Display - Right Side */
.portfolio-display {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: rgba(26, 13, 36, 0.6);
    border: 2px solid rgba(91, 76, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.portfolio-card[style*="display: none"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.portfolio-card:not([style*="display: none"]) {
    position: relative;
    opacity: 1;
    animation: fadeInUp 0.6s ease;
}

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

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(91, 76, 255, 0.5);
    box-shadow: 0 15px 40px rgba(91, 76, 255, 0.3);
}

/* Portfolio Image */
.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Portfolio Info */
.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(13, 6, 21, 0.95) 0%, rgba(13, 6, 21, 0.8) 70%, transparent 100%);
    z-index: 10;
}

.portfolio-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0d24 0%, #0d0615 50%, #1a0d24 100%);
    position: relative;
    overflow: hidden;
}

/* Pricing Decorative Shapes */
.shape-pricing-circle-1 {
    width: 120px;
    height: 120px;
    background: rgba(255, 77, 143, 0.2);
    border-radius: 50%;
    top: 15%;
    left: 8%;
    opacity: 0.6;
    animation: float 9s ease-in-out infinite;
}

.shape-pricing-circle-2 {
    width: 90px;
    height: 90px;
    background: rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    bottom: 20%;
    right: 10%;
    opacity: 0.5;
    animation: float 11s ease-in-out infinite;
    animation-delay: 1.5s;
}

.shape-pricing-hexagon {
    width: 100px;
    height: 57.74px;
    background: rgba(139, 61, 255, 0.3);
    position: absolute;
    top: 50%;
    right: 5%;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-pricing-hexagon:before,
.shape-pricing-hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    left: 0;
}

.shape-pricing-hexagon:before {
    bottom: 100%;
    border-bottom: 28.87px solid rgba(139, 61, 255, 0.3);
}

.shape-pricing-hexagon:after {
    top: 100%;
    border-top: 28.87px solid rgba(139, 61, 255, 0.3);
}

/* Pricing Card */
.pricing-card {
    background: rgba(26, 13, 36, 0.6);
    border: 2px solid rgba(91, 76, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(91, 76, 255, 0.5);
    box-shadow: 0 15px 40px rgba(91, 76, 255, 0.3);
}

/* Featured Card */
.pricing-featured {
    border-color: rgba(139, 61, 255, 0.5);
    background: rgba(26, 13, 36, 0.8);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(139, 61, 255, 0.7);
    box-shadow: 0 20px 50px rgba(139, 61, 255, 0.4);
}

/* Pricing Badge */
.pricing-badge {
    background: rgba(42, 21, 53, 0.8);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid rgba(91, 76, 255, 0.3);
}

.pricing-badge-featured {
    background: rgba(75, 45, 90, 0.9);
    border-color: rgba(139, 61, 255, 0.5);
}

/* Pricing Circle */
.pricing-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    background: rgba(42, 21, 53, 0.8);
    border: 2px solid rgba(91, 76, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover .pricing-circle {
    transform: scale(1.05);
    border-color: rgba(91, 76, 255, 0.6);
    box-shadow: 0 10px 30px rgba(91, 76, 255, 0.3);
}

.pricing-circle-featured {
    background: linear-gradient(135deg, rgba(75, 45, 90, 0.9) 0%, rgba(90, 50, 110, 0.9) 100%);
    border-color: rgba(139, 61, 255, 0.5);
}

.pricing-featured:hover .pricing-circle-featured {
    border-color: rgba(139, 61, 255, 0.8);
    box-shadow: 0 15px 40px rgba(139, 61, 255, 0.4);
}

/* Pricing Amount */
.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 0.95rem;
    color: #ff4d8f;
    font-weight: 600;
    text-transform: capitalize;
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 400;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Pricing Button */
.btn-pricing {
    background: transparent;
    color: #ff4d8f;
    border: 2px solid rgba(255, 77, 143, 0.3);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, #ff4d8f 0%, #ff6b9d 100%);
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 77, 143, 0.3);
}

.btn-pricing-featured {
    background: linear-gradient(135deg, #ff4d8f 0%, #ff6b9d 100%);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 77, 143, 0.3);
}

.btn-pricing-featured:hover {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4d8f 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 77, 143, 0.4);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d0615 0%, #1a0d24 50%, #0d0615 100%);
    position: relative;
    overflow: hidden;
}

/* Testimonial Decorative Shapes */
.shape-testimonial-circle-1 {
    width: 130px;
    height: 130px;
    background: rgba(255, 154, 60, 0.25);
    border-radius: 50%;
    top: 12%;
    right: 10%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.shape-testimonial-circle-2 {
    width: 110px;
    height: 110px;
    background: rgba(255, 77, 143, 0.2);
    border-radius: 50%;
    bottom: 18%;
    left: 8%;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-testimonial-triangle {
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 75px solid rgba(0, 217, 255, 0.25);
    top: 50%;
    left: 5%;
    opacity: 0.4;
    animation: float 9s ease-in-out infinite;
    animation-delay: 2s;
}

/* Testimonial Image Wrapper - Left Side */
.testimonial-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-bottom: 2rem;
}

/* Colorful Blob Container */
.blob-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.8;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #ff9a3c 0%, #ffcc00 100%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00d9ff 0%, #5b9cff 100%);
    top: 5%;
    right: 10%;
    animation-delay: 1s;
}

.blob-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8b3dff 0%, #c77dff 100%);
    top: 15%;
    right: 5%;
    animation-delay: 2s;
}

.blob-4 {
    width: 170px;
    height: 170px;
    background: linear-gradient(135deg, #ff4d8f 0%, #ff6b9d 100%);
    bottom: 15%;
    left: 10%;
    animation-delay: 1.5s;
}

.blob-5 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #00ff88 0%, #00d9a0 100%);
    bottom: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.blob-6 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #ffcc00 0%, #ff9a3c 100%);
    bottom: 10%;
    right: 8%;
    animation-delay: 2.5s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.9);
    }
}

/* Client Image */
.testimonial-client-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--text-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.testimonial-client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonial Content - Right Side */
.testimonial-content {
    position: relative;
    padding: 2rem 0;
}

.testimonial-slider {
    position: relative;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    transform: translateX(50px);
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
}

/* Testimonial Quote Icon */
.testimonial-quote {
    margin-bottom: 2rem;
}

.testimonial-quote i {
    font-size: 3rem;
    color: rgba(255, 77, 143, 0.3);
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Testimonial Name */
.testimonial-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Testimonial Role */
.testimonial-role {
    font-size: 0.95rem;
    color: #ff9a3c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

/* Navigation Buttons */
.testimonial-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(26, 13, 36, 0.8);
    border: 2px solid rgba(91, 76, 255, 0.3);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: rgba(91, 76, 255, 0.3);
    border-color: rgba(91, 76, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(91, 76, 255, 0.3);
}

.testimonial-nav-btn:active {
    transform: translateY(-1px);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a0d24 0%, #0d0615 50%, #1a0d24 100%);
    position: relative;
    overflow: hidden;
}

/* Contact Decorative Shapes */
.shape-contact-circle-1 {
    width: 140px;
    height: 140px;
    background: rgba(139, 61, 255, 0.25);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    opacity: 0.6;
    animation: float 9s ease-in-out infinite;
}

.shape-contact-circle-2 {
    width: 95px;
    height: 95px;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    bottom: 15%;
    right: 8%;
    opacity: 0.5;
    animation: float 11s ease-in-out infinite;
    animation-delay: 1.5s;
}

.shape-contact-hexagon {
    width: 100px;
    height: 57.74px;
    background: rgba(255, 154, 60, 0.25);
    position: absolute;
    top: 45%;
    right: 3%;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-contact-hexagon:before,
.shape-contact-hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    left: 0;
}

.shape-contact-hexagon:before {
    bottom: 100%;
    border-bottom: 28.87px solid rgba(255, 154, 60, 0.25);
}

.shape-contact-hexagon:after {
    top: 100%;
    border-top: 28.87px solid rgba(255, 154, 60, 0.25);
}

/* Contact Information - Left Side */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 13, 36, 0.6);
    border: 2px solid rgba(91, 76, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.contact-info-item:hover .contact-icon {
    background: rgba(91, 76, 255, 0.2);
    border-color: rgba(91, 76, 255, 0.6);
    transform: scale(1.1);
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.contact-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Contact Form - Middle */
.contact-form-wrapper {
    background: rgba(26, 13, 36, 0.6);
    border: 2px solid rgba(91, 76, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(10px);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    background: rgba(13, 6, 21, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-control:focus {
    background: rgba(13, 6, 21, 0.8);
    border-color: rgba(91, 76, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(91, 76, 255, 0.1);
    outline: none;
}

.contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    cursor: pointer;
}

.contact-form .form-select option {
    background: #1a0d24;
    color: var(--text-white);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #ff9a3c 0%, #ff4d8f 100%);
    color: var(--text-white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 77, 143, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff9a3c 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 77, 143, 0.4);
}

/* Contact Map - Right Side */
.contact-map {
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(91, 76, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ===================================
   Client Logos Section
   =================================== */
.clients-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3d1f4d 0%, #2a1535 50%, #1a0d24 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Shapes for Clients */
.shape-client-circle-1 {
    width: 120px;
    height: 120px;
    background: rgba(255, 154, 60, 0.3);
    border-radius: 50%;
    top: 10%;
    right: 5%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.shape-client-circle-2 {
    width: 80px;
    height: 80px;
    background: rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    bottom: 15%;
    left: 10%;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-client-circle-3 {
    width: 100px;
    height: 100px;
    background: rgba(139, 61, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 3%;
    opacity: 0.4;
    animation: float 9s ease-in-out infinite;
    animation-delay: 2s;
}

/* Clients Header */
.clients-header {
    margin-bottom: 4rem;
}

.clients-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.title-and {
    background: linear-gradient(135deg, #ff9a3c 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0.5rem;
}

.title-partners {
    background: linear-gradient(135deg, #ff4d8f 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Marquee Wrapper */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Client Logo Card */
.client-logo-card {
    background: rgba(26, 13, 36, 0.6);
    border: 2px solid rgba(91, 76, 255, 0.2);
    border-radius: 15px;
    padding: 2rem 3rem;
    min-width: 250px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(91, 76, 255, 0.5);
    box-shadow: 0 10px 30px rgba(91, 76, 255, 0.3);
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-logo-card:hover .client-logo {
    opacity: 1;
    transform: scale(1.1);
}

/* ===================================
   Footer Section
   =================================== */
.footer-section {
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, #2a1535 0%, #1a0d24 50%, #0d0615 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Shapes for Footer */
.shape-footer-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 85px solid rgba(255, 154, 60, 0.3);
    top: 15%;
    left: 10%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.shape-footer-blue {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5b4cff 0%, #00d9ff 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    right: 15%;
    opacity: 0.4;
    animation: float 9s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-footer-curve {
    width: 120px;
    height: 120px;
    border-radius: 50% 0 50% 50%;
    background: linear-gradient(135deg, #ff4d8f 0%, #c77dff 100%);
    bottom: 20%;
    right: 5%;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-footer-circle-green {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    opacity: 0.5;
    animation: float 7s ease-in-out infinite;
}

.shape-footer-circle-orange {
    width: 90px;
    height: 90px;
    background: rgba(255, 154, 60, 0.3);
    border-radius: 50%;
    top: 50%;
    right: 3%;
    opacity: 0.4;
    animation: float 11s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Footer Widget */
.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff4d8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Footer Contact */
.footer-contact {
    margin-top: 2rem;
}

.footer-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-contact-item {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #ff9a3c;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 0.5rem;
}

/* Footer Posts */
.footer-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-post-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-post-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-post-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.footer-post-date i {
    color: #ff9a3c;
}

/* Newsletter */
.footer-newsletter-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-newsletter-form {
    margin-bottom: 2rem;
}

.newsletter-input-group {
    display: flex;
    position: relative;
}

.newsletter-input {
    flex: 1;
    background: rgba(13, 6, 21, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.9rem 4rem 0.9rem 1.5rem;
    color: var(--text-white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(91, 76, 255, 0.5);
    background: rgba(13, 6, 21, 0.8);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff9a3c 0%, #ff4d8f 100%);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 77, 143, 0.4);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(26, 13, 36, 0.6);
    border: 1px solid rgba(91, 76, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8b3dff 0%, #ff4d8f 100%);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 61, 255, 0.3);
    color: var(--text-white);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.highlight-text {
    color: #ff9a3c;
    font-weight: 600;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff4d8f 100%);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 77, 143, 0.4);
    transition: all 0.3s ease;
}

.back-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 77, 143, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

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

/* ===================================
   Success Modal
   =================================== */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.success-modal.show {
    display: flex;
}

.success-modal-content {
    background: linear-gradient(135deg, #2a1535 0%, #1a0d24 100%);
    border: 2px solid rgba(91, 76, 255, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.4s ease;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00ff88 0%, #00d9ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 3.5rem;
    color: var(--text-white);
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff4d8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-btn {
    background: linear-gradient(135deg, #ff9a3c 0%, #ff4d8f 100%);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 3rem;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 77, 143, 0.4);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 77, 143, 0.6);
}

.success-btn:active {
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-name {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-tabs-wrapper {
        padding: 2rem;
    }
    
    .pricing-circle {
        width: 180px;
        height: 180px;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-text {
        padding-left: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .shape-circle-orange {
        width: 150px;
        height: 150px;
    }
    
    .shape-circle-purple {
        width: 100px;
        height: 100px;
    }
    
    .services-section {
        padding: 4rem 0;
    }
    
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .label-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-curve-shape {
        display: none;
    }
    
    .portfolio-section {
        padding: 4rem 0;
    }
    
    .portfolio-filters {
        margin-bottom: 3rem;
    }
    
    .filter-btn {
        font-size: 1rem;
        padding: 1.5rem 1.5rem;
    }
    
    .pricing-section {
        padding: 4rem 0;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .pricing-featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .blob-container {
        width: 350px;
        height: 350px;
    }
    
    .testimonial-client-image {
        width: 220px;
        height: 220px;
    }
    
    .testimonial-content {
        text-align: center;
    }
    
    .testimonial-navigation {
        justify-content: center;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-info {
        margin-bottom: 3rem;
    }
    
    .contact-form-wrapper {
        margin-bottom: 3rem;
    }
    
    .contact-map {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-name {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .navbar-brand .logo-text {
        font-size: 1.5rem;
    }
    
    .btn-download {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }
    
    .btn-portfolio {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }
    
    .shape {
        opacity: 0.3;
    }
    
    .shape-triangle {
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 70px solid #5b4cff;
    }
    
    /* .statistics-section {
        margin-top: 2rem;
        padding: 2rem 0 1rem;
    } */
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-tabs-wrapper {
        padding: 1.5rem;
    }
    
    .about-nav-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .about-nav-tabs .nav-link {
        font-size: 0.85rem;
    }
    
    .tab-title {
        font-size: 1.3rem;
    }
    
    .tab-description {
        font-size: 0.9rem;
    }
    
    .skill-name {
        font-size: 0.75rem;
    }
    
    .skill-percentage {
        font-size: 0.8rem;
    }
    
    .portfolio-section {
        padding: 3rem 0;
    }
    
    .filter-btn {
        font-size: 0.9rem;
        padding: 1.3rem 1.2rem;
    }
    
    .portfolio-card {
        min-height: 400px;
    }
    
    .portfolio-title {
        font-size: 1.5rem;
    }
    
    .portfolio-subtitle {
        font-size: 0.9rem;
    }
    
    .portfolio-info {
        padding: 2rem;
    }
    
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
    }
    
    .pricing-circle {
        width: 160px;
        height: 160px;
        margin-bottom: 2rem;
    }
    
    .pricing-amount {
        font-size: 2.2rem;
    }
    
    .pricing-period {
        font-size: 0.85rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .blob-container {
        width: 300px;
        height: 300px;
    }
    
    .blob {
        filter: blur(30px);
    }
    
    .testimonial-client-image {
        width: 180px;
        height: 180px;
        border-width: 6px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-name {
        font-size: 1.5rem;
    }
    
    .testimonial-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .contact-map {
        min-height: 350px;
    }
    
    .clients-section {
        padding: 3rem 0;
    }
    
    .clients-title {
        font-size: 2rem;
    }
    
    .client-logo-card {
        min-width: 200px;
        height: 120px;
        padding: 1.5rem 2rem;
    }
    
    .client-logo {
        max-height: 60px;
    }
    
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-widget {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-name {
        font-size: 1.5rem;
    }
    
    .hero-text {
        padding: 1rem 0;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar-nav {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-tabs-wrapper {
        padding: 1.2rem;
    }
    
    .about-nav-tabs .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem 0;
    }
    
    .nav-separator {
        font-size: 1rem;
    }
    
    .tab-title {
        font-size: 1.1rem;
    }
    
    .skill-name {
        font-size: 0.7rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 1.2rem 1rem;
    }
    
    .portfolio-card {
        min-height: 350px;
    }
    
    .portfolio-title {
        font-size: 1.3rem;
    }
    
    .portfolio-subtitle {
        font-size: 0.85rem;
    }
    
    .portfolio-info {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.5rem;
    }
    
    .pricing-circle {
        width: 140px;
        height: 140px;
    }
    
    .pricing-amount {
        font-size: 2rem;
    }
    
    .pricing-period {
        font-size: 0.8rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
    }
    
    .btn-pricing {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }
    
    .blob-container {
        width: 250px;
        height: 250px;
    }
    
    .testimonial-client-image {
        width: 150px;
        height: 150px;
        border-width: 5px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-name {
        font-size: 1.3rem;
    }
    
    .testimonial-role {
        font-size: 0.85rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1.2rem;
    }
    
    .contact-form .form-control {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .clients-title {
        font-size: 1.5rem;
    }
    
    .client-logo-card {
        min-width: 180px;
        height: 100px;
        padding: 1rem 1.5rem;
    }
    
    .client-logo {
        max-height: 50px;
    }
    
    .footer-logo .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-widget-title {
        font-size: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-input {
        font-size: 0.85rem;
        padding: 0.8rem 3.5rem 0.8rem 1.2rem;
    }
    
    .newsletter-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
    
    .success-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
    }
    
    .success-icon i {
        font-size: 2.5rem;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-text {
        font-size: 0.9rem;
    }
    
    .success-btn {
        padding: 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .loader-text {
        font-size: 2.5rem;
    }
    
    .loader-spinner {
        width: 90px;
        height: 90px;
    }
    
    .loader-message {
        font-size: 0.95rem;
    }
}

/* ===================================
   Smooth Scrolling
   =================================== */
section {
    scroll-margin-top: 80px;
}
