/* Root Variables */
:root {
    --primary-orange: #FF9933;
    --light-beige: #F5F0E8;
    --dark-text: #1A1A1A;
    --gray-text: #6B6B6B;
    --white: #FFFFFF;
    --light-blue: #E8F1F5;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #F5F0E8 0%, #E8F1F5 25%, #F5F0E8 50%, #E8F1F5 75%, #F5F0E8 100%);
    background-attachment: fixed;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 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;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Loader Logo */
.loader-logo {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-orange);
    letter-spacing: 5px;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 153, 51, 0.5),
                     0 0 40px rgba(255, 153, 51, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 153, 51, 0.8),
                     0 0 60px rgba(255, 153, 51, 0.5);
        transform: scale(1.05);
    }
}

/* Loader Spinner */
.loader-spinner {
    position: relative;
    width: 120px;
    height: 120px;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    border-top-color: rgba(255, 153, 51, 0.6);
    animation-duration: 2s;
    animation-direction: reverse;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
}

.spinner-ring:nth-child(3) {
    border-top-color: rgba(255, 153, 51, 0.3);
    animation-duration: 2.5s;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

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

/* Loader Text */
.loader-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Loader Progress Bar */
.loader-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-loader {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), #FFB366, var(--primary-orange));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressLoad 2s ease-in-out forwards, gradientShift 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.6);
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}



/* Navigation Styles */
.navbar {
    background-color: transparent !important;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--dark-text) !important;
    letter-spacing: 2px;
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
}

.btn-talk {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.3);
}

.btn-talk i {
    font-size: 16px;
}

.btn-talk:hover {
    background-color: #FF8520;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.3);
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 240, 232, 0.95) 100%);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 2px solid rgba(255, 153, 51, 0.2);
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-link {
        padding: 1rem 1.5rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .btn-talk {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F5F0E8 0%, #FFE8D6 20%, #E8F1F5 40%, #F5F0E8 60%, #E8F1F5 80%, #F5F0E8 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 153, 51, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Photo Grid */
.photo-grid-wrapper {
    position: relative;
    max-width: 450px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: relative;
}

.grid-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #D4D4D4;
    position: relative;
}

/* Grid positioning for creative layout */
.grid-1 {
    background: url('../assets/images/image01.jpg') center/cover;
    border-radius: 20px 12px 12px 12px;
}

.grid-2 {
    background: url('../assets/images/image02.png') center/cover;
}

.grid-3 {
    background: url('../assets/images/image03.jpg') center/cover;
}

.grid-4 {
    background: url('../assets/images/image04.jpg') center/cover;
}

.grid-5.main-photo {
    background: url('../assets/images/image01.jpg') center/cover;
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    border-radius: 12px;
    z-index: 2;
}

/* Orange accent frame */
.photo-grid::before {
    content: '';
    position: absolute;
    width: 65%;
    height: 65%;
    border: 3px solid var(--primary-orange);
    border-radius: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -45%);
    z-index: 1;
    pointer-events: none;
}

/* Social Card */
.social-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: linear-gradient(135deg, #FFB366 0%, var(--primary-orange) 100%);
    padding: 1.75rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
    z-index: 10;
}

.social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Hero Content */
.hero-content {
    padding-left: 3rem;
}

.hero-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.role-title {
    text-transform: uppercase;
}

.intro-text {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 400px;
    margin: 0;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-text);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-link i {
    font-size: 20px;
}

.portfolio-link:hover {
    background-color: var(--dark-text);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.portfolio-link:hover svg {
    transform: translateX(5px);
}

/* Hero Heading */
.hero-heading h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.web-dev-text {
    display: inline-block;
    background: linear-gradient(90deg, var(--dark-text) 0%, var(--dark-text) 50%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    max-width: 550px;
}

.description-text {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F5F0E8 0%, #E8F1F5 30%, #FFE8D6 50%, #E8F1F5 70%, #F5F0E8 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(255, 153, 51, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 20% 60%, rgba(0, 217, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--dark-text);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-text);
    letter-spacing: -1px;
    margin: 0;
}

/* Services Wrapper - Creates stacking context */
.services-wrapper {
    position: relative;
}

/* Service Card - Sticky positioning for stacking effect */
.service-card {
    position: sticky;
    top: 100px;
    margin-bottom: 2rem;
}

.service-card:nth-child(1) {
    z-index: 1;
}

.service-card:nth-child(2) {
    z-index: 2;
}

.service-card:nth-child(3) {
    z-index: 3;
}

.service-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* Border colors based on data attribute */
.service-card[data-border-color="orange"] .service-content {
    border-color: #FF9933;
}

.service-card[data-border-color="cyan"] .service-content {
    border-color: #00D9FF;
}

.service-card[data-border-color="purple"] .service-content {
    border-color: #9D4EDD;
}

.service-content:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

/* Service Info */
.service-info {
    padding-right: 2rem;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(255, 153, 51, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.15);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-orange), #FFB366);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-content:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-content:hover .service-icon::before {
    opacity: 0.2;
}

.service-icon svg,
.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.service-card[data-border-color="cyan"] .service-icon {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
}

.service-card[data-border-color="cyan"] .service-icon::before {
    background: linear-gradient(135deg, #00D9FF, #66E5FF);
}

.service-card[data-border-color="cyan"] .service-icon i {
    color: #00D9FF;
}

.service-card[data-border-color="purple"] .service-icon {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(157, 78, 221, 0.05) 100%);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.15);
}

