/* CSS Variables */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-color: #1f2937;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

html {
    scroll-behavior: smooth;
}

/* Default Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.slide-left {
    animation: slideLeft 0.6s ease-out;
}

.slide-right {
    animation: slideRight 0.6s ease-out;
}

.zoom-in {
    animation: zoomIn 0.5s ease-out;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Top Contact Bar */
.top-contact-bar {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

.top-contact-bar .contact-info span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.top-contact-bar .contact-info i {
    color: var(--primary-color);
}

.top-contact-bar .social-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 0.75rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.top-contact-bar .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Professional Navigation */
.navbar-professional {
    background: #ffffff !important;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    padding: 1rem 0;
    z-index: 1030;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
}

.navbar-professional.scrolled {
    background: #ffffff !important;
    padding: 0.8rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--primary-color);
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    z-index: 1030;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-link {
    color: #2d3748 !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem !important;
    position: relative;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.btn-quote {
    background: var(--gradient);
    border: none;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.dropdown-professional {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
}

.dropdown-professional .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-professional .dropdown-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-professional .dropdown-item i {
    color: var(--primary-color);
    width: 20px;
}

.dropdown-divider {
    margin: 0.5rem 1rem;
    border-color: rgba(255, 107, 53, 0.2);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-top: 130px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideUpFade 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: slideUpFade 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: slideUpFade 1s ease-out 0.9s both;
}

.hero-image {
    text-align: center;
    animation: slideInRight 1s ease-out 0.5s both;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-40px) scale(0.95);
    }
}

.testimonial-card.fade-in {
    animation: fadeInSlide 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card.fade-out {
    animation: slideOutLeft 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Client Logos Auto Slider */
.clients-section {
    overflow: hidden;
    background: #f8f9fa;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: slideLogos 20s linear infinite;
    width: calc(150px * 12 + 2rem * 12);
}

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

.client-logo {
    flex: 0 0 150px;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

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

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

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 6 - 2rem * 6));
    }
}

/* Our Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 107, 53, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(247, 147, 30, 0.3) 0%, transparent 40%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(-20px) translateY(-10px) rotate(1deg); }
    50% { transform: translateX(20px) translateY(10px) rotate(-1deg); }
    75% { transform: translateX(-10px) translateY(20px) rotate(0.5deg); }
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.our-stats-inner-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px -8px;
    align-items: stretch;
}

.our-stats-inner-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 15px 10px;
    display: flex;
    align-items: stretch;
}

.our-stats-card-outer {
    width: 100%;
    display: flex;
    flex: 1;
}

.our-stats-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

.our-stats-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.our-stats-number-wrap p {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.our-stats-title-wrap p {
    margin: 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Interactive Services Section */
.interactive-services {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.interactive-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.interactive-services .container {
    position: relative;
    z-index: 2;
}

.service-list {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 0;
}

.service-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    margin-bottom: 0.7rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateX(20px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 107, 53, 0.6);
}

.service-item.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(247, 147, 30, 0.95));
    color: white;
    transform: translateX(25px) scale(1.08);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.5);
}

.service-item-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}

.service-item i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    min-width: 50px;
    transition: all 0.5s ease;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item.active i {
    color: white;
    transform: scale(1.3);
}

.service-item h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.service-item.active h4 {
    color: white;
}

.service-item p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
    line-height: 1.3;
}

.service-item.active p {
    color: rgba(255, 255, 255, 0.95);
}

.service-image-container {
    position: relative;
    height: 600px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s ease;
    transform: scale(1.1);
}

.service-image.active {
    opacity: 1;
    transform: scale(1);
}

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

/* Case Studies Section */
.case-studies-section {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 30%, #e2e8f0 70%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.case-studies-content {
    padding: 2rem 0;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-studies-content h2 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    animation: slideUp 0.8s ease-out;
}

.case-studies-subtitle {
    color: #64748b;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.case-studies-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.case-studies-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #475569;
    font-weight: 400;
    font-size: 0.95rem;
}

