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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
    z-index: -200;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ff5400, #ff8c00);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff6b00, #ff4500);
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #ff7700, #ff5500);
    bottom: 20%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -50px) rotate(90deg); }
    50% { transform: translate(-30px, -80px) rotate(180deg); }
    75% { transform: translate(-60px, 30px) rotate(270deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 84, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(255, 84, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 50px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 84, 0, 0.3));
    display: block;
    position: relative;
    top: -2px; /* nudge logo slightly upward for better alignment */
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 84, 0, 0.5));
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1;
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff5400;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5400;
    transition: width 0.3s ease;
}

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

.nav-social {
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-social:hover {
    color: #ff5400;
    transform: rotate(90deg);
}

.cta-button .btn-primary {
    background: linear-gradient(135deg, #ff5400, #ff6b00);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 84, 0, 0.3);
}

.cta-button .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 84, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Logo/Background_bg.png') center center/cover no-repeat;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

/* Slider styles removed - back to simple hero content */

.hero-content {
    max-width: 800px;
    animation: heroFadeIn 1.5s ease-out;
}

.hero-badge {
    margin-bottom: 2rem;
    animation: badgeSlide 1s ease-out 0.5s both;
}

.badge-text {
    background: rgba(255, 84, 0, 0.1);
    border: 1px solid rgba(255, 84, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ff5400;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 84, 0, 0.3);
    animation: titleGlow 2s ease-out 0.8s both;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    animation: subtitleFade 1.5s ease-out 1.2s both;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsFade 1.5s ease-out 1.5s both;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ff5400;
    color: #ff5400;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5400, #ff6b00);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 84, 0, 0.3);
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff5400, #ff6b00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 84, 0, 0.3);
}

.btn-play:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 84, 0, 0.4);
}


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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #ff5400);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Logo/Background_bg.png') center center/cover no-repeat;
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
}

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

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: portfolioFloat 6s ease-in-out infinite;
}

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

.portfolio-item:nth-child(1) { animation-delay: 0s; }
.portfolio-item:nth-child(2) { animation-delay: 1s; }
.portfolio-item:nth-child(3) { animation-delay: 2s; }
.portfolio-item:nth-child(4) { animation-delay: 3s; }
.portfolio-item:nth-child(5) { animation-delay: 4s; }
.portfolio-item:nth-child(6) { animation-delay: 5s; }

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 84, 0, 0.2);
}

/* Remove featured spanning - all cards same size */

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

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

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 84, 0, 0.3), rgba(255, 107, 0, 0.1));
    position: relative;
}

.image-placeholder::before {
    content: '🎬';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.6;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 84, 0, 0.1) 0%, 
        rgba(255, 84, 0, 0.2) 50%, 
        rgba(255, 107, 0, 0.1) 100%);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Remove dark overlay for Tom and Jerry card */
.portfolio-item[data-category="animation"] .portfolio-overlay {
    background: transparent;
    justify-content: flex-end;
    align-items: flex-start;
}

.portfolio-item[data-category="animation"]:hover .portfolio-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    transform: none;
}

/* Specific styling for Bachpan Ke Saathi card */
.portfolio-item[data-category="animation"]:not(:first-of-type) .portfolio-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    justify-content: flex-end;
    align-items: flex-start;
}