.service-card[data-border-color="purple"] .service-icon::before {
    background: linear-gradient(135deg, #9D4EDD, #B87FE7);
}

.service-card[data-border-color="purple"] .service-icon i {
    color: #9D4EDD;
}

.service-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    border-radius: 2px;
}

.service-card[data-border-color="cyan"] .service-title::after {
    background: linear-gradient(90deg, #00D9FF, transparent);
}

.service-card[data-border-color="purple"] .service-title::after {
    background: linear-gradient(90deg, #9D4EDD, transparent);
}

.service-description {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-features li {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    padding-left: 3rem;
    position: relative;
    background: rgba(255, 153, 51, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: rgba(255, 153, 51, 0.1);
    transform: translateX(5px);
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem;
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.service-card[data-border-color="cyan"] .service-features li {
    background: rgba(0, 217, 255, 0.05);
    border-left-color: #00D9FF;
}

.service-card[data-border-color="cyan"] .service-features li:hover {
    background: rgba(0, 217, 255, 0.1);
}

.service-card[data-border-color="cyan"] .service-features li::before {
    color: #00D9FF;
}

.service-card[data-border-color="purple"] .service-features li {
    background: rgba(157, 78, 221, 0.05);
    border-left-color: #9D4EDD;
}

.service-card[data-border-color="purple"] .service-features li:hover {
    background: rgba(157, 78, 221, 0.1);
}

.service-card[data-border-color="purple"] .service-features li::before {
    color: #9D4EDD;
}

/* Service Image */


.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-content:hover .service-image::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-content:hover .service-image img {
    transform: scale(1.08) rotate(2deg);
}

/* About Me Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8F1F5 0%, #F5F0E8 25%, #FFE8D6 50%, #E8F1F5 75%, #F5F0E8 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(0, 217, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 153, 51, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* About Header */
.about-header {
    margin-bottom: 2rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1.2;
    letter-spacing: -1px;
}

/* About Description */
.about-description p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Signature Section */
.about-signature-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.signature-line {
    width: 200px;
    height: 2px;
    background-color: var(--dark-text);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.3);
}

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

.contact-btn:hover {
    background: #E68A2E;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 153, 51, 0.4);
    color: var(--white);
}

.contact-btn svg,
.contact-btn i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.contact-btn:hover svg,
.contact-btn:hover i {
    transform: translate(3px, -3px);
}

/* About Illustration */
.about-illustration {
    margin-top: 3rem;
}

.about-illustration img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Profile Image Wrapper */
.profile-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.profile-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Signature Overlay */
.signature-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.signature-overlay i {
    font-size: 40px;
    color: var(--primary-orange);
}

.signature-overlay svg {
    width: 100%;
    height: 100%;
}

/* Contact Info Cards */
.contact-info-cards {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 1.75rem 2.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(255, 153, 51, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-orange), #FFB366);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 153, 51, 0.3) inset;
    border-color: var(--primary-orange);
}

.info-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.12) 0%, rgba(255, 153, 51, 0.08) 100%);
    border-radius: 16px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-orange), #FFB366);
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(-5deg);
}

.info-card:hover .info-icon::after {
    opacity: 0.15;
}

.info-icon i {
    font-size: 1.75rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon i {
    color: #FF8520;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-text);
    margin-bottom: 0.4rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    transition: color 0.3s ease;
}

.info-card:hover .info-value {
    color: var(--primary-orange);
}

/* CV Download Card Specific Styles */
.cv-download-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(255, 153, 51, 0.15);
    cursor: pointer;
}