.case-studies-features i {
    color: #10b981;
    margin-right: 0.8rem;
    font-size: 1rem;
}

.case-studies-slider {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.case-study-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) scale(0.95);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.case-study-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
}

.case-study-slide.prev {
    transform: translateX(-100%) scale(0.95);
    opacity: 0;
}

.case-study-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.case-study-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
    z-index: 3;
}

.case-study-slide.active .case-study-overlay {
    transform: translateY(0);
}

.case-study-overlay h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.case-study-overlay p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Modern Testimonials Section */
.testimonials-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    z-index: 1;
}

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

.testimonials-section h2 {
    color: #1e293b;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.testimonials-subtitle {
    color: #64748b;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials-section .lead {
    color: #64748b;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    width: calc(100% * 2);
}

.testimonial-card {
    flex: 0 0 calc(50% - 1rem);
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    opacity: 1;
    transform: translateX(0);
    animation: fadeIn 0.8s ease-out;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 2.5rem;
    color: #22c55e;
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-image {
    border-color: #22c55e;
    transform: scale(1.05);
}

.author-info h5 {
    margin: 0 0 0.3rem 0;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: relative;
    height: 250px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20px;
    right: 50px;
}

.floating-card:nth-child(2) {
    top: 150px;
    left: 20px;
}

.floating-card:nth-child(3) {
    bottom: 50px;
    right: 20px;
}

.floating-card.delay-1 {
    animation-delay: -2s;
}

.floating-card.delay-2 {
    animation-delay: -4s;
}

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

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    animation: fadeIn 0.6s ease-out;
}

.btn-primary {
    background: var(--gradient);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideUp 0.8s ease-out;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: #6b7280;
}

/* Portfolio Items */
.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: zoomIn 0.6s ease-out;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 200px;
    background: var(--gradient);
    position: relative;
}

.portfolio-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.portfolio-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.8s ease-out;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    display: block;
}

footer ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

footer ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