.portfolio-item[data-category="animation"]:not(:first-of-type):hover .portfolio-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.95));
    transform: translateY(-5px);
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag-feature { background: rgba(255, 84, 0, 0.2); color: #ff5400; }
.tag-commercial { background: rgba(0, 150, 255, 0.2); color: #0096ff; }
.tag-music { background: rgba(255, 0, 150, 0.2); color: #ff0096; }
.tag-documentary { background: rgba(0, 255, 150, 0.2); color: #00ff96; }
.tag-short { background: rgba(150, 0, 255, 0.2); color: #9600ff; }
.tag-animation { background: rgba(156, 39, 176, 0.2); color: #9c27b0; }
.tag-brand { background: rgba(255, 150, 0, 0.2); color: #ff9600; }
.tag-status { background: rgba(255, 255, 255, 0.1); color: #ffffff; }

.portfolio-year {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.3;
}

.portfolio-desc {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-actions {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
}

.watch-btn {
    background: linear-gradient(135deg, #ff5400, #ff7a00);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 84, 0, 0.3);
}

.watch-btn:hover {
    background: linear-gradient(135deg, #ff7a00, #ff5400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 84, 0, 0.4);
}

.watch-btn i {
    font-size: 0.8rem;
}

/* Better text positioning for animation cards */
.portfolio-item[data-category="animation"] .portfolio-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.portfolio-item[data-category="animation"] .portfolio-tags {
    margin-bottom: 0.5rem;
}

.portfolio-item[data-category="animation"] .portfolio-actions {
    margin-top: 0.5rem;
}


.meta-tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.7rem;
    color: #cccccc;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 84, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

.services-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

.services-subtitle h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 84, 0, 0.05), rgba(255, 107, 0, 0.02));
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff5400, #ff6b00);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-desc {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature {
    padding: 6px 14px;
    background: rgba(255, 84, 0, 0.1);
    border: 1px solid rgba(255, 84, 0, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ff5400;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Logo/Background_bg.png') center center/cover no-repeat;
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.person-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.person-image:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Founder Image Animations and Styling */
.founder-image-container {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 84, 0, 0.2);
    transition: all 0.3s ease;
}

.founder-image-container:hover {
    border-color: rgba(255, 84, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 84, 0, 0.2);
    transform: translateY(-5px);
}

.founder-image {
    transition: all 0.3s ease;
}

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

@keyframes founderFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-10px) scale(1.02); 
    }
}

/* Add subtle glow effect */
.founder-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 84, 0, 0.05), rgba(255, 107, 0, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.founder-image-container:hover::before {
    opacity: 1;
}

.about-description p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.7;
}

.about-description p strong {
    color: #ff5400;
}

.highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff5400;
    font-style: italic;
}

/* Secondary tagline styling */
.tagline-secondary {
    text-align: center;
    margin: 1.5rem 0 2rem 0;
    position: relative;
    z-index: 5;
}

.secondary-line {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff5400;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    animation: secondaryGlow 3s ease-in-out infinite alternate;
}

@keyframes secondaryGlow {
    0% {
        text-shadow: 
            0 0 5px rgba(255, 84, 0, 0.3),
            0 0 10px rgba(255, 84, 0, 0.2);
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(255, 84, 0, 0.6),
            0 0 25px rgba(255, 84, 0, 0.4),
            0 0 35px rgba(255, 84, 0, 0.2);
        transform: scale(1.02);
    }
}

/* CREATE A DIFFERENCE styling and animations */
.difference-text {
    position: relative;
    margin: 2rem 0;
    text-align: center;
    z-index: 5;
}

.difference-line {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff5400;
    text-shadow: 
        0 0 10px rgba(255, 84, 0, 0.5),
        0 0 20px rgba(255, 84, 0, 0.3),
        0 0 30px rgba(255, 84, 0, 0.2);
    letter-spacing: 4px;
    animation: differenceGlow 2s ease-in-out infinite alternate, differenceScale 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

@keyframes differenceGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 84, 0, 0.5),
            0 0 20px rgba(255, 84, 0, 0.3),
            0 0 30px rgba(255, 84, 0, 0.2);
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(255, 84, 0, 0.8),
            0 0 30px rgba(255, 84, 0, 0.6),
            0 0 40px rgba(255, 84, 0, 0.4),
            0 0 50px rgba(255, 84, 0, 0.2);
        transform: scale(1.05);
    }
}

@keyframes differenceScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Sparks animation */
.sparks-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff5400;
    border-radius: 50%;
    box-shadow: 0 0 6px #ff5400, 0 0 12px #ff5400;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.spark-1 {
    top: 20%;
    left: 10%;
    animation-name: sparkle1;
    animation-delay: 0s;
}

.spark-2 {
    top: 30%;
    right: 15%;
    animation-name: sparkle2;
    animation-delay: 0.3s;
}

.spark-3 {
    bottom: 25%;
    left: 20%;
    animation-name: sparkle3;
    animation-delay: 0.6s;
}

.spark-4 {
    bottom: 20%;
    right: 10%;
    animation-name: sparkle4;
    animation-delay: 0.9s;
}

.spark-5 {
    top: 10%;
    left: 50%;
    animation-name: sparkle5;
    animation-delay: 1.2s;
}

.spark-6 {
    bottom: 10%;
    left: 50%;
    animation-name: sparkle6;
    animation-delay: 1.5s;
}

@keyframes sparkle1 {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
}

@keyframes sparkle2 {
    0%, 100% {
        opacity: 0;
        transform: scale(0) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) translateY(-10px);
    }
}

@keyframes sparkle3 {
    0%, 100% {
        opacity: 0;
        transform: scale(0) translateX(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.8) translateX(15px);
    }
}