.cv-download-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    transform: translateX(10px) scale(1.02);
    border-color: var(--primary-orange);
}

.cv-download-card .info-icon {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.12) 0%, rgba(255, 153, 51, 0.08) 100%);
}

.cv-download-card .info-icon i {
    color: var(--primary-orange);
}

.cv-download-card:hover .info-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.4);
}

.cv-download-card:hover .info-icon i {
    color: #FF8520;
}

.download-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-orange);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-arrow i {
    font-size: 1rem;
    color: var(--white);
    animation: bounceDown 2s ease-in-out infinite;
}

.cv-download-card:hover .download-arrow {
    transform: scale(1.2);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.5);
}

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

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFE8D6 0%, #F5F0E8 25%, #E8F1F5 50%, #F5F0E8 75%, #FFE8D6 100%);
    position: relative;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 153, 51, 0.07) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.skills-section .container {
    position: relative;
    z-index: 1;
}

/* Skill Card */
.skill-card {
    perspective: 1000px;
}

.skill-hexagon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 240, 232, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.skill-card:hover .skill-hexagon {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Skill Icon */
.skill-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Skill Name */
.skill-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

/* Skill Progress */
.skill-progress {
    width: 100%;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange) 0%, #FFB366 100%);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease-out;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

/* Skill Percentage */
.skill-percentage {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-text);
    margin: 0;
    letter-spacing: -1px;
}


/* Marquee Section */
.marquee-section {
    /* padding: 60px 0; */
    background: linear-gradient(90deg, var(--primary-orange) 0%, #ff8d1b 50%, var(--primary-orange) 100%);
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
    will-change: transform;
}

.marquee-text {
    font-size: 8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 3px;
    padding: 0 3rem;
    text-transform: uppercase;
    display: inline-block;
}

.marquee-dot {
    font-size: 8rem;
    color: var(--white);
    opacity: 0.5;
    padding: 0 2rem;
}

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

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


/* Experience & Education Section */
.experience-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #E8F1F5 0%, #F5F0E8 20%, #FFE8D6 40%, #F5F0E8 60%, #E8F1F5 80%, #F5F0E8 100%);
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(0, 217, 255, 0.07) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(157, 78, 221, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.experience-section .container {
    position: relative;
    z-index: 1;
}

/* Experience Title */
.experience-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 3rem;
}

/* Tab Navigation */
.experience-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.3);
}

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

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* Experience Card */
.experience-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 240, 232, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.5);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

/* Card Header Section */
.card-header-section {
    margin-bottom: 1.5rem;
}

.year-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.company-name {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 500;
    margin: 0;
}

/* Card Body Section */
.card-body-section {
    flex: 1;
    padding-bottom: 5rem;
}

.job-description {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* Card Icon */
.card-icon {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.experience-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.icon-circle.green {
    background: linear-gradient(135deg, #95C623 0%, #7AB317 100%);
}

.icon-circle.dark {
    background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
}

.icon-circle.purple {
    background: linear-gradient(135deg, #9D4EDD 0%, #7B2CBF 100%);
}

.icon-circle.green-light {
    background: linear-gradient(135deg, #96BF48 0%, #7FA639 100%);
}

.icon-circle svg,
.icon-circle i {
    width: 35px;
    height: 35px;
    font-size: 35px;
    color: white;
}

/* Card Rating */
.card-rating {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
}

.rating-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-text);
    letter-spacing: -1px;
}


/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F0E8 0%, #E8F1F5 30%, #FFE8D6 60%, #E8F1F5 90%, #F5F0E8 100%);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 153, 51, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header Portfolio */
.section-header-portfolio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.header-left {
    flex: 1;
}

.portfolio-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-text);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.portfolio-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-text);
    margin: 0;
    letter-spacing: -1px;
}

.header-right {
    flex-shrink: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.3);
}

.view-all-btn:hover {
    background: #E68A2E;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 153, 51, 0.4);
    color: var(--white);
}

.view-all-btn svg,
.view-all-btn i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.view-all-btn:hover svg,
.view-all-btn:hover i {
    transform: translate(3px, -3px);
}

/* Portfolio Grid - Masonry Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    grid-auto-rows: 300px;
}

.portfolio-item.large {
    grid-column: span 6;
    grid-row: span 2;
}

.portfolio-item.medium {
    grid-column: span 6;
    grid-row: span 1;
}

.portfolio-item.small {
    grid-column: span 6;
    grid-row: span 1;
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

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

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.portfolio-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.project-category {
    display: block;
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}

/* Zoom Button */
.zoom-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.4);
}

