/* ===================================
   Page Loader Styles
   =================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-container {
    position: relative;
    text-align: center;
}

.loader-content {
    position: relative;
    z-index: 2;
}

/* Animated Logo */
.loader-logo {
    margin-bottom: 30px;
    animation: logoFloat 2s ease-in-out infinite alternate;
}

.loader-logo .logo-text {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.loader-logo .logo-accent {
    color: #FF6B2C;
    animation: accentPulse 1.5s ease-in-out infinite;
}

/* Loading Animation Circles */
.loader-animation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.loader-circle {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    animation: circleWave 1.4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.loader-circle:nth-child(1) {
    animation-delay: 0s;
}

.loader-circle:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-circle:nth-child(3) {
    animation-delay: 0.4s;
}

/* Loading Text */
.loader-text {
    margin-bottom: 30px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 2px;
}

.loading-word {
    display: inline-block;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.loading-dots span {
    display: inline-block;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Progress Bar */
.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF6B2C, #ffffff, #FF6B2C);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 107, 44, 0.5);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShimmer 1.5s ease-in-out infinite;
}

/* Background Animation */
.loader-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatAround 8s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 9s;
}

/* Keyframe Animations */
@keyframes logoFloat {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes accentPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 107, 44, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(255, 107, 44, 0.8);
    }
}

@keyframes circleWave {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        background: #ffffff;
    }
    20% {
        transform: scaleY(1);
        background: #FF6B2C;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 107, 44, 0.3);
    }
}

@keyframes dotBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

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

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) translateX(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(10px) translateX(5px) rotate(270deg);
    }
}

/* Responsive Design for Loader */
@media (max-width: 768px) {
    .loader-logo .logo-text {
        font-size: 36px;
    }
    
    .loader-text {
        font-size: 16px;
    }
    
    .loader-progress {
        width: 150px;
    }
    
    .floating-shape {
        display: none;
    }
}

/* ===================================
   Global Styles
   =================================== */
:root {
    --primary-orange: #FF6B2C;
    --primary-black: #1A1A1A;
    --text-gray: #666666;
    --bg-cream: #f7f7f79c;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-black);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================================
   Navigation Styles
   =================================== */
.navbar {
    padding: 20px 0;
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black) !important;
}

.logo-text {
    color: var(--primary-black);
    font-weight: 700;
}

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

.navbar-nav {
    gap: 35px;
}

.nav-link {
    color: var(--primary-black);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
}

/* Let's Talk Button */
.btn-lets-talk {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-black);
}

.btn-lets-talk:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-menu {
    width: 50px;
    height: 50px;
    background-color: var(--primary-black);
    border: none;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    cursor: pointer;
}

.hamburger-menu span {
    width: 22px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background-color: var(--primary-orange);
}

/* ===================================
   Hero Section Styles
   =================================== */
