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



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



html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1f2937;
}

.nav-logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.nav-logo-icon .logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.nav-logo-icon .logo-ring.outer {
    width: 40px;
    height: 40px;
    animation: rotate 15s linear infinite;
}

.nav-logo-icon .logo-ring.middle {
    width: 30px;
    height: 30px;
    top: 5px;
    left: 5px;
    border-color: rgba(220, 38, 38, 0.3);
    animation: rotate 12s linear infinite reverse;
}

.nav-logo-icon .logo-ring.inner {
    width: 20px;
    height: 20px;
    top: 10px;
    left: 10px;
    border-color: rgba(245, 158, 11, 0.5);
    animation: rotate 8s linear infinite;
}

.nav-logo-icon .logo-center {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.4rem;
}

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

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

.nav-link:hover {
    color: #dc2626;
}



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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), rgba(245, 158, 11, 0.1));
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 120px);
}

.hero-text {
    color: white;
    padding-top: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.3); }
    50% { box-shadow: 0 0 30px rgba(220, 38, 38, 0.6); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
    animation: titleSlide 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line.highlight {
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.3s;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(20px);
    flex-wrap: wrap;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    position: relative;
    width: 180px;
    height: 180px;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.logo-ring.outer {
    width: 180px;
    height: 180px;
    animation: rotate 20s linear infinite;
}

.logo-ring.middle {
    width: 135px;
    height: 135px;
    top: 22.5px;
    left: 22.5px;
    border-color: rgba(220, 38, 38, 0.3);
    animation: rotate 15s linear infinite reverse;
}

.logo-ring.inner {
    width: 90px;
    height: 90px;
    top: 45px;
    left: 45px;
    border-color: rgba(245, 158, 11, 0.5);
    animation: rotate 10s linear infinite;
}

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

.logo-center {
    position: absolute;
    top: 67.5px;
    left: 67.5px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
}

.hero-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}



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



/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(245,158,11,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2937 0%, #dc2626 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2.5rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(20px);
}

.service-card:hover .icon-glow {
    opacity: 0.3;
}

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

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
}

.service-features i {
    color: #10b981;
    font-size: 1rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.service-badge {
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.story-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

.story-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.value-content p {
    color: #6b7280;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.stat-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card .stat-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-card .stat-desc {
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.4;
}

.about-cta {
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}

.about-cta h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.about-cta .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-details a,
.contact-details p {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #dc2626;
}

.contact-details small {
    color: #9ca3af;
    font-size: 0.8rem;
}

.contact-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
}

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

.cta-card p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
}

.footer-logo-icon .logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.footer-logo-icon .logo-ring.outer {
    width: 32px;
    height: 32px;
    animation: rotate 15s linear infinite;
}

.footer-logo-icon .logo-ring.middle {
    width: 24px;
    height: 24px;
    top: 4px;
    left: 4px;
    border-color: rgba(220, 38, 38, 0.3);
    animation: rotate 12s linear infinite reverse;
}

.footer-logo-icon .logo-ring.inner {
    width: 16px;
    height: 16px;
    top: 8px;
    left: 8px;
    border-color: rgba(245, 158, 11, 0.5);
    animation: rotate 8s linear infinite;
}

.footer-logo-icon .logo-center {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #dc2626, #f59e0b);
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.3rem;
}

.footer-brand h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 0.9rem;
}

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

.footer-info {
    margin-bottom: 1rem;
}