.portfolio-card:hover .zoom-btn {
    opacity: 1;
    transform: scale(1);
}

.zoom-btn:hover {
    background: #E68A2E;
    transform: scale(1.1) rotate(45deg);
}

.zoom-btn svg,
.zoom-btn i {
    transition: transform 0.3s ease;
    color: white;
    font-size: 20px;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

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

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.modal-close:hover {
    color: var(--primary-orange);
    transform: rotate(90deg);
}

.modal-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    max-width: 80%;
}

.modal-caption strong {
    color: var(--primary-orange);
    font-size: 0.9rem;
    letter-spacing: 1px;
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFE8D6 0%, #E8F1F5 30%, #F5F0E8 50%, #E8F1F5 70%, #FFE8D6 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255, 153, 51, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

/* Testimonials Header */
.testimonials-header {
    position: relative;
}

.testimonials-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-text);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

/* Customer Stats */
.customer-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.customer-avatars {
    display: flex;
    align-items: center;
}

.customer-avatars .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.customer-avatars .avatar:first-child {
    margin-left: 0;
}

.customer-avatars .avatar:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
}

.customer-count {
    display: flex;
    flex-direction: column;
}

.count-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1;
    letter-spacing: -1px;
}

.count-text {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.4;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-content-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 240, 232, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 2.5rem;
}