@keyframes sparkle4 {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.4) rotate(-180deg) translateY(12px);
    }
}

@keyframes sparkle5 {
    0%, 100% {
        opacity: 0;
        transform: scale(0) translateX(0px) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.6) translateX(-20px) translateY(-15px);
    }
}

@keyframes sparkle6 {
    0%, 100% {
        opacity: 0;
        transform: scale(0) translateX(0px) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.3) translateX(18px) translateY(10px);
    }
}

.highlight-text {
    color: #ff5400;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff5400, #ff6b00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #ff5400, #ff6b00);
    border-radius: 1px;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(255, 84, 0, 0.3);
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff5400, #ff6b00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff5400;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.about-video {
    margin-bottom: 4rem;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-placeholder {
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 84, 0, 0.3), rgba(255, 107, 0, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, rgba(255, 84, 0, 0.4), rgba(255, 107, 0, 0.2));
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff5400;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: white;
}

.video-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.video-overlay p {
    color: #cccccc;
}

.mission-section {
    display: flex;
    justify-content: center;
}

.mission-card {
    background: rgba(255, 84, 0, 0.1);
    border: 1px solid rgba(255, 84, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    text-align: center;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff5400;
}

.mission-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Enhanced About Section Image Styling */
.founder-image-container {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

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

.founder-image-container:hover .founder-image {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

/* Form Messages */
.form-message {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    animation: slideUp 0.5s ease-out;
}

.success-message {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4caf50;
}

.success-message h3 {
    margin: 1rem 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.success-message p {
    margin: 0;
    opacity: 0.8;
}

/* Form Loading State */
.btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit.loading span {
    opacity: 0;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5400;
    box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.1);
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

/* Dropdown styling for better visibility */
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.form-group select:focus {
    outline: none;
    border-color: #ff5400;
    box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.1);
}

.form-group select option {
    background: #2a2a2a !important;
    background-color: #2a2a2a !important;
    color: #ffffff !important;
    padding: 10px;
    border: none;
}

.form-group select option:hover {
    background: #ff5400 !important;
    background-color: #ff5400 !important;
    color: #ffffff !important;
}

.form-group select option:checked {
    background: #ff5400 !important;
    background-color: #ff5400 !important;
    color: #ffffff !important;
}

.btn-submit {
    background: linear-gradient(135deg, #ff5400, #ff6b00);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 84, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 84, 0, 0.4);
}

.submit-icon {
    color: #ffffff;
    font-size: 1.1rem;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.btn-submit.success .submit-icon {
    color: #00ff00;
}

.btn-submit.success .submit-icon::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(255, 84, 0, 0.3);
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff5400, #ff6b00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ff5400;
}

.contact-card p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-card span {
    color: #cccccc;
    font-size: 0.9rem;
}

.ready-section {
    background: rgba(255, 84, 0, 0.05);
    border: 1px solid rgba(255, 84, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.ready-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff5400;
}

.ready-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
}

.benefits-list i {
    color: #ff5400;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: start;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    filter: drop-shadow(0 2px 6px rgba(255, 84, 0, 0.2));
}

.footer-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff5400;
    color: white;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff5400;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-left p {
    color: #cccccc;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff5400;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff5400, #ff6b00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 84, 0, 0.4);
}

/* Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Enhanced animations for the hero title */
.animated-title {
    animation: titleSlideIn 1.5s ease-out 0.8s both, titlePulse 3s ease-in-out 2s infinite;
    position: relative;
    overflow: hidden;
}

.animated-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 84, 0, 0.3), transparent);
    animation: titleShine 4s ease-in-out 1s infinite;
    z-index: 1;
}

.animated-title .title-line {
    display: inline-block;
    animation: titleBounce 2s ease-out 1.2s both;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
        filter: blur(10px);
    }
    50% {
        transform: translateX(10px) scale(1.05);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 84, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 84, 0, 0.6), 0 0 40px rgba(255, 84, 0, 0.4);
        transform: scale(1.02);
    }
}