.hero-section {
    padding-top: 150px;
    background-color: var(--bg-cream);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.greeting {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.wave {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
}

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

.hero-name {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-black);
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 550px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-dark {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-black);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary-dark:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 44, 0.3);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary-black);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-black);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-dark:hover {
    background-color: var(--primary-black);
    color: var(--white);
    transform: translateY(-3px);
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.social-line {
    width: 60px;
    height: 2px;
    background-color: var(--primary-black);
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    background-color: var(--primary-black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Large Stroke Text */
.hero-large-text {
    position: relative;
    margin-top: 30px;
}

.stroke-text {
    font-size: 90px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(26, 26, 26, 0.1);
    line-height: 1;
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ===================================
   Hero Image Section
   =================================== */
.hero-image-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 50px;
    right: 0;
    width: 140px;
    height: 140px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 8px solid var(--bg-cream);
}

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

.badge-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-black);
    line-height: 1;
}

.badge-text {
    display: flex;
    flex-direction: column;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Profile Image Container */
.profile-image-container {
    position: relative;
    width: 450px;
    height: 550px;
}

.diagonal-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    clip-path: polygon(0 0, 45% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.profile-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 8px solid var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===================================
   Skills Slider Section
   =================================== */
.skills-slider-section {
    padding: 60px 0;
    background-color: var(--bg-cream);
    overflow: hidden;
    position: relative;
}

.skills-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.skills-slider {
    display: flex;
    gap: 30px;
    animation: slideLeft 30s linear infinite;
    width: fit-content;
}

/* Pause animation on hover */
.skills-slider:hover {
    animation-play-state: paused;
}

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

.skill-item {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.skill-icon {
    width: 70px;
    height: 70px;
    background-color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #0073AA;
    transition: all 0.3s ease;
}

.skill-icon i {
    transition: transform 0.3s ease;
}

.skill-item:hover .skill-icon i {
    transform: scale(1.1);
}

.skill-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.skill-item:hover .skill-icon img {
    transform: scale(1.1);
}

/* Icon specific colors */
.html-icon {
    color: #E34F26;
}

.bootstrap-icon {
    color: #7952B3;
}

/* Icon specific sizes */
.xd-icon img,
.ps-icon img {
    width: 45px;
    height: 45px;
}

.figma-icon img {
    width: 35px;
    height: 35px;
}

.canva-icon img {
    width: 40px;
    height: 40px;
}

.skill-percentage {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1;
}

.skill-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-align: center;
}

/* ===================================
   About Me Section
   =================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

/* Section Title */
.section-title-wrapper {
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 10px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-black);
    border-radius: 50%;
}

.decoration-line {
    width: 120px;
    height: 2px;
    background-color: var(--primary-black);
}

/* About Content */
.about-content-left {
    position: relative;
}

.about-description {
    font-size: 32px;
    line-height: 1.5;
    color: var(--primary-black);
    font-weight: 500;
    margin-bottom: 50px;
    max-width: 100%;
}

.highlight-text {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Experience Box */
.experience-box {
    position: relative;
    padding: 50px 0;
    margin-bottom: 50px;
    border-left: 3px solid var(--primary-black);
    padding-left: 50px;
}

.experience-number {
    font-size: 200px;
    font-weight: 900;
    color: var(--primary-black);
    line-height: 1;
    margin-bottom: 10px;
}

.experience-number sup {
    font-size: 100px;
    top: -0.5em;
}

.experience-label {
    display: flex;
    flex-direction: column;
    font-size: 35px;
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1.3;
}

/* Decorative Arrow */
.decorative-arrow {
    position: absolute;
    right: 50px;
    bottom: 20px;
    width: 100px;
    height: 100px;
    color: var(--primary-black);
}

/* About Me Button */
.btn-about-circle {
    width: 150px;
    height: 150px;
    background-color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-about-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--primary-orange);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn-about-circle:hover::before {
    width: 200%;
    height: 200%;
}

.btn-about-circle span,
.btn-about-circle i {
    position: relative;
    z-index: 1;
}

.btn-about-circle span {
    font-size: 20px;
    font-weight: 600;
}

.btn-about-circle i {
    font-size: 20px;
}

.btn-about-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

/* About Image */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

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

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

/* ===================================
   Portfolio Section
   =================================== */
.portfolio-section {
    padding: 100px 0;
    background-color: #1A1A1A;
    position: relative;
}

.portfolio-section .section-title-wrapper {
    margin-bottom: 40px;
}

.text-white {
    color: var(--white) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

/* Portfolio Tabs */
.portfolio-tabs {
    margin-bottom: 50px;
    border: none;
    gap: 15px;
}

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

.portfolio-tabs .nav-link {
    background-color: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5 );
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-tabs .nav-link::after {
    content: '/';
    position: absolute;
    right: -10px;
    color: rgba(255, 255, 255, 0.3);
}

.portfolio-tabs .nav-item:last-child .nav-link::after {
    display: none;
}

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

.portfolio-tabs .nav-link.active {
    background-color: transparent;
    color: var(--primary-orange);
    font-weight: 600;
}

/* Portfolio Content */
.tab-content {
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: #252525;
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
}

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

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

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    transform: scale(0);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-link:hover {
    background-color: var(--white);
    color: var(--primary-orange);
}

/* Tab Fade Animation */
.tab-pane {
    animation: fadeIn 0.5s ease;
}

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

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--cream-bg);
    position: relative;
    overflow: hidden;
}

/* Decorative Curve */
.decorative-curve {
    position: absolute;
    top: 40px;
    right: 50px;
    width: 150px;
    height: 120px;
    color: var(--primary-black);
    opacity: 0.8;
}

.services-section .section-title-wrapper {
    margin-bottom: 60px;
}

.services-section .title-decoration {
    flex-direction: row-reverse;
}

/* Service Item */
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.service-item:hover {
    padding-left: 20px;
}

.service-content {
    flex: 1;
    max-width: 800px;
}

.service-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 20px;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.service-item:hover .service-title {
    color: var(--primary-orange);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 18px;
    color: var(--primary-black);
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.6;
}

/* Service View Button */
.btn-service-view {
    width: 100px;
    height: 100px;
    background-color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 30px;
}

.btn-service-view::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--primary-orange);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.btn-service-view:hover::before {
    width: 200px;
    height: 200px;
}

.btn-service-view span {
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.btn-service-view i {
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.btn-service-view:hover {
    transform: scale(1.05);
    color: var(--white);
}

/* View All Button */
.service-view-all {
    display: flex;
    justify-content: center;
    padding: 80px 0 20px;
}

.btn-view-all {
    width: 140px;
    height: 140px;
    background-color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--primary-orange);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.btn-view-all:hover::before {
    width: 250px;
    height: 250px;
}

.btn-view-all span {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.btn-view-all i {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.btn-view-all:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* ===================================
   Testimonial Section
   =================================== */
.testimonial-section {
    padding: 100px 0;
    background-color: var(--cream-bg);
    position: relative;
    overflow: hidden;
}

/* Decorative Lines */
.decorative-line-top {
    position: absolute;
    top: 150px;
    left: 50px;
    width: 120px;
    height: 80px;
    color: var(--primary-black);
    opacity: 0.6;
}

.decorative-line-bottom {
    position: absolute;
    bottom: 150px;
    left: 50px;
    width: 180px;
    height: 40px;
    color: var(--primary-black);
    opacity: 0.6;
}

/* Outline Title */
.testimonial-outline-title {
    font-size: 120px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(26, 26, 26, 0.15);
    text-transform: capitalize;
    margin-bottom: 40px;
    line-height: 1;
    letter-spacing: -2px;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    padding-right: 30px;
}

/* Quote Icon */
.quote-icon {
    margin-bottom: 30px;
}

.quote-icon i {
    font-size: 80px;
    color: var(--primary-orange);
}

/* Testimonial Text */
.testimonial-text-wrapper {
    margin-bottom: 60px;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--primary-black);
    font-weight: 400;
    max-width: 600px;
}

/* Testimonial Bottom */
.testimonial-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Client Thumbnails */
.client-thumbnails {
    display: flex;
    gap: 20px;
}

.client-thumb {
    width: 120px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    position: relative;
}

.client-thumb.active {
    opacity: 1;
    transform: scale(1.05);
}

.client-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.client-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Navigation Buttons */
.testimonial-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-black);
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: var(--primary-orange);
    transform: scale(1.1);
}

/* Testimonial Main Image */
.testimonial-image-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.testimonial-main-image {
    width: 100%;
    max-width: 450px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.testimonial-main-image:hover img {
    transform: scale(1.05);
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    padding: 100px 0;
    background-color: #E8E8E8;
    position: relative;
    overflow: hidden;
}

/* Decorative Curve */
.pricing-decorative-curve {
    position: absolute;
    top: 40px;
    right: 50px;
    width: 150px;
    height: 120px;
    color: var(--primary-black);
    opacity: 0.8;
}

.pricing-section .section-title-wrapper {
    margin-bottom: 60px;
}

/* Pricing Cards */
.pricing-card {
    background-color: var(--white);
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 15px;
    padding: 40px 35px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Featured Card */
.pricing-card.featured {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured .package-name,
.pricing-card.featured .price,
.pricing-card.featured .price-period,
.pricing-card.featured .yearly-price,
.pricing-card.featured .includes-label,
.pricing-card.featured .features-list li {
    color: var(--white);
}

.pricing-card.featured .includes-line {
    background-color: var(--white);
}

/* Package Name */
.package-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 25px;
}

/* Price */
.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.price {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-black);
}

.yearly-price {
    font-size: 14px;
    color: var(--primary-orange);
    margin-bottom: 30px;
}

/* Includes Section */
.includes-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.includes-label {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

.pricing-card.featured .includes-label {
    background-color: var(--white);
    color: var(--primary-black);
}

.includes-line {
    flex: 1;
    height: 2px;
    background-color: var(--primary-black);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.features-list li {
    font-size: 15px;
    color: var(--primary-black);
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 20px;
    line-height: 1.4;
}

/* Pricing Button */
.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid var(--primary-black);
    color: var(--primary-black);
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background-color: var(--primary-black);
    color: var(--white);
}

.pricing-card.featured .btn-pricing {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

.pricing-card.featured .btn-pricing:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-black);
}

/* ===================================
   Companies Section
   =================================== */
.companies-section {
    padding: 80px 0;
    background-color: var(--white);
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.companies-title {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 50px;
}

/* Companies Slider */
.companies-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.companies-slider {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: scroll-companies 30s linear infinite;
    width: fit-content;
}

.companies-slider:hover {
    animation-play-state: paused;
}

/* Company Logo */
.company-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo img {
    max-height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%);
}

/* Scroll Animation */
@keyframes scroll-companies {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background-color: #0A0A0A;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Scrolling Contact Info */
.contact-info-scroll {
    background-color: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.contact-info-track {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: scroll-contact-info 25s linear infinite;
    width: fit-content;
}

.contact-info-item {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.contact-info-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px;
}

@keyframes scroll-contact-info {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Contact Content */
.contact-section .container {
    padding: 100px 15px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    padding-right: 50px;
}

.contact-heading {
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.contact-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    max-width: 500px;
}

/* Success Message */
.contact-success-message {
    display: none;
    background-color: rgba(255, 107, 44, 0.1);
    border: 1px solid var(--primary-orange);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease;
}

.contact-success-message.show {
    display: block;
}

.success-content i {
    font-size: 60px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.success-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.btn-send-another {
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send-another:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

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

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-form .form-control {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 12px 0;
    font-size: 15px;
    color: var(--white);
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    background-color: transparent;
    border-color: var(--primary-orange);
    box-shadow: none;
    outline: none;
}

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

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

/* Submit Button */
.btn-contact-submit {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    position: relative;
}

.btn-contact-submit:hover:not(:disabled) {
    background-color: var(--white);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 44, 0.3);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-contact-submit .btn-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover:not(:disabled) .btn-arrow {
    transform: translateX(5px);
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact Navigation Wrapper */
.contact-nav-wrapper {
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Contact Navigation Menu */
.contact-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-nav-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-nav-item .nav-text {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.contact-nav-item .nav-number {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-nav-item:hover .nav-text,
.contact-nav-item.active .nav-text {
    color: var(--white);
}

.contact-nav-item:hover .nav-number,
.contact-nav-item.active .nav-number {
    color: var(--white);
}

.contact-nav-item:hover {
    padding-left: 15px;
}

/* Social Icons */
.contact-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.social-icon:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-5px);
}

/* ===================================
   Footer Section
   =================================== */
.footer-section {
    background-color: #0A0A0A;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
}

.footer-logo .logo-p {
    color: var(--primary-orange);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-copyright .highlight {
    color: var(--white);
    font-weight: 600;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 44, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

/* ===================================
   Placeholder Sections
   =================================== */
.section-placeholder {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.section-placeholder h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.section-placeholder p {
    font-size: 18px;
    color: var(--text-gray);
}

/* ===================================
   Responsive Styles
   =================================== */

/* Large Devices */
@media (max-width: 1199px) {
    .hero-name {
        font-size: 60px;
    }
    
    .stroke-text {
        font-size: 70px;
    }
    
    .profile-image-container {
        width: 400px;
        height: 500px;
    }
    
    .profile-image {
        width: 340px;
        height: 340px;
    }
    
    .skill-item {
        min-width: 160px;
        padding: 35px 30px;
    }
    
    .skill-icon {
        width: 65px;
        height: 65px;
        font-size: 32px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .about-description {
        font-size: 28px;
    }
    
    .experience-number {
        font-size: 100px;
    }
    
    .experience-number sup {
        font-size: 50px;
    }
    
    .portfolio-image {
        height: 400px;
    }
    
    .service-title {
        font-size: 56px;
    }
    
    .service-features li {
        font-size: 17px;
    }
    
    .btn-service-view {
        width: 90px;
        height: 90px;
    }
    
    .testimonial-outline-title {
        font-size: 100px;
    }
    
    .quote-icon i {
        font-size: 70px;
    }
    
    .testimonial-text {
        font-size: 20px;
    }
    
    .testimonial-main-image {
        height: 500px;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-10px);
    }
    
    .companies-slider {
        gap: 80px;
    }
    
    .contact-success-message {
        padding: 35px 25px;
    }
    
    .success-content i {
        font-size: 50px;
    }
    
    .success-content h3 {
        font-size: 22px;
    }
    
    .back-to-top {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}

/* Medium Devices */
@media (max-width: 991px) {
    .navbar-nav {
        gap: 20px;
        margin-top: 20px;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-name {
        font-size: 50px;
        width: 170%;
    }
    
    .stroke-text {
        font-size: 60px;
    }
    
    .hero-image-wrapper {
        margin-top: 5px;
        height: 500px;
    }
    
    .profile-image-container {
        width: 350px;
        height: 320px;
    }
    
    .profile-image {
        width: 300px;
        height: 300px;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        top: 30px;
    }
    
    .badge-number {
        font-size: 40px;
    }
    
    .skills-slider {
        gap: 25px;
    }
    
    .skill-item {
        min-width: 150px;
        padding: 30px 25px;
    }
    
    .skill-percentage {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .about-description {
        font-size: 24px;
    }
    
    .experience-number {
        font-size: 90px;
    }
    
    .experience-number sup {
        font-size: 45px;
    }
    
    .btn-about-circle {
        width: 160px;
        height: 160px;
    }
    
    .about-image {
        height: 500px;
    }
    
    .decorative-arrow {
        right: 30px;
        width: 80px;
        height: 80px;
    }
    
    .portfolio-tabs {
        flex-wrap: wrap;
        justify-content: center !important;
    }
    
    .portfolio-tabs .nav-link {
        font-size: 15px;
        padding: 8px 15px;
    }
    
    .portfolio-image {
        height: 350px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .decorative-curve {
        width: 120px;
        height: 100px;
        right: 30px;
    }
    
    .service-item {
        flex-direction: column;
        padding: 40px 0;
    }
    
    .service-title {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .service-features li {
        font-size: 16px;
    }
    
    .btn-service-view {
        width: 80px;
        height: 80px;
        margin-left: 0;
        margin-top: 20px;
        align-self: flex-start;
    }
    
    .btn-service-view span {
        font-size: 13px;
    }
    
    .btn-service-view i {
        font-size: 14px;
    }
    
    .btn-view-all {
        width: 120px;
        height: 120px;
    }
    
    .service-view-all {
        padding: 60px 0 20px;
    }
    
    .testimonial-section {
        padding: 80px 0;
    }
    
    .testimonial-outline-title {
        font-size: 70px;
        margin-bottom: 30px;
    }
    
    .quote-icon i {
        font-size: 60px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .testimonial-text-wrapper {
        margin-bottom: 40px;
    }
    
    .client-thumb {
        width: 100px;
        height: 120px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .testimonial-main-image {
        height: 450px;
        margin-top: 40px;
    }
    
    .decorative-line-top {
        width: 100px;
        height: 60px;
        left: 30px;
        top: 120px;
    }
    
    .decorative-line-bottom {
        width: 150px;
        height: 30px;
        left: 30px;
    }
    
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-card {
        padding: 35px 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .price {
        font-size: 48px;
    }
    
    .features-list li {
        font-size: 14px;
    }
    
    .pricing-decorative-curve {
        width: 120px;
        height: 100px;
        right: 30px;
    }
    
    .companies-section {
        padding: 60px 0;
    }
    
    .companies-title {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .companies-slider {
        gap: 60px;
    }
    
    .company-logo {
        height: 50px;
    }
    
    .company-logo img {
        max-width: 120px;
    }
    
    .contact-form-wrapper {
        padding-right: 30px;
    }
    
    .contact-nav-wrapper {
        padding-left: 30px;
        margin-top: 50px;
    }
    
    .contact-heading {
        font-size: 60px;
    }
    
    .contact-success-message {
        padding: 30px 20px;
    }
    
    .success-content i {
        font-size: 45px;
    }
    
    .success-content h3 {
        font-size: 20px;
    }
    
    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

/* Small Devices */
@media (max-width: 767px) {
    .hero-name {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-primary-dark,
    .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }
    
    .stroke-text {
        font-size: 40px;
        letter-spacing: 2px;
    }
    
    .hero-image-wrapper {
        height: 450px;
    }
    
    .profile-image-container {
        width: 300px;
        height: 200px;
    }
    
    .profile-image {
        width: 260px;
        height: 260px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        top: 20px;
        right: -10px;
    }
    
    .badge-number {
        font-size: 32px;
    }
    
    .badge-text {
        font-size: 8px;
    }
    
    .skills-slider-section {
        padding: 50px 0;
    }
    
    .skills-slider {
        gap: 20px;
    }
    
    .skill-item {
        min-width: 140px;
        padding: 30px 20px;
    }
    
    .skill-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .skill-percentage {
        font-size: 24px;
    }
    
    .skill-name {
        font-size: 12px;
    }
    
    .about-section {
        padding: 80px 0;
    }
    
    .section-title-wrapper {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-description {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .experience-box {
        padding: 30px 0;
        padding-left: 30px;
        margin-bottom: 40px;
    }
    
    .experience-number {
        font-size: 70px;
    }
    
    .experience-number sup {
        font-size: 35px;
    }
    
    .experience-label {
        font-size: 16px;
    }
    
    .btn-about-circle {
        width: 140px;
        height: 140px;
        position: absolute;
        top: 0;
        right: 0;
    }
    
    .btn-about-circle span {
        font-size: 14px;
    }
    
    .btn-about-circle i {
        font-size: 18px;
    }
    
    .about-image {
        height: 450px;
        margin-top: 40px;
    }
    
    .decorative-arrow {
        right: 20px;
        bottom: 10px;
        width: 60px;
        height: 60px;
    }
    
    .portfolio-section {
        padding: 80px 0;
    }
    
    .portfolio-tabs {
        margin-bottom: 40px;
    }
    
    .portfolio-tabs .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .portfolio-image {
        height: 300px;
    }
    
    .service-title {
        font-size: 40px;
    }
    
    .service-features li {
        font-size: 15px;
    }
    
    .decorative-curve {
        width: 100px;
        height: 80px;
        right: 20px;
        top: 30px;
    }
    
    .testimonial-outline-title {
        font-size: 50px;
    }
    
    .quote-icon i {
        font-size: 50px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .client-thumb {
        width: 90px;
        height: 110px;
    }
    
    .testimonial-bottom {
        gap: 25px;
    }
    
    .testimonial-main-image {
        height: 400px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .price {
        font-size: 42px;
    }
    
    .package-name {
        font-size: 18px;
    }
    
    .pricing-decorative-curve {
        width: 100px;
        height: 80px;
        right: 20px;
        top: 30px;
    }
    
    .companies-title {
        font-size: 15px;
    }
    
    .companies-slider {
        gap: 50px;
    }
    
    .company-logo {
        height: 45px;
    }
    
    .company-logo img {
        max-width: 100px;
    }
    
    .contact-form-wrapper {
        padding-right: 0;
    }
    
    .contact-nav-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-heading {
        font-size: 48px;
    }
    
    .contact-success-message {
        padding: 25px 15px;
    }
    
    .success-content i {
        font-size: 40px;
    }
    
    .success-content h3 {
        font-size: 18px;
    }
    
    .success-content p {
        font-size: 14px;
    }
    
    .btn-send-another {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .hero-name {
        font-size: 32px;
    }
    
    .greeting {
        font-size: 16px;
    }
    
    .stroke-text {
        font-size: 30px;
        white-space: normal;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .social-line {
        width: 40px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .skills-slider {
        gap: 15px;
    }
    
    .skill-item {
        min-width: 130px;
        padding: 25px 18px;
    }
    
    .skill-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .skill-icon img {
        width: 32px;
        height: 32px;
    }
    
    .xd-icon img,
    .ps-icon img {
        width: 38px;
        height: 38px;
    }
    
    .figma-icon img {
        width: 30px;
        height: 30px;
    }
    
    .canva-icon img {
        width: 32px;
        height: 32px;
    }
    
    .skill-percentage {
        font-size: 22px;
    }
    
    .skill-name {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .decoration-line {
        width: 80px;
    }
    
    .about-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .experience-box {
        padding: 25px 0;
        padding-left: 25px;
        margin-bottom: 30px;
    }
    
    .experience-number {
        font-size: 60px;
    }
    
    .experience-number sup {
        font-size: 30px;
    }
    
    .experience-label {
        font-size: 14px;
    }
    
    .btn-about-circle {
        width: 130px;
        height: 130px;
    }
    
    .btn-about-circle span {
        font-size: 13px;
    }
    
    .btn-about-circle i {
        font-size: 16px;
    }
    
    .about-image {
        height: 400px;
    }
    
    .decorative-arrow {
        right: 10px;
        bottom: 5px;
        width: 50px;
        height: 50px;
    }
    
    .portfolio-tabs .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .portfolio-tabs .nav-link::after {
        right: -8px;
    }
    
    .portfolio-image {
        height: 250px;
    }
    
    .portfolio-link {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .portfolio-tabs .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .portfolio-tabs .nav-link::after {
        right: -8px;
    }
    
    .portfolio-image {
        height: 250px;
    }
    
    .portfolio-link {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .service-title {
        font-size: 32px;
    }
    
    .service-features li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .service-item {
        padding: 30px 0;
    }
    
    .btn-service-view {
        width: 70px;
        height: 70px;
    }
    
    .btn-service-view span {
        font-size: 12px;
    }
    
    .btn-service-view i {
        font-size: 12px;
    }
    
    .btn-view-all {
        width: 100px;
        height: 100px;
    }
    
    .btn-view-all span {
        font-size: 14px;
    }
    
    .btn-view-all i {
        font-size: 16px;
    }
    
    .decorative-curve {
        width: 80px;
        height: 60px;
        right: 15px;
        top: 20px;
    }
    
    .testimonial-outline-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .quote-icon i {
        font-size: 40px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-text-wrapper {
        margin-bottom: 30px;
    }
    
    .client-thumbnails {
        gap: 15px;
    }
    
    .client-thumb {
        width: 80px;
        height: 100px;
    }
    
    .testimonial-bottom {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .testimonial-main-image {
        height: 350px;
    }
    
    .decorative-line-top {
        width: 80px;
        height: 50px;
        left: 20px;
        top: 100px;
    }
    
    .decorative-line-bottom {
        width: 120px;
        height: 25px;
        left: 20px;
        bottom: 100px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .package-name {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .price-period {
        font-size: 14px;
    }
    
    .yearly-price {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .includes-label {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .features-list li {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .btn-pricing {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .pricing-decorative-curve {
        width: 80px;
        height: 60px;
        right: 15px;
        top: 20px;
    }
    
    .companies-section {
        padding: 50px 0;
    }
    
    .companies-title {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .companies-slider {
        gap: 40px;
    }
    
    .company-logo {
        height: 40px;
    }
    
    .company-logo img {
        max-width: 90px;
    }
    
    .contact-heading {
        font-size: 36px;
    }
    
    .contact-description {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .contact-success-message {
        padding: 20px 12px;
    }
    
    .success-content i {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .success-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .success-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .btn-send-another {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .contact-nav-item {
        padding: 20px 0;
    }
    
    .contact-nav-item .nav-text {
        font-size: 18px;
    }
    
    .contact-nav-item .nav-number {
        font-size: 16px;
    }
    
    .footer-logo {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .footer-copyright {
        text-align: left;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}