/* Testimonial Person */
.testimonial-person {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.person-image {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.rating-card {
    background: var(--primary-orange);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.3);
    position: absolute;
    top: 265px;
}

.stars {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stars i {
    color: #ffd833;
    font-size: 16px;
}

.person-name {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
}

/* Testimonial Text */
.testimonial-text {
    flex: 1;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -1rem;
    right: 0;
    opacity: 0.3;
}

.quote-icon i {
    font-size: 60px;
    color: #FF9933;
}

.testimonial-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.testimonial-project {
    color: var(--gray-text);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.testimonial-description {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Testimonial Navigation */
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.3);
}

.progress-bars {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 400px;
}

.progress-bars .progress-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-bars .progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary-orange);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-bars .progress-bar.active::before {
    width: 100%;
}

.progress-bars .progress-bar:hover {
    background: rgba(255, 153, 51, 0.2);
}


/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFE8D6 0%, #E8F1F5 30%, #F5F0E8 60%, #FFE8D6 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 50%, rgba(255, 153, 51, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-text);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-title {
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin: 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

/* Pricing Card Header */
.pricing-card-header {
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

/* Green Card */
.green-card .pricing-card-header {
    background: linear-gradient(135deg, #00D9A3 0%, #00BF8F 100%);
}

/* Orange Card */
.orange-card .pricing-card-header {
    background: linear-gradient(135deg, #FF9933 0%, #FF8520 100%);
}

/* Purple Card */
.purple-card .pricing-card-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

/* Pricing Info */
.pricing-info {
    flex: 1;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
}

.price-period {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Service Icon Pricing */
.service-icon-pricing {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.service-icon-pricing i {
    font-size: 3rem;
    color: var(--white);
}

/* Pricing Card Body */
.pricing-card-body {
    padding: 2.5rem 2rem;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.features-list li i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.features-list li .fa-check-circle {
    color: #00D9A3;
}

.features-list li .fa-clock {
    color: var(--dark-text);
}

.features-list li .fa-sync-alt {
    color: var(--dark-text);
}

/* Purchase Button */
.purchase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: transparent;
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-text);
}

.purchase-btn:hover {
    background: var(--dark-text);
    color: var(--white);
    transform: translateX(5px);
}

.purchase-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.purchase-btn:hover i {
    transform: translateX(5px);
}

/* Featured Button (Orange Card) */
.featured-btn {
    background: linear-gradient(135deg, #FF9933 0%, #FF8520 100%);
    color: var(--white);
    border: none;
}

.featured-btn:hover {
    background: linear-gradient(135deg, #FF8520 0%, #E67A1C 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

/* Featured Card Effect */
.pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
}

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

/* CTA Card (Inside Pricing Section) */
.cta-card {
    background: linear-gradient(135deg, rgba(255, 248, 230, 0.8) 0%, rgba(255, 245, 220, 0.9) 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid rgba(255, 153, 51, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 153, 51, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA Decoration (3D Icon) */
.cta-decoration {
    position: absolute;
    top: 50px;
    right: 80px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FF9933 0%, #FFB366 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(255, 153, 51, 0.3);
    animation: float 3s ease-in-out infinite;
    transform: rotate(-15deg);
}

.cta-decoration i {
    font-size: 3.5rem;
    color: var(--white);
    transform: rotate(15deg);
}

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

/* CTA Profile */
.cta-profile {
    position: relative;
    margin-bottom: 2.5rem;
    z-index: 2;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.cta-profile:hover .profile-image {
    transform: scale(1.05);
}

/* WhatsApp Badge */
.whatsapp-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    border: 4px solid var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-badge i {
    font-size: 1.75rem;
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.wave-emoji {
    display: inline-block;
    font-size: 3rem;
    animation: wave 1.5s ease-in-out infinite;
}

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

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #FF9933 0%, #FF8520 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF8520 0%, #E67A1C 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.4);
    color: var(--white);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F0F0 0%, #E8E8E8 50%, #F0F0F0 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 153, 51, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Contact Info (Left Side) */
.contact-info {
    display: flex;
    flex-direction: column;
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

/* Contact Icon */
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.phone-icon {
    background: rgba(255, 153, 51, 0.1);
}

.phone-icon i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.email-icon {
    background: rgba(255, 153, 51, 0.1);
}

.email-icon i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.location-icon {
    background: rgba(255, 153, 51, 0.1);
}

.location-icon i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-text);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Divider */
.contact-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 1rem 0 2rem 0;
}

/* Availability Info */
.availability-info {
    margin-top: auto;
}

.availability-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.availability-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.availability-list li i {
    font-size: 0.5rem;
    color: var(--gray-text);
}

/* Contact Form Wrapper (Right Side) */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
}

/* Form Row (Email and Phone) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Form Control */
.form-control {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    font-size: 1rem;
    color: var(--dark-text);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--primary-orange);
}

.form-control::placeholder {
    color: var(--gray-text);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    padding-top: 1rem;
}

/* Submit Button */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #FF9933 0%, #FF8520 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
    align-self: flex-start;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #FF8520 0%, #E67A1C 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.4);
}

.submit-btn i {
    font-size: 1rem;
}

/* Success Message Notification */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.success-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.success-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 3px solid rgba(255, 153, 51, 0.2);
    min-width: 400px;
}

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

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

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

.success-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

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

/* Footer Section */
.footer-section {
    background: #0A0A0A;
    padding: 80px 0 0 0;
    color: var(--white);
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer CTA (Left) */
.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
    text-transform: uppercase;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-btn {
    background: var(--white);
    color: var(--dark-text);
}

.email-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

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

.whatsapp-btn:hover {
    background: var(--white);
    color: var(--dark-text);
    transform: translateY(-3px);
}

.footer-btn i {
    font-size: 1.1rem;
}

/* Footer Services (Center) */
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: var(--primary-orange);
}

/* Footer Contact (Right) */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-address p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
}

.footer-social-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.footer-social-link:hover {
    color: var(--primary-orange);
}

.footer-social-link:hover::after {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.back-to-top a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.back-to-top a:hover {
    color: var(--primary-orange);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 0.85rem;
}

/* Partners Section */
.partners-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F5F0E8 0%, #E8E8E8 50%, #F5F0E8 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.partners-section .container {
    position: relative;
    z-index: 1;
}

/* Partners Header */
.partners-header {
    text-align: center;
    margin-bottom: 5rem;
}

.partners-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-text);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partners-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin: 0;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Partner Card */
.partner-card {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
}

/* Partner Circle */
.partner-circle {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.partner-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(0, 217, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.partner-card:hover .partner-circle {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.partner-card:hover .partner-circle::before {
    opacity: 1;
}

/* Partner Logo */
.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.partner-logo i {
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo i {
    transform: scale(1.1);
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.partners-grid .partner-card:nth-child(5),
.partners-grid .partner-card:nth-child(6),
.partners-grid .partner-card:nth-child(7),
.partners-grid .partner-card:nth-child(8) {
    margin-top: -60px;
}

/* Responsive Design for Partners */
@media (max-width: 1300px) {
    .service-icon{
        display: none;
    }
}
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .partner-circle {
        width: 220px;
        height: 220px;
    }

    .partners-grid .partner-card:nth-child(4),
    .partners-grid .partner-card:nth-child(5),
    .partners-grid .partner-card:nth-child(6),
    .partners-grid .partner-card:nth-child(7),
    .partners-grid .partner-card:nth-child(8) {
        margin-top: -60px;
    }

    .hero-heading h1{
            font-size: 3rem;
    }

     .service-icon{
        display: block;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .service-card {
        position: static;
        margin-bottom: 2rem;
    }

    .service-content {
        padding: 2.5rem;
    }

    .service-info {
        padding-right: 0;
    }

 
}

@media (max-width: 991px) {

     .hero-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .hero-heading h1 {
        font-size: 3rem;
    }

    .hero-intro {
        gap: 1.5rem;
    }

    .marquee-content{
        animation: marquee 2s linear infinite;
    }

    .rating-card{
            top: 220px;
    }

    .portfolio-link {
        align-self: flex-start;
    }

    .photo-grid-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .social-card {
        left: 15%;
        transform: translateX(-50%);
        bottom: -30px;
    }

     .services-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .service-content {
        padding: 2rem;
    }

    .service-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .service-card {
        top: 80px;
    }

    .service-card:nth-child(2) {
        top: 90px;
    }

    .service-card:nth-child(3) {
        top: 100px;
    }

        .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .testimonial-content-wrapper {
        padding: 2.5rem;
    }

    .person-image {
        width: 180px;
        height: 220px;
    }

    .testimonial-heading {
        font-size: 1.5rem;
    }

       .portfolio-section {
        padding: 80px 0;
    }

    .section-header-portfolio {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

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

    .portfolio-grid {
        grid-auto-rows: 250px;
    }

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

       .about-section {
        padding: 80px 0;
    }

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

    .about-illustration {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .profile-image-wrapper {
        margin-bottom: 2rem;
    }

    .signature-line {
        width: 150px;
    }

        .skills-section {
        padding: 80px 0;
    }

    .skill-hexagon {
        min-height: 280px;
        padding: 2.5rem 1.5rem;
    }

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

    .skill-name {
        font-size: 1rem;
    }

    .skill-percentage {
        font-size: 1.75rem;
    }

       .marquee-section {
        padding: 50px 0;
    }

    .marquee-text {
        font-size: 3rem;
        padding: 0 2rem;
    }

    .marquee-dot {
        font-size: 2.5rem;
        padding: 0 1.5rem;
    }

      .pricing-section {
        padding: 80px 0;
    }

    .pricing-title {
        font-size: 2.75rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 500px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .service-name {
        font-size: 1.35rem;
    }

    .price {
        font-size: 3rem;
    }

       .cta-card {
        padding: 3.5rem 2.5rem;
        margin-top: 4rem;
    }

    .cta-decoration {
        width: 100px;
        height: 100px;
        top: 40px;
        right: 40px;
    }

    .cta-decoration i {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .profile-image {
        width: 160px;
        height: 160px;
    }

    .whatsapp-badge {
        width: 45px;
        height: 45px;
    }

    .whatsapp-badge i {
        font-size: 1.5rem;
    }

      .contact-section {
        padding: 80px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }

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

      .footer-section {
        padding: 60px 0 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 40px;
    }

    .footer-title {
        font-size: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

      .experience-section {
        padding: 80px 0;
    }

    .experience-title {
        font-size: 2.5rem;
    }

    .experience-tabs {
        margin-bottom: 3rem;
    }

    .tab-btn {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .experience-card {
        padding: 2rem;
        min-height: 300px;
    }

    .job-title {
        font-size: 1.35rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle svg,
    .icon-circle i {
        width: 30px;
        height: 30px;
        font-size: 30px;
    }

    .rating-text {
        font-size: 2.25rem;
    }

    .partners-section {
        padding: 100px 0;
    }

    .partners-title {
        font-size: 3rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .partner-circle {
        width: 200px;
        height: 200px;
    }

    .partner-logo i {
        font-size: 3.5rem;
    }

    .partner-name {
        font-size: 1.3rem;
    }

    .partners-grid .partner-card:nth-child(3),
    .partners-grid .partner-card:nth-child(4),
    .partners-grid .partner-card:nth-child(5),
    .partners-grid .partner-card:nth-child(6),
    .partners-grid .partner-card:nth-child(7),
    .partners-grid .partner-card:nth-child(8) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {

    .hero-intro{
        flex-direction: column;
    }

    .rating-card{
        position: relative;
        top: 0;
    }

    .loader-logo {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .loader-spinner {
        width: 100px;
        height: 100px;
    }

    .loader-text {
        font-size: 1rem;
    }

    .loader-progress {
        width: 250px;
    }

      .hero-section {
        padding: 100px 0 60px;
    }

    .hero-heading h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .btn-talk {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .photo-grid {
        gap: 6px;
    }

    .grid-item {
        border-radius: 8px;
    }

    .social-card {
        padding: 1.25rem 1.5rem;
    }

    .social-link {
        font-size: 0.85rem;
    }

      .services-section {
        padding: 60px 0;
    }

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

    .service-content {
        padding: 1.5rem;
    }

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

    .service-description {
        font-size: 0.95rem;
    }

    /* Disable sticky on mobile for better UX */
    .service-card {
        position: relative;
        top: auto !important;
        margin-bottom: 2rem;
    }

      .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .customer-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .customer-avatars .avatar {
        width: 45px;
        height: 45px;
    }

    .count-number {
        font-size: 1.75rem;
    }

    .testimonial-content-wrapper {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .testimonial-person {
        flex-direction: row;
        gap: 1.5rem;
        width: 100%;
    }

    .person-image {
        width: 120px;
        height: 150px;
    }

    .rating-card {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .testimonial-heading {
        font-size: 1.35rem;
    }

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

    .testimonial-description {
        font-size: 0.95rem;
    }

    .testimonial-navigation {
        gap: 1rem;
        margin-top: 2rem;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
    }

    .progress-bars {
        max-width: 200px;
    }

     .portfolio-section {
        padding: 60px 0;
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
        grid-auto-rows: 200px;
    }

    .portfolio-item.large,
    .portfolio-item.medium,
    .portfolio-item.small {
        grid-column: span 6;
        grid-row: span 1;
    }

    .portfolio-overlay {
        padding: 1.5rem;
    }

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

    .project-category {
        font-size: 0.75rem;
    }

    .zoom-btn {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 80vh;
    }

     .about-section {
        padding: 60px 0;
    }

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

    .about-signature-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .signature-line {
        width: 100px;
    }

    .info-card {
        padding: 1.25rem 1.5rem;
    }

    .signature-overlay {
        width: 120px;
        height: 60px;
        bottom: 10px;
        right: 10px;
    }

       .skills-section {
        padding: 60px 0;
    }

    .skill-hexagon {
        min-height: 260px;
        padding: 2rem 1.5rem;
        clip-path: none;
        border-radius: 20px;
    }

    .skill-icon {
        width: 60px;
        height: 60px;
    }

    .skill-name {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .skill-percentage {
        font-size: 1.5rem;
    }

     .marquee-section {
        padding: 40px 0;
    }

    .marquee-text {
        font-size: 2.5rem;
        padding: 0 1.5rem;
        letter-spacing: 2px;
    }

    .marquee-dot {
        font-size: 2rem;
        padding: 0 1rem;
    }

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

       .pricing-section {
        padding: 60px 0;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    .pricing-title {
        font-size: 2.25rem;
    }

    .pricing-card-header {
        padding: 2rem 1.5rem;
    }

    .pricing-card-body {
        padding: 2rem 1.5rem;
    }

    .service-icon-pricing {
        width: 70px;
        height: 70px;
    }

    .service-icon-pricing i {
        font-size: 2.5rem;
    }

    .price {
        font-size: 2.75rem;
    }

     .cta-card {
        padding: 3rem 2rem;
        margin-top: 3.5rem;
    }

    .cta-decoration {
        width: 80px;
        height: 80px;
        top: 30px;
        right: 30px;
    }

    .cta-decoration i {
        font-size: 2.5rem;
    }

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

    .profile-image {
        width: 140px;
        height: 140px;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

      .contact-section {
        padding: 60px 0;
    }

    .contact-wrapper {
        padding: 2rem;
        gap: 2.5rem;
    }

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

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

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.25rem;
    }

    .contact-value {
        font-size: 1.1rem;
    }

      .experience-section {
        padding: 60px 0;
    }

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

    .experience-tabs {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .experience-card {
        padding: 1.75rem;
        min-height: auto;
    }

    .year-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .job-title {
        font-size: 1.25rem;
    }

    .company-name {
        font-size: 0.95rem;
    }

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

    .card-body-section {
        padding-bottom: 0;
    }

    .card-icon,
    .card-rating {
        position: static;
        margin-top: 1.5rem;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
    }

    .icon-circle svg,
    .icon-circle i {
        width: 28px;
        height: 28px;
        font-size: 28px;
    }

    .rating-text {
        font-size: 2rem;
    }

    .partners-section {
        padding: 80px 0;
    }

    .partners-header {
        margin-bottom: 4rem;
    }

    .partners-title {
        font-size: 2.25rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .partner-circle {
        width: 160px;
        height: 160px;
    }

    .partner-logo i {
        font-size: 2.5rem;
    }

    .partner-name {
        font-size: 1.1rem;
    }

        .footer-section {
        padding: 50px 0 0 0;
    }

    .footer-title {
        font-size: 2.5rem;
    }

    .footer-buttons {
        flex-direction: column;
    }

    .footer-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-top {
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {

      .loader-logo {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .loader-spinner {
        width: 80px;
        height: 80px;
    }

    .loader-text {
        font-size: 0.9rem;
    }

    .loader-progress {
        width: 200px;
    }

       .hero-heading h1 {
        font-size: 2rem;
    }

    .intro-text,
    .description-text {
        font-size: 0.9rem;
    }

    .hero-content {
        padding-left: 0;
    }

    .portfolio-link {
        font-size: 0.8rem;
        padding: 0.85rem 1.25rem;
    }

       .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonial-content-wrapper {
        padding: 1.5rem;
    }

    .testimonial-person {
        flex-direction: column;
        align-items: center;
    }

    .person-image {
        width: 150px;
        height: 180px;
    }

    .rating-card {
        width: 100%;
    }

    .testimonial-heading {
        font-size: 1.25rem;
    }

    .quote-icon svg,
    .quote-icon i {
        width: 40px;
        height: 40px;
        font-size: 40px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .nav-btn svg,
    .nav-btn i {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }

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

    .view-all-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }

    .portfolio-grid {
        gap: 0.75rem;
        grid-auto-rows: 180px;
    }

    .portfolio-card {
        border-radius: 16px;
    }

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

    .zoom-btn {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }

    .zoom-btn svg,
    .zoom-btn i {
        width: 18px;
        height: 18px;
        font-size: 18px;
    }

      .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-icon svg,
    .service-icon i {
        width: 50px;
        height: 50px;
        font-size: 50px;
    }

    .service-title {
        font-size: 1.25rem;
    }

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

    .about-description p {
        font-size: 0.95rem;
    }

    .contact-btn {
        font-size: 0.8rem;
        padding: 0.85rem 1.25rem;
    }

    .info-card {
        gap: 1rem;
        padding: 1rem 1.25rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-value {
        font-size: 0.9rem;
    }

      .skill-hexagon {
        min-height: 240px;
        padding: 1.75rem 1.25rem;
    }

    .skill-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .skill-name {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .skill-percentage {
        font-size: 1.35rem;
    }

      .marquee-section {
        padding: 30px 0;
    }

    .marquee-text {
        font-size: 1.75rem;
        padding: 0 1rem;
        letter-spacing: 1px;
    }

    .marquee-dot {
        font-size: 1.5rem;
        padding: 0 0.75rem;
    }

       .pricing-title {
        font-size: 1.85rem;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
    }

    .pricing-card-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-icon-pricing {
        width: 60px;
        height: 60px;
        align-self: flex-end;
    }

    .service-icon-pricing i {
        font-size: 2rem;
    }

    .service-name {
        font-size: 1.25rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .features-list li {
        font-size: 0.9rem;
    }

    .purchase-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

     .cta-card {
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
    }

    .cta-decoration {
        width: 70px;
        height: 70px;
        top: 20px;
        right: 20px;
    }

    .cta-decoration i {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .wave-emoji {
        font-size: 2rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
        border: 4px solid var(--white);
    }

    .whatsapp-badge {
        width: 40px;
        height: 40px;
        border: 3px solid var(--white);
    }

    .whatsapp-badge i {
        font-size: 1.25rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

      .contact-wrapper {
        padding: 1.5rem;
    }

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

    .contact-items {
        gap: 1.5rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1.1rem 2rem;
    }

    .availability-list li {
        font-size: 0.85rem;
    }
    .success-content {
        padding: 2.5rem 2rem;
        min-width: 320px;
        max-width: 90vw;
    }

    .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;
    }

      .experience-title {
        font-size: 1.75rem;
    }

    .experience-card {
        padding: 1.5rem;
    }

    .job-title {
        font-size: 1.15rem;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle svg,
    .icon-circle i {
        width: 25px;
        height: 25px;
        font-size: 25px;
    }

    .rating-text {
        font-size: 1.75rem;
    }
    
    .partners-section {
        padding: 60px 0;
    }

    .partners-title {
        font-size: 1.85rem;
    }

    .partners-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
    }

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

    .partner-circle {
        width: 200px;
        height: 200px;
    }

    .partner-logo i {
        font-size: 3rem;
    }

    .partner-name {
        font-size: 1.25rem;
    }

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

    .footer-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-list li a {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .copyright p {
        font-size: 0.85rem;
    }

    .back-to-top a {
        font-size: 0.8rem;
    }
}