@keyframes titleShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes titleBounce {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    60% {
        transform: translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-right {
        flex-direction: row;
        gap: 2rem;
    }
    
    .about-image {
        flex: 1;
        max-width: 300px;
    }
    
    .about-stats {
        flex: 2;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-image-container {
        width: 300px;
        height: 400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-right {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .person-image {
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 400px;
    }
    
    .service-card {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 84, 0, 0.3);
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

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

/* Enhanced Mission Section */
.mission-section {
    margin: 5rem 0;
    position: relative;
}

.mission-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 84, 0, 0.05), rgba(26, 26, 26, 0.95));
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 84, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 84, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 84, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff5400, #ff7a33);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 
        0 10px 30px rgba(255, 84, 0, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: missionPulse 3s ease-in-out infinite;
}

.mission-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ff5400, #ff7a33);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
    animation: missionGlow 2s ease-in-out infinite alternate;
}

.mission-decorative {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}

.mission-circle {
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(255, 84, 0, 0.3);
    border-radius: 50%;
    animation: missionRotate 20s linear infinite;
}

.mission-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 8px;
}

.mission-dots span {
    width: 6px;
    height: 6px;
    background: #ff5400;
    border-radius: 50%;
    animation: missionBlink 2s ease-in-out infinite;
}

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

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

.mission-content {
    z-index: 2;
}

.mission-header {
    margin-bottom: 1.5rem;
}

.mission-label {
    display: inline-block;
    background: rgba(255, 84, 0, 0.1);
    color: #ff5400;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 84, 0, 0.2);
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, #ff5400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text {
    margin: 2rem 0;
}

.mission-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1rem;
}

.highlight-word {
    color: #ff5400;
    font-weight: 600;
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff5400, transparent);
    opacity: 0.6;
}

.mission-values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 84, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 84, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 84, 0, 0.2);
}

.value-item i {
    font-size: 1.25rem;
    color: #ff5400;
    min-width: 20px;
}

.value-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

/* Animations */
@keyframes missionPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes missionGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .mission-values {
        flex-direction: column;
        gap: 1rem;
    }
    
    .value-item {
        justify-content: center;
    }
    
    .mission-decorative {
        display: none;
    }
}

@media (max-width: 480px) {
    .mission-container {
        padding: 1.5rem;
    }
    
    .mission-title {
        font-size: 1.75rem;
    }
    
    .mission-text p {
        font-size: 1rem;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Enhanced Hero Section Animations */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 84, 0, 0.1);
    border: 2px solid rgba(255, 84, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff5400;
    animation: floatUp 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.element-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.element-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.element-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.element-5 {
    top: 40%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.element-6 {
    top: 80%;
    right: 25%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff5400;
    border-radius: 50%;
    animation: particleFloat 12s linear infinite;
}

.particle-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 25%;
    left: 80%;
    animation-delay: 2s;
}

.particle-3 {
    top: 45%;
    left: 15%;
    animation-delay: 4s;
}

.particle-4 {
    top: 65%;
    left: 90%;
    animation-delay: 6s;
}

.particle-5 {
    top: 35%;
    left: 70%;
    animation-delay: 1s;
}

.particle-6 {
    top: 55%;
    left: 30%;
    animation-delay: 3s;
}

.particle-7 {
    top: 75%;
    left: 60%;
    animation-delay: 5s;
}

.particle-8 {
    top: 85%;
    left: 40%;
    animation-delay: 7s;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: shapeRotate 20s linear infinite;
}

.shape-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #ff5400;
    border-radius: 50%;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #ff5400;
    top: 50%;
    left: 15%;
    animation-delay: 5s;
}

.shape-square {
    width: 80px;
    height: 80px;
    border: 3px solid #ff5400;
    top: 70%;
    right: 30%;
    animation-delay: 10s;
}

.shape-diamond {
    width: 60px;
    height: 60px;
    background: #ff5400;
    transform: rotate(45deg);
    top: 25%;
    left: 80%;
    animation-delay: 15s;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 10;
    position: relative;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.primary-cta {
    background: linear-gradient(135deg, #ff5400, #ff7a33);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 84, 0, 0.3);
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 84, 0, 0.4);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 84, 0, 0.5);
    backdrop-filter: blur(10px);
}

.secondary-cta:hover {
    background: rgba(255, 84, 0, 0.1);
    border-color: #ff5400;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 84, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 84, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: #ff5400;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 84, 0, 0.1);
}

.scroll-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hero Animations */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

@keyframes shapeRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

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

/* Responsive Design for Hero Enhancements */
@media (max-width: 768px) {
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .shape-circle {
        width: 80px;
        height: 80px;
    }
    
    .shape-square {
        width: 60px;
        height: 60px;
    }
    
    .shape-diamond {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-floating-elements {
        display: none;
    }
    
    .hero-shapes .shape-triangle,
    .hero-shapes .shape-diamond {
        display: none;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}