.footer-info p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 0;
        min-height: 100vh;
        background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(245,158,11,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        padding: 80px 1rem 2rem 1rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
        padding: 2rem 1rem;
        background: rgba(31, 41, 55, 0.8);
        border-radius: 20px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(245, 158, 11, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .hero-title {
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .title-line {
        display: block;
        margin-bottom: 0.5rem;
        color: white;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    .title-line.highlight {
        background: linear-gradient(135deg, #ffffff 0%, #f59e0b 50%, #dc2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        color: #e5e7eb;
        line-height: 1.6;
        font-weight: 400;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-item {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(220, 38, 38, 0.1));
        padding: 1.5rem 1rem;
        border-radius: 16px;
        border: 2px solid rgba(245, 158, 11, 0.2);
        backdrop-filter: blur(10px);
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }
    
    .feature-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .feature-item:hover::before {
        left: 100%;
    }
    
    .feature-item:hover {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(220, 38, 38, 0.2));
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
        border-color: rgba(245, 158, 11, 0.4);
    }
    
    .feature-item i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        display: block;
        color: #f59e0b;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .feature-item span {
        font-size: 0.9rem;
        font-weight: 700;
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        padding: 1.25rem 2rem;
        font-size: 1rem;
        border-radius: 16px;
        text-align: center;
        justify-content: center;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-buttons .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }
    
    .hero-buttons .btn:hover::before {
        left: 100%;
    }
    
    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, #dc2626, #f59e0b);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    }
    
    .hero-buttons .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    }
    
    .hero-buttons .btn-outline {
        background: transparent;
        border: 2px solid rgba(245, 158, 11, 0.6);
        color: #f59e0b;
    }
    
    .hero-buttons .btn-outline:hover {
        background: rgba(245, 158, 11, 0.1);
        border-color: #f59e0b;
        transform: translateY(-2px);
    }
    
    .hero-visual {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: 2rem;
    }
    
    .hero-showcase {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .showcase-main {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo {
        width: 180px;
        height: 180px;
        filter: drop-shadow(0 15px 35px rgba(245, 158, 11, 0.4));
        animation: logoFloat 6s ease-in-out infinite;
    }
    
    @keyframes logoFloat {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-10px) rotate(2deg); }
    }
    
    .logo-ring.outer {
        width: 180px;
        height: 180px;
        border-width: 3px;
        filter: drop-shadow(0 0 25px rgba(245, 158, 11, 0.6));
        animation: rotate 25s linear infinite;
    }
    
    .logo-ring.middle {
        width: 135px;
        height: 135px;
        top: 22.5px;
        left: 22.5px;
        border-width: 2px;
        filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.6));
        animation: rotate 20s linear infinite reverse;
    }
    
    .logo-ring.inner {
        width: 90px;
        height: 90px;
        top: 45px;
        left: 45px;
        border-width: 2px;
        filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.6));
        animation: rotate 15s linear infinite;
    }
    
    .logo-center {
        top: 67.5px;
        left: 67.5px;
        width: 45px;
        height: 45px;
        font-size: 0.75rem;
        box-shadow: 0 0 25px rgba(220, 38, 38, 0.8);
        background: linear-gradient(135deg, #dc2626, #f59e0b);
    }
    

    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-features li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    
    .service-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-details {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 80px 0.5rem 1rem 0.5rem;
        min-height: 100vh;
    }
    
    .hero-text {
        padding: 1.5rem 0.75rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .title-line {
        display: block;
        margin-bottom: 0.5rem;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .title-line.highlight {
        background: linear-gradient(135deg, #ffffff 0%, #f59e0b 50%, #dc2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 1.25rem 0.75rem;
        border-radius: 14px;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 14px;
    }
    
    .hero-visual {
        margin-top: 1.5rem;
    }
    
    .hero-logo {
        width: 140px;
        height: 140px;
    }
    
    .logo-ring.outer {
        width: 140px;
        height: 140px;
        border-width: 2px;
    }
    
    .logo-ring.middle {
        width: 105px;
        height: 105px;
        top: 17.5px;
        left: 17.5px;
        border-width: 1.5px;
    }
    
    .logo-ring.inner {
        width: 70px;
        height: 70px;
        top: 35px;
        left: 35px;
        border-width: 1.5px;
    }
    
    .logo-center {
        top: 52.5px;
        left: 52.5px;
        width: 35px;
        height: 35px;
        font-size: 0.6rem;
    }
    

    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
} 