footer ul li i {
    color: var(--primary-color);
    width: 20px;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

footer .row:last-child p {
    color: rgba(255, 255, 255, 0.6);
}

footer .row:last-child a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

footer .row:last-child a:hover {
    color: var(--primary-color);
}

.footer-map {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-map:hover {
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) brightness(0.8);
    transition: filter 0.3s ease;
}

.footer-map:hover iframe {
    filter: grayscale(0%) brightness(1);
}

@media (max-width: 768px) {
    .footer-map {
        height: 150px;
        margin-top: 1rem;
    }
}

/* Comprehensive Responsive Design */
@media (max-width: 1200px) {

    
    .our-stats-number-wrap p {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .top-contact-bar {
        padding: 0.3rem 0;
        font-size: 0.8rem;
    }
    
    .top-contact-bar .contact-info {
        text-align: center;
    }
    
    .top-contact-bar .social-links {
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .navbar-professional {
        padding: 0.8rem 0;
    }
    
    .hero-slider {
        margin-top: 110px;
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    

    

    
    .our-stats-inner-col {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 1rem;
    }
    
    .our-stats-card {
        padding: 2rem 1.5rem;
        min-height: 160px;
    }
    
    .our-stats-number-wrap p {
        font-size: 2.2rem;
    }
    
    .interactive-services {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .service-list {
        height: auto;
        margin-bottom: 2rem;
    }
    
    .service-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .top-contact-bar .contact-info span {
        display: block;
        margin-bottom: 0.2rem;
    }
    
    .hero-slider {
        margin-top: 100px;
        height: auto;
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        height: auto;
        min-height: 60vh;
    }
    
    .hero-content .row {
        text-align: center;
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        height: 200px;
        order: -1;
    }
    
    .hero-image img {
        height: 200px;
        width: 100%;
        max-width: 300px;
    }
    

    

    
    .clients-track {
        animation-duration: 15s;
    }
    
    .client-logo {
        flex: 0 0 120px;
        margin: 0 0.5rem;
    }
    
    .stats-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .stats-section .row {
        flex-direction: column;
    }
    
    .stats-section .col-lg-6:first-child {
        order: 2;
        margin-top: 2rem;
    }
    
    .stats-section .col-lg-6:last-child {
        order: 1;
        text-align: center;
    }
    
    .our-stats-inner-row {
        justify-content: center;
    }
    
    .our-stats-inner-col {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
        margin: 0.5rem;
        display: flex;
        align-items: stretch;
    }
    
    .our-stats-card {
        padding: 2rem 1rem;
        min-height: 150px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .our-stats-number-wrap p {
        font-size: 2rem;
    }
    
    .our-stats-title-wrap p {
        font-size: 0.9rem;
    }
    
    .service-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-item-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .service-image-container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .case-studies-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .case-studies-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .case-studies-slider {
        height: 250px;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .testimonials-track {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        padding: 2rem 1.5rem;
        margin-bottom: 0;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .service-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .top-contact-bar {
        display: none;
    }
    
    .navbar-professional {
        top: 0;
    }
    
    .hero-slider {
        margin-top: 80px;
        height: auto;
        min-height: 50vh;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        height: auto;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-image {
        height: 150px;
        margin-top: 1.5rem;
    }
    
    .hero-image img {
        height: 150px;
        max-width: 250px;
    }
    

    

    

    
    .our-stats-inner-col {
        flex: 0 0 calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        margin: 0.5rem;
        display: flex;
        align-items: stretch;
    }
    
    .our-stats-card {
        padding: 1.5rem 1rem;
        min-height: 120px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .our-stats-number-wrap p {
        font-size: 1.8rem;
    }
    
    .our-stats-title-wrap p {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .service-item {
        padding: 0.8rem;
    }
    
    .service-image-container {
        height: 250px;
    }
    
    .case-studies-slider {
        height: 200px;
    }
    
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonials-section h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-section .lead {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-container {
        padding: 0 0.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .quote-icon {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .author-image {
        width: 40px;
        height: 40px;
    }
    
    .author-info h5 {
        font-size: 0.85rem;
    }
    
    .author-info span {
        font-size: 0.7rem;
    }
}



/* Technology Section */
.technology-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.technology-section .section-badge {
    background: var(--gradient);
    color: white;
}

.technology-section h2 {
    color: #1e293b;
}

.technology-section .lead {
    color: #64748b;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    perspective: 1000px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 3px solid rgba(255, 255, 255, 0.8);
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: techFloat 3s ease-in-out infinite;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

@keyframes techFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.tech-item:nth-child(odd) {
    animation-delay: -1.5s;
}

.tech-item:nth-child(even) {
    animation-delay: -0.5s;
}

.tech-item i {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.tech-item:hover i {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.tech-item:nth-child(1) i { color: #21759b; }
.tech-item:nth-child(2) i { color: #61dafb; }
.tech-item:nth-child(3) i { color: #dd0031; }
.tech-item:nth-child(4) i { color: #68a063; }
.tech-item:nth-child(5) i { color: #96588a; }
.tech-item:nth-child(6) i { color: #4353ff; }
.tech-item:nth-child(7) i { color: #95bf47; }
.tech-item:nth-child(8) i { color: #61dafb; }
.tech-item:nth-child(9) i { color: #777bb4; }
.tech-item:nth-child(10) i { color: #000000; }
.tech-item:nth-child(11) i { color: #3776ab; }
.tech-item:nth-child(12) i { color: #f26322; }
.tech-item:nth-child(13) i { color: #ff6900; }
.tech-item:nth-child(14) i { color: #ff7a59; }
.tech-item:nth-child(15) i { color: #ff2d20; }
.tech-item:nth-child(16) i { color: #02569b; }

.tech-item span {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tech-item:hover span {
    color: #0f172a;
    transform: translateY(-2px);
}

/* FAQ Section - Modern Design */
.faq-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
    border-top: 3px solid rgba(255, 107, 53, 0.4);
    border-bottom: 3px solid rgba(255, 107, 53, 0.4);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-section .lead {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.accordion-item:nth-child(1) { animation-delay: 0.1s; }
.accordion-item:nth-child(2) { animation-delay: 0.2s; }
.accordion-item:nth-child(3) { animation-delay: 0.3s; }
.accordion-item:nth-child(4) { animation-delay: 0.4s; }
.accordion-item:nth-child(5) { animation-delay: 0.5s; }
.accordion-item:nth-child(6) { animation-delay: 0.6s; }
.accordion-item:nth-child(7) { animation-delay: 0.7s; }
.accordion-item:nth-child(8) { animation-delay: 0.8s; }
.accordion-item:nth-child(9) { animation-delay: 0.9s; }
.accordion-item:nth-child(10) { animation-delay: 1.0s; }

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

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.accordion-button {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    border-radius: 15px !important;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.accordion-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.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.accordion-button:hover {
    transform: translateY(-2px) scale(1.01);
    background: rgba(255, 255, 255, 0.1);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transform: scale(1.02);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 1.5rem;
    height: 1.5rem;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg) scale(1.1);
}

.accordion-body {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
/* Core Values Section - Creative Design */
.values-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: -10s;
}

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

.values-section .container {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

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

.creative-title {
    color: #1e293b;
    font-weight: 900;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.creative-title .word {
    display: inline-block;
    position: relative;
    animation: textReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(100%);
}

.creative-title .word:nth-child(1) { animation-delay: 0.2s; }
.creative-title .word:nth-child(2) { animation-delay: 0.4s; }

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.creative-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    animation: fadeIn 1s ease-out 0.8s both;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    border: 3px solid rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    animation: cardFloat 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.1);
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardFloat {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    animation: rotate 4s linear infinite;
    transition: opacity 0.3s ease;
}

.value-card:hover .card-glow {
    opacity: 0.1;
}

.value-card:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 25px 60px rgba(34, 197, 94, 0.25);
    transform: translateY(-15px) scale(1.02);
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.value-icon {
    position: relative;
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
}

.icon-orbit {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3);
    transition: all 0.6s ease;
}

.orbit-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover .orbit-ring {
    opacity: 1;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.icon-orbit i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    transition: transform 0.3s ease;
}

.value-card:hover .icon-orbit {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.4);
}

.value-card h4 {
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.value-card:hover h4 {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.value-card p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

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

.card-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: particles 3s infinite ease-in-out;
}

.card-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.card-particles span:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes particles {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(-20px) scale(1.5); }
}

.value-card[data-tilt]:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-10px);
}

/* Responsive Values Section */
@media (max-width: 768px) {
    .value-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .value-card h4 {
        font-size: 1.2rem;
    }
}

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

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.preloader-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.logo-container {
    position: relative;
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.preloader-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

.spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

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

.spinner-ring:nth-child(1) {
    border-top-color: #ff6b35;
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    border-right-color: #f7931e;
    animation-delay: -0.5s;
    width: 70px;
    height: 70px;
    top: 5px;
    left: 5px;
}

.spinner-ring:nth-child(3) {
    border-bottom-color: #22c55e;
    animation-delay: -1s;
    width: 50px;
    height: 50px;
    top: 15px;
    left: 15px;
}

.loading-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: textFade 2s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #22c55e);
    border-radius: 2px;
    animation: progressFill 3s ease-in-out infinite;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: #f7931e;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: #22c55e;
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: #10b981;
    top: 10%;
    right: 25%;
    animation-delay: -1s;
}

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

@keyframes logoGlow {
    0% { filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3)); }
    100% { filter: drop-shadow(0 15px 40px rgba(255, 107, 53, 0.5)); }
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

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

@keyframes textFade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .preloader-logo {
        width: 100px;
    }
    
    .logo-glow {
        width: 120px;
        height: 120px;
    }
    
    .spinner {
        width: 60px;
        height: 60px;
    }
    
    .loading-text {
        font-size: 1rem;
    }
    
    .progress-bar {
        width: 150px;
    }
}