/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #1A1A2E;
    --orange: #FE7A25;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #6C757D;
    --coral: #FF6B6B;
    --gold: #FFD93D;
    --teal: #20C997;
    --purple: #6F42C1;
    --emerald: #28A745;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --navy-glass: rgba(26, 26, 46, 0.8);
}

body {
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #2C2C54 50%, var(--navy-blue) 100%);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Background Animation */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(254, 122, 37, 0.1), rgba(255, 107, 107, 0.1), rgba(255, 217, 61, 0.1));
    animation: pulse 4s ease-in-out infinite;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(254, 122, 37, 0.2);
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 107, 0.2);
    bottom: 25%;
    right: 25%;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 217, 61, 0.15);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--navy-blue), var(--coral));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(254, 122, 37, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--orange);
    text-shadow: 0 0 10px rgba(254, 122, 37, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--coral));
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--coral));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(254, 122, 37, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(254, 122, 37, 0.5);
    background: linear-gradient(135deg, #FF8C42, #FF7F7F);
}

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

.btn-outline:hover {
    background: rgba(254, 122, 37, 0.1);
    box-shadow: 0 0 20px rgba(254, 122, 37, 0.3);
}

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

.btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Hero Styles */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-content {
    max-width: 4xl;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(254, 122, 37, 0.15);
    color: var(--orange);
    border: 1px solid rgba(254, 122, 37, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(254, 122, 37, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, var(--white), #E8E8E8, #D1D1D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, var(--orange), var(--coral), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(254, 122, 37, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 3xl;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

/* Services Styles */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5), rgba(44, 44, 84, 0.5));
}

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

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card[data-gradient="orange-amber"] .service-icon {
    background: linear-gradient(135deg, var(--orange), #FF8C42);
}

.service-card[data-gradient="coral-pink"] .service-icon {
    background: linear-gradient(135deg, var(--coral), #FF8A95);
}

.service-card[data-gradient="gold-yellow"] .service-icon {
    background: linear-gradient(135deg, var(--gold), #FFE066);
}

.service-card[data-gradient="teal-cyan"] .service-icon {
    background: linear-gradient(135deg, var(--teal), #4ECDC4);
}

.service-card[data-gradient="purple-indigo"] .service-icon {
    background: linear-gradient(135deg, var(--purple), #8B5A9F);
}

.service-card[data-gradient="emerald-green"] .service-icon {
    background: linear-gradient(135deg, var(--emerald), #48C774);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Our Work Styles */
.our-work {
    padding: 6rem 0;
}

.work-slideshow {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.work-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.work-btn {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-btn:hover {
    background: rgba(254, 122, 37, 0.1);
    box-shadow: 0 0 20px rgba(254, 122, 37, 0.3);
    transform: scale(1.1);
}

.work-dots {
    display: flex;
    gap: 0.5rem;
}

.work-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-dot.active {
    background: var(--orange);
    box-shadow: 0 0 10px rgba(254, 122, 37, 0.5);
}

.work-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.work-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.work-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(254, 122, 37, 0.2);
}

.work-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.work-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.work-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 122, 37, 0.8), rgba(255, 107, 107, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.work-item-content {
    padding: 1.5rem;
}

.work-item-category {
    background: rgba(254, 122, 37, 0.15);
    color: var(--orange);
    border: 1px solid rgba(254, 122, 37, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 1rem;
}

.work-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.work-item-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.work-item-link {
    background: linear-gradient(135deg, var(--orange), var(--coral));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.work-item-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 122, 37, 0.4);
}

.work-progress {
    margin-top: 2rem;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.work-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--coral));
    border-radius: 2px;
    transition: width 0.5s ease;
    width: 0%;
}

/* Portfolio Styles */
.portfolio {
    padding: 6rem 0;
}

.portfolio-container {
    max-width: 4xl;
    margin: 0 auto;
}

.portfolio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.portfolio-btn {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: rgba(254, 122, 37, 0.1);
    box-shadow: 0 0 20px rgba(254, 122, 37, 0.3);
}

.portfolio-dots {
    display: flex;
    gap: 0.5rem;
}

.portfolio-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-dot.active {
    background: var(--orange);
    box-shadow: 0 0 10px rgba(254, 122, 37, 0.5);
}

.portfolio-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.portfolio-image {
    position: relative;
    height: 300px;
}

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

.portfolio-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-badge {
    background: rgba(254, 122, 37, 0.15);
    color: var(--orange);
    border: 1px solid rgba(254, 122, 37, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 1rem;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.portfolio-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About Styles */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3), rgba(44, 44, 84, 0.3));
}

.about-content {
    max-width: 4xl;
    margin: 0 auto;
    text-align: center;
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 3rem;
}

.about-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item:nth-child(1) .stat-number {
    color: var(--orange);
}

.stat-item:nth-child(2) .stat-number {
    color: var(--coral);
}

.stat-item:nth-child(3) .stat-number {
    color: var(--gold);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Testimonials Styles */
.testimonials {
    padding: 6rem 0;
}

.testimonial-container {
    max-width: 4xl;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

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

.star {
    color: var(--gold);
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.company-logo img {
    height: 40px;
    opacity: 0.8;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-company {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Contact Styles */
.contact {
    padding: 6rem 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(254, 122, 37, 0.15), rgba(255, 107, 107, 0.15), rgba(255, 217, 61, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), #F0F0F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 2xl;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.contact-actions {
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
    color: var(--orange);
}

/* Footer Styles */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(26, 26, 46, 0.8);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-glass);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid var(--glass-border);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .work-slide {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        height: 250px;
    }

    .stats-grid {
        gap: 2rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-card,
    .contact-card {
        padding: 2rem;
    }

    .work-item-content {
        padding: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--orange), var(--coral));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #FF8C42, #FF7F7F);
}